Is Endpoint Authorized

POST /Api/Read/Acl

This process returns whether the provided path can be called with your current access level. Secret Hmac Required. Cache Time 1 Hour.

Body Required

  • Endpoint path to check if the acl control allows it.

Responses

  • ACL access successfully checked

    Hide response attribute Show response attribute object
    • 1 if the key has access to the endpoint path passed, 0 if not.

POST /Api/Read/Acl
curl \
 -X POST https://Api.StrandVision.com/v1.0/Api/Read/Acl \
 -H "Authorization: X-apikey $ACCESS_TOKEN" \
 -H "Authorization: X-apidate $ACCESS_TOKEN" \
 -H "Authorization: X-apihmac $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"IsAclAllowed":"/Api/Read/Limits"}'
Request example
{
  "IsAclAllowed": "/Api/Read/Limits"
}
Request examples
{
  "IsAclAllowed": "/Api/Read/Limits"
}
Response examples (200)
{
  "AclAllowed": 1
}
Response examples (200)
{
  "AclAllowed": 1
}