mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.4 KiB
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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-patch-service-desk-integration-request | PatchServiceDeskIntegrationRequest | PatchServiceDeskIntegrationRequest | PatchServiceDeskIntegrationRequest | pythonsdk |
|
/tools/sdk/python/v2025/models/patch-service-desk-integration-request |
|
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.v2025.models.patch_service_desk_integration_request import PatchServiceDeskIntegrationRequest
patch_service_desk_integration_request = PatchServiceDeskIntegrationRequest(
operations=[
sailpoint.v2025.models.json_patch_operation.JsonPatchOperation(
op = 'replace',
path = '/description',
value = New description, )
]
)