POST
/
records
/
{record_id}
/
tokens
Generate Temporary Workboard Token
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"
}

Authorizations

Authorization
string
header
required

Enter your bearer token in the format: Bearer {token}

Path Parameters

record_id
string
required

Body

application/json

Create a temporary access token that may be used to update a single record

expires
number

Optional seconds until the token expires. Default expiration after 86400 seconds (1 day)

recordId
string

Workboard Record ID which may be updated by the returned token

Response

Temporary access token that may be used to update a single record

expires
number

Seconds until the token expires. Default expiration after 86400 seconds (1 day)

token
string

Access Token

recordId
string

Workboard Record ID which may be updated by this token