Hello!
Im using the new Customer Account API. Im experiencing an issue with the refresh token response. I am following the example documented here. I am succesfully geting a response when requesting a refresh token but there are two fields missing “id_token” and “refresh_token”.
Response im receiving
{
access_token: ‘atkn_xyz’,
token_type: ‘bearer’,
expires_in: 7200,
scope: ‘https://api.customers.com/auth/customer.graphql openid email’
}
Response I was expecting
{
access_token: ‘atkn_xyz’,
token_type: ‘bearer’,
expires_in: 7200,
scope: ‘https://api.customers.com/auth/customer.graphql openid email’,
id_token: ‘…’,
refresh_token: ‘…’
}
Could you help me figure out what the issue might be? is there an error in the docs or should i be receiveing these fields?
Regards
Axel