Skip to main content

PatchServiceDeskIntegrationRequest

A JSONPatch document as defined by RFC 6902 - JSON Patch. Only replace operations are accepted by this endpoint.

Properties

NameTypeDescriptionNotes
operations[]JsonPatchOperationOperations to be applied[optional]
}

Example

from sailpoint.beta.models.patch_service_desk_integration_request import PatchServiceDeskIntegrationRequest

patch_service_desk_integration_request = PatchServiceDeskIntegrationRequest(
operations=[
sailpoint.beta.models.json_patch_operation.JsonPatchOperation(
op = 'replace',
path = '/description',
value = New description, )
]
)

[Back to top]