Authentication
token
with the proper value:Authorization: Bearer <token>
Client tokens
Site tokens
/v1/auth/site/{site_id}
, and are specific to a given site. They are intended to be used for communications between your mobile app and Flip's API. They expire after one hour, after which you will need to call the endpoint to request a new one again.WARNING
401 UNAUTHORIZED
or 403 FORBIDDEN
error will be returned.Which type of token for which endpoint
Endpoint | Client token | Site token |
---|---|---|
POST /v1/auth/site/{id} | ✅ | ❌ |
POST /v1/commission | ✅ | ❌ |
GET /v1/site/{siteId}/devices | ❌ | ✅ |
GET /v1/site/{siteId}/device/{id} | ❌ | ✅ |
PATCH /v1/site/{siteId}/device/{id} | ❌ | ✅ |
GET /v1/site/{siteId}/device/{id}/dispatches | ❌ | ✅ |
GET /v1/site/{siteId}/dispatch/{id} | ❌ | ✅ |
PATCH /v1/site/{siteId}/dispatch/{id} | ❌ | ✅ |
POST /v1/site/{siteId}/enrollments | ❌ | ✅ |
GET /v1/site/{siteId}/enrollments | ❌ | ✅ |
DEL /v1/site/{siteId}/enrollment/{id} | ❌ | ✅ |
GET /v1/site/{siteId}/programs | ❌ | ✅ |
GET /v1/site/{siteId}/program/{id} | ❌ | ✅ |
GET /v1/site/{siteId} | ❌ | ✅ |
PATCH /v1/site/{siteId} | ❌ | ✅ |
GET /v1/commands | ✅ | ❌ |
PATCH /v1/command/{id} | ✅ | ❌ |
POST /v1/telemetry | ✅ | ❌ |
Modified at 2024-06-28 12:37:28