This API endpoint accepts a POST request with an auth_token parameter and returns an access_token that grants authorized access to additional resources within the API, with a different expiration time and unique signature.
Security
(auth_token and api-key) or api-key
Generated using the certificate linked to the Delegated API Client. This feature is available only to customers that have been enabled with delegation functionality.
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/access_token
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/access_token
- auth_token + api-key
- api-key
curl -i -X POST \
https://sandbox.weavr.io/multi/access_token \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"identity": {
"type": "CONSUMER",
"id": "string"
},
"clientAssertion": "string",
"token": "string"
}'Response
{ "token": "string", "identity": { "type": "CONSUMER", "id": "string" }, "credentials": { "type": "ROOT", "id": "string" }, "status": "STANDARD" }