FlowEQ API
Create a temporary access token that may be used to update a single Workboard record
cURL
curl --request POST \ --url https://api.floweq.com/v1/records/{record_id}/tokens \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "expires_in": 86400, "record_id": "record_id" }'
{ "company_id": "company_id", "created_at": "created_at", "expires_at": "expires_at", "token": "access_token", "record_id": "record_id", "user_id": "user_id" }
Enter your bearer token in the format: Bearer {token}
Create a temporary access token that may be used to update a single record
Optional seconds until the token expires. Default expiration after 86400 seconds (1 day)
Workboard Record ID which may be updated by the returned token
Temporary access token that may be used to update a single record
Seconds until the token expires. Default expiration after 86400 seconds (1 day)
Access Token
Workboard Record ID which may be updated by this token
Was this page helpful?