Skip to main content

Authorizationscheme

Authorization scheme supported by the transmitter.

Properties

NameTypeDescriptionNotes
spec_urnstrURN describing the authorization specification. OAuth 2.0: urn:ietf:rfc:6749; Bearer token: urn:ietf:rfc:6750.[optional]
}

Example

from sailpoint.shared_signals_framework_ssf.models.authorizationscheme import Authorizationscheme

authorizationscheme = Authorizationscheme(
spec_urn='urn:ietf:rfc:6749'
)

[Back to top]