Skip to main content

Createstreamdeliveryrequest

Full delivery configuration. method and endpoint_url are required.

Properties

NameTypeDescriptionNotes
methodstrDelivery method (only push is supported).[required]
endpoint_urlstrReceiver endpoint URL for push delivery.[required]
authorization_headerstrAuthorization header value for delivery requests.[optional]
}

Example

from sailpoint.shared_signals_framework_ssf.models.createstreamdeliveryrequest import Createstreamdeliveryrequest

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

[Back to top]