Customer Token

It retrieves a token that allows access to customer-specific resources via the REST API.

POST {{Base_url}}/rest/V1/integration/customer/token

Generate your token by providing your username and password in the request body.

curl --location '{{Base_url}}/rest/V1/integration/customer/token' \
--header 'Content-Type: application/json' \
--header 'Cookie: PHPSESSID=2639naaq26nbe7st472kk4ms4i' \
--data-raw '{
  "username": "Enter Username",
  "password": "Enter Password"
}
'
eyJraWQiOiIxIiwiYWxnIjoiSFMyNTYifQ.eyJ1aWQiOjIxMDAyNywidXR5cGlkIjozLCJpYXQiOjE3MzczNzQwMDYsImV4cCI6MTczNzM3NzYwNn0.KlPFJHMk16w3XX_zW1auR3GwYPl5BN6wdVm69nwFw1k

Last updated