curl --location 'https://prod.your-api-server.com/customer/v2/token' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": "{{your-client-id}}",
"client_secret": "{{your-api-key}}",
"grant_type": "client_credentials"
}'{
"data": {
"token_type": "Bearer",
"expires_in": 86400,
"access_token": "<access token>"
},
"meta": {
"message": "success"
}
}