POST
/
provisions
/
can_user_access
curl -X 'POST' \
  'https://api.coaxial.ai/provisions/can_user_access' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer <api_key>' \
  -H 'Content-Type: application/json' \
  -d '{
  "user_id": <user_id>,
  "coaxial_id": <coaxial_model_id>
}'
true
curl -X 'POST' \
  'https://api.coaxial.ai/provisions/can_user_access' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer <api_key>' \
  -H 'Content-Type: application/json' \
  -d '{
  "user_id": <user_id>,
  "coaxial_id": <coaxial_model_id>
}'
true

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
coaxial_id
string
required
user_id
string
required

Response

200
application/json
A boolean describing whether or not user has resource access

The response is of type boolean.