Automated commit 'Merge pull request #1537 from sailpoint/philc/IDNDENALI-9007

IDNDENALI-9007 - Updated V3 SDIM Patch description to match implementation' by github action: 7616000011
This commit is contained in:
GitHub Action Bot
2024-01-22 18:56:34 +00:00
parent 00b47bbdc9
commit 38ee89eac8

View File

@@ -136,28 +136,32 @@ patch:
description: |
A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
PATCH can only be applied to the following fields:
* `beforeProvisioningRule`
* `description`
* `ownerRef`
A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
Only `replace` operations are accepted by this endpoint.
A 403 Forbidden Error indicates that you attempted to PATCH a operation that is not allowed.
content:
application/json-patch+json:
schema:
$ref: '../schemas/JsonPatch.yaml'
example:
[
{
"op": "replace",
"path": "/ownerRef",
"value": {
"id": "2c9180867d05b227017d09921a205b4d",
"type": "IDENTITY",
"name": "Angelo2 tester"
type: object
description: A JSONPatch document as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902). Only `replace` operations are accepted by this endpoint.
properties:
operations:
description: Operations to be applied
type: array
items:
$ref: '../schemas/JsonPatchOperation.yaml'
example: >-
[
{
"op": "replace",
"path": "/ownerRef",
"value": {
"id": "2c9180867d05b227017d09921a205b4d",
"type": "IDENTITY",
"name": "Angelo2 tester"
}
}
}
]
]
responses:
"200":
description: ServiceDeskIntegrationDto as updated