Users
Manage organization members
List users in the organization. Requires the 'users:read' scope.
Authorizations
Query parameters
limitnumber · min: 1 · max: 1000OptionalDefault:
The number of results to return
100offsetnumberOptionalDefault:
The number of results to skip
0Responses
200
Response for status 200
application/json
500
An unknown error occurred, trying again might help.
application/json
get
/v1/organization/usersGET /v1/organization/users HTTP/1.1
Host: api.tryopine.com
X-API-Key: YOUR_API_KEY
Accept: */*
{
"items": [
{
"id": 1,
"email": "text",
"firstName": "text",
"lastName": "text",
"role": "ADMIN",
"createdAt": "2025-10-30T06:54:34.936Z",
"updatedAt": "2025-10-30T06:54:34.936Z"
}
],
"totalCount": 1,
"offset": 1,
"limit": 1
}Remove a user from the organization. Requires the 'users:write' scope.
Authorizations
Path parameters
idnumber · min: 1Required
The ID of the user to remove
Responses
200
Response for status 200
application/json
500
An unknown error occurred, trying again might help.
application/json
delete
/v1/organization/users/{id}DELETE /v1/organization/users/{id} HTTP/1.1
Host: api.tryopine.com
X-API-Key: YOUR_API_KEY
Accept: */*
{
"id": 1
}Last updated