Manage invitations. See project endpoints to create a new invitation. Check out the product docs to learn more about Invitations.
View an invitation
GET
/invitations/{id}
Returns a single invitation. (It include the invitable
to maintain backward compatibility but will be removed soon)
Accept an invitation
PUT
/invitations/{id}
Accept an invitation.
Decline an invitation
DELETE
/invitations/{id}
Decline an invitation.
Retrieve project invitations
GET
/projects/{project_id}/invitations
Returns all invitations in a project.
Create an invitation for a project
POST
/projects/{project_id}/invitations
In order to add a user to a project, they must first be invited.
Retrieve organization invitations
GET
/organizations/{id}/invitations
Returns all invitations in an organization.
Create an invitation for an organization
POST
/organizations/{id}/invitations
In order to add a user to an organization, they must first be invited.
To invite to several projects the parameter projects_ids:[a,b,c]
can be used
Retrieve current user invitations
GET
/invitations
Returns all invitations in current user.