GET/users/external-keys
Gets a list of member external keys.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
directory
directory.read
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | Domain ID example : 10000001 format : int32 |
| count | integer | Number of items to get default : 100 minimum : 1 maximum : 100 example : 100 format : int32 |
| cursor | string | Cursor example : JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA== |
| hasExternalKey | boolean | Gets resources based on whether they have external keys.
example : false |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| users | array (TenantUniqueExternalKeyResponse) | Member information |
| responseMetaData | object (responseMetaData) | Response metadata |
| Property | Type | Description |
|---|---|---|
| domainId | integer | Domain ID format : int32 readOnly : true |
| name | string | First name readOnly : true |
| string | Email address readOnly : true | |
| id | string | ID. It is the ID automatically assigned to a resource. readOnly : true |
| externalKey | string | Customer's external key. readOnly : true |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | Cursor value for pagination |
example
1{2 "users": [3 {4 "domainId": 10000001,5 "name": "name01",6 "email": "localpart@example.com",7 "id": "userf7da-f82c-4284-13e7-030f3b4c756x",8 "externalKey": "USER_EXT_01"9 },10 {11 "domainId": 10000001,12 "name": "name02",13 "email": "user02@example.com",14 "id": "user6362-21a9-1kbc-1234-126e09fcegd1",15 "externalKey": "USER_EXT_02"16 }17 ],18 "responseMetaData": {19 "nextCursor": "JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="20 }21}