You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name of the API service integration that corresponds with the `type` property. This is the full name of the API service integration listed in the Okta Integration Network (OIN) catalog.
The type of the API service integration. This string is an underscore-concatenated, lowercased API service integration name. For example, `my_api_log_integration`.
The client secret for the API Service Integration instance. This property is only returned in a POST response.
[optional] [readonly]
Example
fromokta.models.post_api_service_integration_instanceimportPostAPIServiceIntegrationInstance# TODO update the JSON string belowjson="{}"# create an instance of PostAPIServiceIntegrationInstance from a JSON stringpost_api_service_integration_instance_instance=PostAPIServiceIntegrationInstance.from_json(json)
# print the JSON string representation of the objectprint(PostAPIServiceIntegrationInstance.to_json())
# convert the object into a dictpost_api_service_integration_instance_dict=post_api_service_integration_instance_instance.to_dict()
# create an instance of PostAPIServiceIntegrationInstance from a dictpost_api_service_integration_instance_from_dict=PostAPIServiceIntegrationInstance.from_dict(post_api_service_integration_instance_dict)