Create an invitation
The invitation has been created.
Something about your request didn't quite make sense. The error message should help you figure out what went wrong.
Unauthorized
You tried to do something that you're not allowed to do. Check your privileges to see what you're actually allowed to do. This could also mean that your token has expired.
You have made too many requests too quickly. Check the Retry-After
header for an indication of when you might be able to try again.
Something has gone terribly wrong. Sorry! The error message may help you figure out what went wrong, but it's unlikely that you'll be able to do anything about it unless you're the server administrator. It's possible that trying again will help, but it's more likely that you're out of luck for the moment.
The service is temporarily unavailable, likely due to maintenance. It should be available soon, check the Retry-After
header for an indication of when you might be able to try again.
- Payload
{- "email": "user.one@example.com",
- "roleID": "full-access"
}
- 201
- 400
- 401
- 500
- 503
{- "id": "3FDCA1955AE7EB167B25D7D90AC02B9F",
- "email": "user.one@example.com",
- "roleID": "full-access",
- "state": "invited",
- "created": "2020-06-21T09:01:12Z",
- "lastModified": "2020-07-10T07:02:10Z",
- "expiry": "2020-07-10T07:02:10Z",
- "lastSent": "2020-07-10T07:02:10Z",
- "urn": "urn:cloudone:identity:ca-1:012345678912:invitation/3FDCA1955AE7EB167B25D7D90AC02B9F"
}
List invitations sent from an account
query Parameters
The response body contains the invitations.
Something about your request didn't quite make sense. The error message should help you figure out what went wrong.
Unauthorized
You tried to do something that you're not allowed to do. Check your privileges to see what you're actually allowed to do. This could also mean that your token has expired.
You have made too many requests too quickly. Check the Retry-After
header for an indication of when you might be able to try again.
Something has gone terribly wrong. Sorry! The error message may help you figure out what went wrong, but it's unlikely that you'll be able to do anything about it unless you're the server administrator. It's possible that trying again will help, but it's more likely that you're out of luck for the moment.
The service is temporarily unavailable, likely due to maintenance. It should be available soon, check the Retry-After
header for an indication of when you might be able to try again.
- 200
- 400
- 401
- 500
- 503
{- "next": "dGhpcyB2YWx1ZSBpcyBvcGFxdWUsIGRlY29kaW5nIGl0IHdvbid0IGJlIHVzZWZ1bAo=",
- "invitations": [
- {
- "id": "3FDCA1955AE7EB167B25D7D90AC02B9F",
- "email": "user.one@example.com",
- "roleID": "full-access",
- "state": "invited",
- "created": "2020-06-21T09:01:12Z",
- "lastModified": "2020-07-10T07:02:10Z",
- "expiry": "2020-07-10T07:02:10Z",
- "lastSent": "2020-07-10T07:02:10Z",
- "urn": "urn:cloudone:identity:ca-1:012345678912:invitation/3FDCA1955AE7EB167B25D7D90AC02B9F"
}
]
}
Describe an invitation sent from an account
The response body contains the invitation details.
Something about your request didn't quite make sense. The error message should help you figure out what went wrong.
Unauthorized
You tried to do something that you're not allowed to do. Check your privileges to see what you're actually allowed to do. This could also mean that your token has expired.
The resource you were looking for doesn't exist.
You have made too many requests too quickly. Check the Retry-After
header for an indication of when you might be able to try again.
Something has gone terribly wrong. Sorry! The error message may help you figure out what went wrong, but it's unlikely that you'll be able to do anything about it unless you're the server administrator. It's possible that trying again will help, but it's more likely that you're out of luck for the moment.
The service is temporarily unavailable, likely due to maintenance. It should be available soon, check the Retry-After
header for an indication of when you might be able to try again.
- 200
- 400
- 401
- 404
- 500
- 503
{- "id": "3FDCA1955AE7EB167B25D7D90AC02B9F",
- "email": "user.one@example.com",
- "roleID": "full-access",
- "state": "invited",
- "created": "2020-06-21T09:01:12Z",
- "lastModified": "2020-07-10T07:02:10Z",
- "expiry": "2020-07-10T07:02:10Z",
- "lastSent": "2020-07-10T07:02:10Z",
- "urn": "urn:cloudone:identity:ca-1:012345678912:invitation/3FDCA1955AE7EB167B25D7D90AC02B9F"
}
Modify an invitation sent from an account
Invitations in the invited
state can be revoked by sending a request with the desired new state, or resent by sending a POST with no request body.
The response body contains the invitation details.
Something about your request didn't quite make sense. The error message should help you figure out what went wrong.
Unauthorized
You tried to do something that you're not allowed to do. Check your privileges to see what you're actually allowed to do. This could also mean that your token has expired.
The resource you were looking for doesn't exist.
You have made too many requests too quickly. Check the Retry-After
header for an indication of when you might be able to try again.
Something has gone terribly wrong. Sorry! The error message may help you figure out what went wrong, but it's unlikely that you'll be able to do anything about it unless you're the server administrator. It's possible that trying again will help, but it's more likely that you're out of luck for the moment.
The service is temporarily unavailable, likely due to maintenance. It should be available soon, check the Retry-After
header for an indication of when you might be able to try again.
- Payload
{- "state": "invited"
}
- 200
- 400
- 401
- 404
- 500
- 503
{- "email": "user.one@example.com",
- "roleID": "full-access"
}