Alokai
You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current

Token

Token returned by commercetools API

export interface Token {
	access_token: string;
	expires_at: number;
	expires_in: number;
	refresh_token: string;
	scope: string;
	token_type: string;
}

Properties

NameRequiredTypeDescription
access_tokenRequiredstring
expires_atRequirednumber
expires_inRequirednumber
refresh_tokenRequiredstring
scopeRequiredstring
token_typeRequiredstring

On this page