mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
* IDNPALM-4257 Access profile bulk update API documentation. * IDNPALM-4257 Access profile bulk update API documentation. * IDNPALM-4257 Lint errors resolved. * IDNPALM-4257 Lint errors resolved. * IDNPALM-4257 feature flag precondition response added. * IDNPALM-4257 API name changed. * IDNPALM-4249 Remove comment configuration options from POST /v3/access-profiles' by github action: 7841109100
22 lines
507 B
YAML
22 lines
507 B
YAML
description: List of Access profiles to be updated.
|
|
type: array
|
|
items:
|
|
type: object
|
|
description: Access Profile's basic details.
|
|
properties:
|
|
id:
|
|
type: string
|
|
description: Access Profile ID.
|
|
example: 464ae7bf-791e-49fd-b746-06a2e4a8
|
|
requestable:
|
|
type: boolean
|
|
description: Access Profile is requestable or not.
|
|
example: false
|
|
example:
|
|
[
|
|
{
|
|
"id": "464ae7bf-791e-49fd-b746-06a2e4a8",
|
|
"requestable": false
|
|
}
|
|
]
|
|
required: [id, requestable] |