Get detailed information about an invitation
GET/v1/invitations/details
This endpoint retrieves detailed information about an invitation using a unique token.
Request
Query Parameters
token stringrequired
Responses
- 200
- 400
Retrieved detailed information about the invitation successfully.
- application/json
- Schema
- Example (from schema)
Schema
inviterName stringrequired
Name of the person who sent the invitation.
organizationId stringrequired
ID of the organization.
organizationName stringrequired
Name of the organization.
projectId stringrequired
ID of the project (if available).
projectName stringrequired
Name of the project (if available).
projectImage stringrequired
Image URL of the project (if available).
{
"inviterName": "string",
"organizationId": "string",
"organizationName": "string",
"projectId": "string",
"projectName": "string",
"projectImage": "string"
}
Invalid token or the invitation does not exist.
Loading...