Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.52 KB

File metadata and controls

38 lines (29 loc) · 2.52 KB

PostAPIServiceIntegrationInstance

Properties

Name Type Description Notes
config_guide_url str The URL to the API service integration configuration guide [optional] [readonly]
created_at str Timestamp when the API Service Integration instance was created [optional] [readonly]
created_by str The user ID of the API Service Integration instance creator [optional] [readonly]
granted_scopes List[str] The list of Okta management scopes granted to the API Service Integration instance. See Okta management OAuth 2.0 scopes. [optional]
id str The ID of the API Service Integration instance [optional] [readonly]
name str 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. [optional] [readonly]
properties Dict[str, AppPropertiesValue] App instance properties [optional]
type str The type of the API service integration. This string is an underscore-concatenated, lowercased API service integration name. For example, `my_api_log_integration`. [optional]
links APIServiceIntegrationLinks [optional]
client_secret str The client secret for the API Service Integration instance. This property is only returned in a POST response. [optional] [readonly]

Example

from okta.models.post_api_service_integration_instance import PostAPIServiceIntegrationInstance

# TODO update the JSON string below
json = "{}"
# create an instance of PostAPIServiceIntegrationInstance from a JSON string
post_api_service_integration_instance_instance = PostAPIServiceIntegrationInstance.from_json(json)
# print the JSON string representation of the object
print(PostAPIServiceIntegrationInstance.to_json())

# convert the object into a dict
post_api_service_integration_instance_dict = post_api_service_integration_instance_instance.to_dict()
# create an instance of PostAPIServiceIntegrationInstance from a dict
post_api_service_integration_instance_from_dict = PostAPIServiceIntegrationInstance.from_dict(post_api_service_integration_instance_dict)

[Back to Model list] [Back to API list] [Back to README]