Endpoint
/v1/auth/identities/{id}/attributes
GET
Get the identity attributes for an identity.
Parameters
Name |
Description |
Required |
id |
URI parameter id |
Yes |
Response
Codes
Code |
Description |
200 |
Return value on success |
Schema
{
"description": "identity_attributes",
"type": "object",
"properties": {
"home_directory": {
"description": "home_directory",
"type": "string"
}
}
}
PUT
Set the identity attributes for an identity.
Parameters
Name |
Description |
Required |
id |
URI parameter id |
Yes |
Request
Schema
{
"description": "identity_attributes",
"type": "object",
"properties": {
"home_directory": {
"description": "home_directory",
"type": "string"
}
}
}
Response
Codes
Code |
Description |
200 |
Return value on success |
Schema
{
"description": "identity_attributes",
"type": "object",
"properties": {
"home_directory": {
"description": "home_directory",
"type": "string"
}
}
}
DELETE
Delete the identity attributes for an identity.
Parameters
Name |
Description |
Required |
id |
URI parameter id |
Yes |
Response
Codes
Code |
Description |
200 |
Return value on success |