Create bearer token

post/authenticate
Request
Request Body schema: application/json

request

brand
required
string

Brand name as provided by Strategic Imperatives

username
required
string [ 1 .. 100 ] characters

API user name

password
required
string [ 1 .. 100 ] characters

API user password

Responses
200

OK

401

Unauthorized

403

Forbidden

404

Not Found

Request samples
application/json
{
  • "brand": "string",
  • "username": "string",
  • "password": "string"
}
Response samples
application/json
{
  • "token": "string",
  • "username": "string"
}