Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/HttpConfig.md
2025-02-20 12:59:19 -05:00

1.4 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-http-config HttpConfig HttpConfig HttpConfig pythonsdk
python
Python
sdk
HttpConfig
BetaHttpConfig
/tools/sdk/python/beta/models/http-config
SDK
Software Development Kit
HttpConfig
BetaHttpConfig

HttpConfig

Properties

Name Type Description Notes
url str URL of the external/custom integration. [required]
http_dispatch_mode HttpDispatchMode [required]
http_authentication_type HttpAuthenticationType [optional] [default to HttpAuthenticationType.NO_AUTH]
basic_auth_config BasicAuthConfig [optional]
bearer_token_auth_config BearerTokenAuthConfig [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 = 'user@example.com', 
                    password = '', ),
bearer_token_auth_config=sailpoint.beta.models.bearer_token_auth_config.BearerTokenAuthConfig(
                    bearer_token = '', )
)

[Back to top]