Get users
GEThttps://us.api.nabla.com/v1/core/server/users
Retrieve a list of your organization's Core API Users, ordered by creation time.
Requestโ
Query Parameters
cursor string
The cursor you received in the next_cursor field to fetch the next page.
limit integer
Possible values: >= 1
and <= 100
The amount of objects to retrieve, between 1 and 100.
order string
Possible values: [ASC
, DESC
]
This flag is used to get results sorted in ascending or descending order.
Default value:
ASC
activated boolean
Optional filter for activated/deactivated users.
Responsesโ
- 200
A paginated list of Users.
- application/json
- Schema
- Example (auto)
Schema
data object[]required
has_morebooleanrequired
Example:
true
next_cursornext_cursor (string)nullable
An opaque cursor to fetch the next page of the collection.
{
"data": [
{
"id": "98FCE1EF-DBCA-41EF-8BC7-4D1621AC07C6",
"activated": true,
"external_id": "string",
"metadata": {},
"created_at": "2022-03-10T19:16:23.456Z"
}
],
"has_more": true,
"next_cursor": "string"
}
Authorization: http
name: bearertype: httpscheme: bearer
- curl
- python
- go
- nodejs
- CURL
curl -L 'https://us.api.nabla.com/v1/core/server/users' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>'
ResponseClear