List all pending invitations
List all pending invitations.
Path Parameters
- organization_id integer required
ID of the workspace
Responses
- 200
- 401
- 403
- 404
- 500
All pending invitations
- application/json
- Schema
- Example (from schema)
Schema array
- id integer
The ID of the invitation
- role string
Possible values: [
USER
,VIEWER
,ANNOTATOR
,ADMIN
,MANAGER
]User's role
- email email
Invited email
- invited_by_id integer
ID of the user who sent the invitation
- organization_id integer
ID of the organization
- created date-time
invitation date
- invitation_link string
The invitation link. This link contains an invitation token
[
{
"id": 5,
"role": "USER",
"email": "user@example.com",
"invited_by_id": 5,
"organization_id": 1,
"created": "2023-11-02",
"invitation_link": "string"
}
]
User is not authenticated. This means token is either not present or invalid
User does not have the minimal required organization role "ADMIN"
No workspace was found that corresponds to the ID sent
Something is wrong with the API.
Loading...