Organization Invitations
List
Perform operations on organization invitation.
GET
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Invitee's/Inviter's organization.
A page number within the paginated result set.
Number of results to return per page.
Status of the invitation, default status is pending.
0
- pending1
- accepted2
- cancelled3
- expired4
- revoked
Available options:
0
, 1
, 2
, 3
, 4
Response
200 - application/json
The response is of type object
.
Previous
CreateCreate organization invitation to given email addresses.
A caller may pass an array of data to create invitations in bulk. See examples.
When creating a COLLABORATOR role (`role` = 1), a `accessible_portfolio_ids` parameter is required to assign
the collaborator specific portfolio access. If this is not sent, the invitation will fail. If this is sent when
creating an ADMIN or MEMBER invitation, it will be ignored because they have access to all portfolios of an organization.
See examples.
Will return 201 on complete (all invites) success, or 202 when the request completed but there were
errors with at least one invite.
Next