Home > @vsf-enterprise/commercetools-types > ApiClientWithSecret
# ApiClientWithSecret type
API Clients can be used to obtain OAuth 2 access tokens. The secret is only shown once in the response of creating the API Client.
Signature:
export declare type ApiClientWithSecret = {
__typename?: 'APIClientWithSecret';
id: Scalars['String'];
name: Scalars['String'];
scope: Scalars['String'];
createdAt?: Maybe<Scalars['DateTime']>;
lastUsedAt?: Maybe<Scalars['Date']>;
secret: Scalars['String'];
};