Skip to main content

ReplacestreamconfigurationrequestDelivery

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.replacestreamconfigurationrequest_delivery import ReplacestreamconfigurationrequestDelivery

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

[Back to top]