Manage organization members
Last updated 9 days ago
List users in the organization. Requires the 'users:read' scope.
The number of results to return
100
The number of results to skip
0
GET /v1/organization/users HTTP/1.1 Host: api.tryopine.com X-API-Key: YOUR_API_KEY Accept: */*
Response for status 200
{ "items": [ { "id": 1, "email": "text", "firstName": "text", "lastName": "text", "role": "ADMIN", "createdAt": "2025-04-16T16:55:42.590Z", "updatedAt": "2025-04-16T16:55:42.590Z" } ], "totalCount": 1, "offset": 1, "limit": 1 }
Remove a user from the organization. Requires the 'users:write' scope.
The ID of the user to remove
DELETE /v1/organization/users/{id} HTTP/1.1 Host: api.tryopine.com X-API-Key: YOUR_API_KEY Accept: */*
{ "id": 1 }