Skip to main content

Httpconfig

Properties

NameTypeDescriptionNotes
urlstrURL of the external/custom integration.[required]
http_dispatch_modeHttpdispatchmode[required]
http_authentication_typeHttpauthenticationtype[optional] [default to Httpauthenticationtype.NO_AUTH]
basic_auth_configBasicauthconfig[optional]
bearer_token_auth_configBearertokenauthconfig[optional]
}

Example

from sailpoint.triggers.models.httpconfig import Httpconfig

httpconfig = Httpconfig(
url='https://www.example.com',
http_dispatch_mode='SYNC',
http_authentication_type='NO_AUTH',
basic_auth_config=sailpoint.triggers.models.basic_auth_config.Basic Auth Config(
user_name = 'user@example.com',
password = '', ),
bearer_token_auth_config=sailpoint.triggers.models.bearer_token_auth_config.Bearer Token Auth Config(
bearer_token = '', )
)

[Back to top]