Return a list of claim mappings
Permission Level: Read
GET /users/claim-mappings
Operation id: ClaimMappingService_ListClaimMappings
Tags: ClaimMappingService
Parameters
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain | string | No | Domain of the role (example: zpa, reflexis, wfc, etc), Required: false |
pageSize | integer (int32) | No | Page Size, Default: 10, Required: false |
pageToken | string | No | Page number of the search results, Default: 0, Required: false |
scope | string | No | Some more general scoping (like a particular app in the domain), Required: false |
tenantId | string | No | Tenant of the Roles to fetch, Required: false |
Security
- Authorization (apiKey)
- Bearer token
Responses
200 — A successful response.
Content type: application/json
default — An unexpected error response.
Content type: application/json
Response models
200 — A successful response.
Content type: application/json
Schema
| Property | Type | Required | Description |
|---|---|---|---|
mappings | array | No | |
nextPageToken | string | No | The token of the next page of results. |
{
"type": "object",
"properties": {
"mappings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"claimMappingId": {
"type": "string"
},
"mapping": {
"type": "object",
"properties": {
"claim": {
"type": "object"
},
"role": {
"type": "object"
}
}
}
}
}
},
"nextPageToken": {
"type": "string",
"description": "The token of the next page of results."
}
}
}
default — An unexpected error response.
Content type: application/json
Schema
| Property | Type | Required | Description |
|---|---|---|---|
code | integer (int32) | No | |
message | string | No | |
details | array | No |
{
"type": "object",
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
},
"details": {
"type": "array",
"items": {
"type": "object",
"properties": {
"@type": {
"type": "string"
}
}
}
}
}
}