Skip to content

Obtain API token

For obtaining an API token for profiles, send a POST request to the endpoint:

https://webapi.inboxroad.com/api/token/

There is also interactive version where you can try out sending requests.

The payload for the request should be a JSON of the following type:

{
"username": "string",
"password": "string"
}

All fields are required!

Examples

Terminal window
curl --location --request POST 'https://webapi.inboxroad.com/api/token/' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "test@test.test",
"passowrd": "etesttes"
}'