Retrieve AuthUserUUID by organization and user UUIDs
POST/account/organization/:organizationUUID/auth_user_uuid
Retrieve the AuthUserUUID for a list of users within a specific organization.
Request
Path Parameters
UUID of the organization
- application/json
Body
required
Possible values: >= 1
List of user UUIDs
Responses
- 200
- 401
- 403
- 404
- 500
List of AuthUserUUIDs corresponding to the given user UUIDs
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
Original user UUID
Corresponding AuthUserUUID
[
{
"user_uuid": "string",
"auth_user_uuid": "string"
}
]
[
{
"user_uuid": "Jky1qMsA",
"auth_user_uuid": "Jky1qMsA"
}
]
Returned if the authentication credentials are incorrect or missing.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Unauthorized",
"errorMsg": "Access token is invalid"
}
Returns if the scope check fails.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Forbidden",
"errorMsg": "Scope is invalid"
}
Returned if the resource object was not found.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "NotFound",
"errorMsg": "Not Found"
}
Internal Server Error.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Internal Server Error",
"errorMsg": "Internal Server Error"
}