Invite offers
Path parameters
inviteIdstringRequired
The id of the invite
organizationIdstringRequired
The organization for the invite
Query parameters
tokenstringRequired
The token for the invite
Responses
200
An invite offer
application/json
default
An error occurred
application/json
get
GET /v1/identity/organizations/{organizationId}/invite-offers/{inviteId}?token=text HTTP/1.1
Host: localhost:3050
Accept: */*
{
"id": "text",
"email": "text",
"role": "admin",
"organizationId": "text",
"organizationName": "text",
"createdAt": "text",
"createdBy": {
"userId": "text",
"type": "user"
}
}
Path parameters
inviteIdstringRequired
The id of the invite
organizationIdstringRequired
The organization for the invite
Body
tokenstringRequired
Responses
200
Expected response to a valid request
application/json
Responseobject
default
An error occurred
application/json
post
POST /v1/identity/organizations/{organizationId}/invite-offers/{inviteId} HTTP/1.1
Host: localhost:3050
Content-Type: application/json
Accept: */*
Content-Length: 16
{
"token": "text"
}
{}
Was this helpful?