Skip to content

Retrieve User Permissions

Retrieve all object and object field permissions (read, edit, create, delete) assigned to a specific user.

GET/api/{version}/objects/users/{id}/permissions
NameDescription
Acceptapplication/json (default) or application/xml
NameDescription
{id}The ID of the user. Use the value me to retrieve information for the currently authenticated user.
curl -X POST -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v19.2/objects/me/permissions?filter=name__v::object.product__v.object_actions
{
  "responseStatus": "SUCCESS",
  "data": [
    {
      "name__v": "object.product__v.object_actions",
      "permissions": {
        "read": true,
        "edit": true,
        "create": false,
        "delete": false
      }
    }
  ]
}