Skip to main content

Createstreamrequest

Properties

NameTypeDescriptionNotes
DeliveryCreatestreamdeliveryrequest[required]
EventsRequested[]StringOptional list of event types the receiver wants. Use CAEP event-type URIs in the form: https://schemas.openid.net/secevent/caep/event-type/{event-type} (e.g. session revoke).[optional]
DescriptionStringOptional human-readable description of the stream.[optional]

Examples

  • Prepare the resource
$Createstreamrequest = Initialize-Createstreamrequest  -Delivery null `
-EventsRequested ["https://schemas.openid.net/secevent/caep/event-type/session-revoked"] `
-Description Production event stream
  • Convert the resource to JSON
$Createstreamrequest | ConvertTo-JSON

[Back to top]