Create Invitation Accept
/invitations/{invitation_ref}/accepts Accepts the identified invitation and returns the activated participant representation.
Conventions
Authentication
All endpoints require a Bearer token. Pass it in the Authorization header as Bearer <token>. Tokens are issued from the API settings page in your workspace.
Base URL
All paths are relative to https://api.allsign.app. The spec includes full paths; strip the base when constructing requests.
Versioning
The current version is 0.1.0. Breaking changes are documented in the Changelog and announced before taking effect.
Specification
The API follows OpenAPI Specification 3.x. All documentation on this page is generated directly from the spec.
Example
curl "https://api.allsign.app/invitations/{invitation_ref}/accepts" \-X POST \-H "Authorization: Bearer {token}"
Request
Request Path
invitation_refPublic invitation reference.
Responses
200 OK
Accepted participant representation.
{
"data": {
"participant": {
"active": true,
"actor": {},
"avatar_url": "",
"email": "",
"name": "",
"ref": "00000000-0000-4000-8000-000000000000",
"type": "commentor"
}
}
}data
data.participantCanonical agreement participant resource.
data.participant.active
data.participant.actor
data.participant.avatar_url
data.participant.email
data.participant.name
data.participant.refPublic stable resource reference.
data.participant.type
401 Unauthorized
{
"error": {
"code": "",
"message": "",
"request_id": "",
"status": 1
}
}error
error.code
error.message
error.request_id
error.status
error.fields
404 Not Found
{
"error": {
"code": "",
"message": "",
"request_id": "",
"status": 1
}
}error
error.code
error.message
error.request_id
error.status
error.fields
409 Conflict
{
"error": {
"code": "",
"message": "",
"request_id": "",
"status": 1
}
}error
error.code
error.message
error.request_id
error.status
error.fields
422 Unprocessable Entity
{
"error": {
"code": "",
"message": "",
"request_id": "",
"status": 1
}
}error
error.code
error.message
error.request_id
error.status
error.fields