Skip to main content

Deliveryrequest

Delivery configuration for PATCH /ssf/streams (partial update). All fields are optional; only provided fields are updated.

Properties

NameTypeDescriptionNotes
methodstrDelivery method (optional for PATCH).[optional]
endpoint_urlstrReceiver endpoint URL (optional for PATCH).[optional]
authorization_headerstrOptional authorization header value.[optional]
}

Example

from sailpoint.shared_signals_framework_ssf.models.deliveryrequest import Deliveryrequest

deliveryrequest = Deliveryrequest(
method='urn:ietf:rfc:8935',
endpoint_url='https://receiver.example.com/ssf/events',
authorization_header='Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...'
)

[Back to top]