Retrieve information about a specific invitation using its unique identifier.
Path Parameters
The unique identifier of the invitation to retrieve
API Key. Go to your Konstantly site > Settings > API and copy the value from there.
Response
Invitation detailsShow Invite object properties
Email invitation was sent to
Timestamp when invitation was sent
Error Responses
Returned when the invitation is not foundShow Error object properties
curl --request GET \
--url 'https://YOURSITE.konstant.ly/openapi/v1/invites/123' \
--header 'X-API-KEY: 1qaz2wsx3edc4rfv1qaz2wsx3edc4rfv'
{
"invite": {
"id": 123,
"email": "john.doe@example.com",
"createdAt": 1234567890,
"inviteUrl": "http://YOURSITE.konstant.ly/signup/1qaz2wsx3edc4rfv"
}
}