PatchServiceDeskIntegrationRequest
A JSONPatch document as defined by RFC 6902 - JSON Patch. Only replace
operations are accepted by this endpoint.
Properties
Name | Type | Description | Notes |
---|---|---|---|
operations | []JsonPatchOperation | Operations to be applied | [optional] |
} |
Example
from sailpoint.v3.models.patch_service_desk_integration_request import PatchServiceDeskIntegrationRequest
patch_service_desk_integration_request = PatchServiceDeskIntegrationRequest(
operations=[
sailpoint.v3.models.json_patch_operation.JsonPatchOperation(
op = 'replace',
path = '/description',
value = New description, )
]
)