AuthenticateAPIClientResponse
Response from authenticating an API client. Contains the access token for subsequent API calls.
type AuthenticateAPIClientResponse {
accessToken: String!
tokenType: String!
expiresIn: Int!
}
Fields
AuthenticateAPIClientResponse.accessToken ● String! non-null scalar
Bearer access token for Authorization header
AuthenticateAPIClientResponse.tokenType ● String! non-null scalar
Token type (always "Bearer")
AuthenticateAPIClientResponse.expiresIn ● Int! non-null scalar
Token lifetime in seconds
Returned By
authenticateAPIClient mutation