Get profile list
- Print
- PDF
Get profile list
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Get the profile list.
API
- GET /profiles
Request
Parameters
Parameter | Required | Type | Restrictions | Description |
---|---|---|---|---|
searchColumn | N | String | name, profileNrn | Search column (name, profileNrn) |
searchWord | N | String | Search keyword | |
page | N | int | Default: 0 | Page number |
size | N | int | Default: 20 | Result list size |
Response
Body
{
"pageNo": integer,
"totalElements": integer,
"pageSize": integer,
"content": [
{
"profileId": "string",
"profileNrn": "string",
"name": "string",
"description": "string",
"enabled": boolean,
"durationSeconds": integer,
"roleNrnList": [
"string"
],
"createTime": "string",
"updateTime": "string"
}
]
}
Response fields
Item | Type | Description |
---|---|---|
pageNo | Integer | Page number |
totalElements | integer | Total number of items |
pageSize | integer | Page size |
content.profileId | string | Profile ID |
content.profileNrn | string | Profile NRN |
content.name | string | Profile name |
content.description | string | Profile description |
content.enabled | boolean | Profile activation status |
content.durationSeconds | integer | Temporary credential duration (second) |
content.roleNrnList | list | List of roleNrns of roles this profile can use for temporary credentials |
content.createTime | string | Creation time |
content.updateTime | string | Modification time |
Was this article helpful?