List Pending Invitations in Organization
GET/v1/organizations/:organizationId/invitations
This endpoint returns the list of pending invitations within the
given Organization identified by the organizationId
parameter.
Request
Path Parameters
organizationId uuidrequired
The identifier of the Organization.
Responses
- 200
- 400
- 404
- 429
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
invitationId uuid
The identifier of the Invitation.
email stringnullable
The invited user's email address.
productId uuid
The identifier of the Product the user was invited to.
productName stringnullable
The name of the Product the user was invited to.
permissionGroupId int64
The identifier of the Permission Group the user was invited to.
createdAt date-time
Creation time of the Invitation.
expired boolean
Determines whether the Invitation is expired.
expires date-time
Expiration time of the Invitation.
[
{
"invitationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"email": "string",
"productId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"productName": "string",
"permissionGroupId": 0,
"createdAt": "2024-07-29T15:51:28.071Z",
"expired": true,
"expires": "2024-07-29T15:51:28.071Z"
}
]
Bad request.
Not found.
Too many requests. In case of the request rate exceeds the rate limits.
Loading...