Authentication

Generate Access Token

Before calling any API endpoint, you must obtain an access token while logged into your Bidease account.

Endpoint: POST /token

Full URL: https://connect.bidease.com/api/login

Authentication: Email and password

Request Body:

FieldTypeDescriptionRequired
emailStringYour Bidease account emailYes
passwordStringYour Bidease account passwordYes

Request Example:

curl -d '{"email":"user@email", "password":"password"}' -s 'https://connect.bidease.com/api/login'

Response:

{
  "access_token": "500000ab-000c-4000-000f-ab00001a7830:[REDACTED]",
  ...
}

Notes:

  • The access token must be included in the Access-Token header for all subsequent API requests
  • Token does not expire but can be regenerated at any time