Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/PatchServiceDeskIntegrationRequest.md
2025-02-20 12:59:19 -05:00

1.4 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-patch-service-desk-integration-request PatchServiceDeskIntegrationRequest PatchServiceDeskIntegrationRequest PatchServiceDeskIntegrationRequest pythonsdk
python
Python
sdk
PatchServiceDeskIntegrationRequest
V2024PatchServiceDeskIntegrationRequest
/tools/sdk/python/v2024/models/patch-service-desk-integration-request
SDK
Software Development Kit
PatchServiceDeskIntegrationRequest
V2024PatchServiceDeskIntegrationRequest

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.v2024.models.patch_service_desk_integration_request import PatchServiceDeskIntegrationRequest

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

[Back to top]