User
Invites
Invites endpoint reference.
List
Lists all invitations associated with my user.
php
$response = $client->user()->invites()->list();
Get
Gets the details of an invitation.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
inviteId | string | Yes | Invite identifier tag. |
php
$response = $client->user()->invites()->get('INVITE_ID');
Respond
Responds to an invitation.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
inviteId | string | Yes | Invite identifier tag. | |
status | string | Yes | Status of the invitation, e.g. accepted, rejected. |
php
$response = $client->user()->invites()->respond('INVITE_ID', 'STATUS');

