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.beta.models.http_config import HttpConfig

http_config = HttpConfig(
url='https://www.example.com',
http_dispatch_mode='SYNC',
http_authentication_type='NO_AUTH',
basic_auth_config=sailpoint.beta.models.basic_auth_config.BasicAuthConfig(
user_name = '[email protected]',
password = '', ),
bearer_token_auth_config=sailpoint.beta.models.bearer_token_auth_config.BearerTokenAuthConfig(
bearer_token = '', )
)

[Back to top]