Search Personal Access Tokens
List all personal access tokens. By default all personal access tokens of the instance on which the caller has permission to read the owning users are returned. Make sure to include a limit and sorting for pagination.
Required permission:
- user.read
Request Body
application/json
List limitations and ordering.
The field the result is sorted by. The default is the creation date. Beware that if you change this, your result pagination might be inconsistent.
Define the criteria to query for.
Response Body
application/json
curl -X POST "https://loading/v2/users/pats/search" \ -H "Content-Type: application/json" \ -d '{}'{
"pagination": {
"totalResult": 0,
"appliedLimit": 0
},
"result": [
{
"creationDate": "2023-01-15T01:30:15.01Z",
"changeDate": "2023-01-15T01:30:15.01Z",
"id": "string",
"userId": "string",
"organizationId": "string",
"expirationDate": "2023-01-15T01:30:15.01Z"
}
]
}Was this page helpful?
Search Keys
Search Keys: List all matching keys. By default all keys of the instance on which the caller has permission to read the owning users are returned. Make sure to include a limit and sorting for pagination. Requir...
Search Users
Search Users: Search for users. By default, we will return all users of your instance that you have permission to read. Make sure to include a limit and sorting for pagination.