The IAM server handles identities (namely users) and access permissions.
Please also visit our collection of growing real-life-examples at https://github.com/AdmiralCloud/ac-usage-examples
We are currently transitioning user and rights managements from APIv5 to IAM. An article for details regarding this transition will follow soon – in the meantime please contact our support team.
Response object
The response of the IAM API is always formed like this:
{
body: object,
warnings: object
}
The body object contains the actually payload of the response.
The warnings object can contain information regarding the response. A simple example would be that your request payload contained invalid data which no longer lead to an error response but will be ignored and just added to the warnings object.
Error handling
Fatal errors will still be on root level and stop further processing on the API:
{
error: string
}