Endpoint
/v1/auth/local-username/{username}/related-identities/
GET
Given a local username, return all related identities (equivalents in other domains, and containing groups). This API is deprecated in favor of /v1/identity/expand
Parameters
Name
Description
Required
username
The local username to expand.
Yes
Response
Codes
Code
Description
200
Return value on success
Schema
{
"type" : "array" ,
"items" : {
"description" : "api_identity_v1" ,
"type" : "object" ,
"properties" : {
"id_type" : {
"type" : "string" ,
"enum" : [
"LOCAL_USER" ,
"LOCAL_GROUP" ,
"NFS_GID" ,
"NFS_UID" ,
"SMB_SID" ,
"INTERNAL" ,
"QUMULO_OPERATOR"
],
"description" : "id_type: \n * `INTERNAL` - INTERNAL, \n * `LOCAL_GROUP` - LOCAL_GROUP, \n * `LOCAL_USER` - LOCAL_USER, \n * `NFS_GID` - NFS_GID, \n * `NFS_UID` - NFS_UID, \n * `QUMULO_OPERATOR` - QUMULO_OPERATOR, \n * `SMB_SID` - SMB_SID"
},
"id_value" : {
"description" : "id_value" ,
"type" : "string"
}
}
}
}