Details on the various actions that can be performed on the
Org Invites resource, including the expected
parameters and the potential responses.
Gets information about an invite
result = client.org_invites.get(
token=my_token,
email=my_email)
print(result)
No api access token is required to call this action.
| Name |
Type |
Required |
Description |
Default |
Example |
| token |
string |
Y |
The token associated with the invite |
|
aTokenString |
| email |
string |
Y |
The email associated with the invite |
|
example@example.com |
| losantdomain |
string |
N |
Domain scope of request (rarely needed) |
|
example.com |
| Code |
Type |
Description |
| 400 |
Error |
Error if malformed request |
| 404 |
Error |
Error if invite not found |
| 410 |
Error |
Error if invite has expired |
Accepts/Rejects an invite
result = client.org_invites.post(invite=my_invite)
print(result)
No api access token is required to call this action.
| Code |
Type |
Description |
| 400 |
Error |
Error if malformed request |
| 404 |
Error |
Error if invite not found |
| 410 |
Error |
Error if invite has expired |