Skip to main content

Transmittermetadata

Properties

NameTypeDescriptionNotes
SpecVersionStringVersion of the SSF specification supported.[optional]
IssuerStringBase URL of the transmitter (issuer).[optional]
JwksUriStringURL of the transmitter's JSON Web Key Set.[optional]
DeliveryMethodsSupported[]StringSupported delivery methods (e.g. push URN).[optional]
ConfigurationEndpointStringEndpoint for stream configuration (create, read, update, replace, delete).[optional]
StatusEndpointStringEndpoint for reading and updating stream status.[optional]
VerificationEndpointStringEndpoint for receiver verification.[optional]
AuthorizationSchemes[]AuthorizationschemeSupported authorization schemes (e.g. OAuth2, Bearer).[optional]

Examples

  • Prepare the resource
$Transmittermetadata = Initialize-Transmittermetadata  -SpecVersion 10 `
-Issuer https://tenant.api.identitynow.com `
-JwksUri https://tenant.api.identitynow.com/ssf/jwks `
-DeliveryMethodsSupported ["urn:ietf:rfc:8935"] `
-ConfigurationEndpoint https://tenant.api.identitynow.com/latest/ssf/streams `
-StatusEndpoint https://tenant.api.identitynow.com/latest/ssf/streams/status `
-VerificationEndpoint https://tenant.api.identitynow.com/latest/ssf/streams/verify `
-AuthorizationSchemes null
  • Convert the resource to JSON
$Transmittermetadata | ConvertTo-JSON

[Back to top]