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:
| Field | Type | Description | Required |
|---|---|---|---|
email | String | Your Bidease account email | Yes |
password | String | Your Bidease account password | Yes |
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-Tokenheader for all subsequent API requests - Token does not expire but can be regenerated at any time
Updated 1 day ago