Skip to content

Retrieve Limits on Objects

Retrieve the limit on the number of custom objects that can be created in the authenticated Vault.

GET/api/{version}/limits
NameDescription
Acceptapplication/json (default) or application/xml
curl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v22.3/limits
{
  "responseStatus": "SUCCESS",
  "data": [
    {
      "name": "custom_objects",
      "remaining": 7,
      "max": 20
    }
  ]
}