Skip to content

Retrieve all object and object field permissions (Read, Edit, Create, Delete) assigned to the currently authenticated user.

GET/api/{version}/objects/users/me/permissions
NameDescription
Acceptapplication/json (default) or application/xml
NameDescription
filter=name__v::{permission_name}Filter the results to show only one specific name__v, which is in the format object.{object name}.{object or field}_actions. Wildcards are not supported.
curl -X POST -H "Authorization: {SESSION_ID}" \ https://myvault.veevavault.com/api/v26.1/objects/users/me/permissions?filter=name__v::object.user__sys.object_actions
{ "responseStatus": "SUCCESS", "data": [ { "name__v": "object.user__sys.object_actions", "permissions": { "read": true, "edit": true, "create": true, "delete": false } } ] }