List Pending Invitations in Product
GET/v1/products/:productId/invitations
This endpoint returns the list of pending invitations within the
given Product identified by the productId
parameter.
Request
Path Parameters
productId uuidrequired
The identifier of the Product.
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.
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.
[
{
"invitationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"email": "string",
"permissionGroupId": 0,
"createdAt": "2024-07-29T15:51:28.071Z",
"expired": true
}
]
Bad request.
Not found.
Too many requests. In case of the request rate exceeds the rate limits.
Loading...