Skip to main content

ReplaceStreamConfigurationRequestDelivery

Properties

NameTypeDescriptionNotes
MethodStringDelivery method (only push is supported).[required]
EndpointUrlStringReceiver endpoint URL for push delivery.[required]
AuthorizationHeaderStringAuthorization header value for delivery requests.[optional]

Examples

  • Prepare the resource
$ReplaceStreamConfigurationRequestDelivery = Initialize-ReplaceStreamConfigurationRequestDelivery  -Method urn:ietf:rfc:8935 `
-EndpointUrl https://receiver.example.com/ssf/events `
-AuthorizationHeader Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
  • Convert the resource to JSON
$ReplaceStreamConfigurationRequestDelivery | ConvertTo-JSON

[Back to top]