Deliveryrequest
Delivery configuration for PATCH /ssf/streams (partial update). All fields are optional; only provided fields are updated.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| method | str | Delivery method (optional for PATCH). | [optional] |
| endpoint_url | str | Receiver endpoint URL (optional for PATCH). | [optional] |
| authorization_header | str | Optional 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...'
)