Use this API to implement managed client functionality.
With this functionality in place, administrators can modify and delete existing managed clients, create new ones, and view and make changes to their log configurations.
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: application/json
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.managed_clientimportManagedClientfromsailpoint.v2024.models.managed_client_requestimportManagedClientRequestfromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintmanaged_client_request={"name":"aName","description":"A short description of the ManagedClient","clusterId":"aClusterId","type":"VA"}# ManagedClientRequest | try:# Create Managed ClientResult=managed_client_request.from_json(managed_client_request)api_response=api_instance.create_managed_client(Result)# Below is a request that includes all optional parameters# api_response = api_instance.create_managed_client(Result)print("The response of ManagedClientsApi->create_managed_client:\n")pprint(api_response)exceptExceptionase:print("Exception when calling ManagedClientsApi->create_managed_client: %s\n"%e)
No content - indicates the request was successful but there is no content to be returned in the response.
-
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintid='4440278c-0ce2-41ee-a0a9-f5cfd5e8d3b7'# str | Managed client ID. # str | Managed client ID.try:# Delete Managed Clientapi_instance.delete_managed_client(id)# Below is a request that includes all optional parameters# api_instance.delete_managed_client(id)exceptExceptionase:print("Exception when calling ManagedClientsApi->delete_managed_client: %s\n"%e)
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
404
Not Found - returned if the request URL refers to a resource or object that does not exist
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.managed_clientimportManagedClientfromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintid='4440278c-0ce2-41ee-a0a9-f5cfd5e8d3b7'# str | Managed client ID. # str | Managed client ID.try:# Get Managed Clientapi_response=api_instance.get_managed_client(id)# Below is a request that includes all optional parameters# api_response = api_instance.get_managed_client(id)print("The response of ManagedClientsApi->get_managed_client:\n")pprint(api_response)exceptExceptionase:print("Exception when calling ManagedClientsApi->get_managed_client: %s\n"%e)
Response with the managed client status, with the given ID and type.
ManagedClientStatus
-
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
404
Not Found - returned if the request URL refers to a resource or object that does not exist
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.managed_client_statusimportManagedClientStatusfromsailpoint.v2024.models.managed_client_typeimportManagedClientTypefromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintid='aClientId'# str | Managed client ID to get status for. # str | Managed client ID to get status for.type=sailpoint.v2024.ManagedClientType()# ManagedClientType | Managed client type to get status for. # ManagedClientType | Managed client type to get status for.try:# Get Managed Client Statusapi_response=api_instance.get_managed_client_status(id,type)# Below is a request that includes all optional parameters# api_response = api_instance.get_managed_client_status(id, type)print("The response of ManagedClientsApi->get_managed_client_status:\n")pprint(api_response)exceptExceptionase:print("Exception when calling ManagedClientsApi->get_managed_client_status: %s\n"%e)
Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.
If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored. Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used. See V3 API Standard Collection Parameters for more information.
Query
filters
str
(optional)
Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: id: eqname: eqclientId: eqclusterId: eq
Response with a list of managed clients, based on the specified query parameters.
List[ManagedClient]
-
400
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.managed_clientimportManagedClientfromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintoffset=0# int | Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 0) # int | Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 0)limit=250# int | Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 250) # int | Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 250)count=False# bool | If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to False) # bool | If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to False)filters='name eq \"client name\"'# str | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **clientId**: *eq* **clusterId**: *eq* (optional) # str | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **clientId**: *eq* **clusterId**: *eq* (optional)try:# Get Managed Clientsapi_response=api_instance.get_managed_clients()# Below is a request that includes all optional parameters# api_response = api_instance.get_managed_clients(offset, limit, count, filters)print("The response of ManagedClientsApi->get_managed_clients:\n")pprint(api_response)exceptExceptionase:print("Exception when calling ManagedClientsApi->get_managed_clients: %s\n"%e)
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
404
Not Found - returned if the request URL refers to a resource or object that does not exist
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: application/json-patch+json
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.json_patch_operationimportJsonPatchOperationfromsailpoint.v2024.models.managed_clientimportManagedClientfromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintid='4440278c-0ce2-41ee-a0a9-f5cfd5e8d3b7'# str | Managed client ID. # str | Managed client ID.[sailpoint.v2024.JsonPatchOperation()]# List[JsonPatchOperation] | JSONPatch payload used to update the object.json_patch_operation={"op":"replace","path":"/description","value":"New description"}# List[JsonPatchOperation] | JSONPatch payload used to update the object.try:# Update Managed ClientResult=json_patch_operation.from_json(json_patch_operation)api_response=api_instance.update_managed_client(id,Result)# Below is a request that includes all optional parameters# api_response = api_instance.update_managed_client(id, Result)print("The response of ManagedClientsApi->update_managed_client:\n")pprint(api_response)exceptExceptionase:print("Exception when calling ManagedClientsApi->update_managed_client: %s\n"%e)