Skip to content

Commit d71cdc6

Browse files
Automated build 'Automated commit 'Merge pull request #2396 from sailpoint/ISCNAPS-5674
ISCNAPS-5674 - Updating docs to reflect endpoints properly.' by github action: 18943644177' python sdk: 18943665637
1 parent 2d48d0c commit d71cdc6

File tree

10 files changed

+112
-113
lines changed

10 files changed

+112
-113
lines changed

sailpoint/v2025/api/approvals_api.py

Lines changed: 55 additions & 55 deletions
Large diffs are not rendered by default.

sailpoint/v2025/docs/Examples/python_code_examples_overlay.yaml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2296,11 +2296,11 @@
22962296
print(item.model_dump_json(by_alias=True, indent=4))
22972297
except Exception as e:
22982298
print("Exception when calling ApprovalsApi->get_approvals: %s\n" % e)
2299-
- path: /generic-approvals/config
2299+
- path: /generic-approvals/config/{id}
23002300
method: GET
23012301
xCodeSample:
23022302
- lang: Python
2303-
label: SDK_tools/sdk/python/v2025/methods/approvals#get-approvals-config-id-type
2303+
label: SDK_tools/sdk/python/v2025/methods/approvals#get-approvals-config
23042304
source: |
23052305
from sailpoint.v2025.api.approvals_api import ApprovalsApi
23062306
from sailpoint.v2025.api_client import ApiClient
@@ -2310,17 +2310,17 @@
23102310

23112311

23122312
with ApiClient(configuration) as api_client:
2313-
id = '38453251-6be2-5f8f-df93-5ce19e295837' # str | ID the ID defined by the scope field, this could the approval ID (uuid), specific domain object ID (uuid), approval type (role/application/access_request/entitlement/source), tenant ID (uuid) # str | ID the ID defined by the scope field, this could the approval ID (uuid), specific domain object ID (uuid), approval type (role/application/access_request/entitlement/source), tenant ID (uuid)
2313+
id = '38453251-6be2-5f8f-df93-5ce19e295837' # str | The id of the object the config applies to, for example one of the following: [{approvalID}, {roleID}, {entitlementID}, {accessProfileID}, {sourceID}, {applicationID}, \"ENTITLEMENT_DESCRIPTIONS\", \"ACCESS_REQUEST_APPROVAL\", {tenantID}] # str | The id of the object the config applies to, for example one of the following: [{approvalID}, {roleID}, {entitlementID}, {accessProfileID}, {sourceID}, {applicationID}, \"ENTITLEMENT_DESCRIPTIONS\", \"ACCESS_REQUEST_APPROVAL\", {tenantID}]
23142314
try:
2315-
# Get Approval Config Type
2315+
# Get Approval Config
23162316

2317-
results = ApprovalsApi(api_client).get_approvals_config_id_type(id=id)
2317+
results = ApprovalsApi(api_client).get_approvals_config(id=id)
23182318
# Below is a request that includes all optional parameters
2319-
# results = ApprovalsApi(api_client).get_approvals_config_id_type(id)
2320-
print("The response of ApprovalsApi->get_approvals_config_id_type:\n")
2319+
# results = ApprovalsApi(api_client).get_approvals_config(id)
2320+
print("The response of ApprovalsApi->get_approvals_config:\n")
23212321
print(results.model_dump_json(by_alias=True, indent=4))
23222322
except Exception as e:
2323-
print("Exception when calling ApprovalsApi->get_approvals_config_id_type: %s\n" % e)
2323+
print("Exception when calling ApprovalsApi->get_approvals_config: %s\n" % e)
23242324
- path: /generic-approvals/bulk-reassign
23252325
method: POST
23262326
xCodeSample:
@@ -2355,7 +2355,7 @@
23552355
method: PUT
23562356
xCodeSample:
23572357
- lang: Python
2358-
label: SDK_tools/sdk/python/v2025/methods/approvals#put-approvals-config-type
2358+
label: SDK_tools/sdk/python/v2025/methods/approvals#put-approvals-config
23592359
source: |
23602360
from sailpoint.v2025.api.approvals_api import ApprovalsApi
23612361
from sailpoint.v2025.api_client import ApiClient
@@ -2365,8 +2365,6 @@
23652365

23662366

23672367
with ApiClient(configuration) as api_client:
2368-
id = '38453251-6be2-5f8f-df93-5ce19e295837' # str | The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[approvalID]]:APPROVAL_REQUEST [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE CUSTOM_ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE GENERIC_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT # str | The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[approvalID]]:APPROVAL_REQUEST [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE CUSTOM_ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE GENERIC_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
2369-
scope = 'ROLE' # str | The scope of the field, where [[id]]:[[scope]] is the following: [[approvalID]]:APPROVAL_REQUEST [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE CUSTOM_ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE GENERIC_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT # str | The scope of the field, where [[id]]:[[scope]] is the following: [[approvalID]]:APPROVAL_REQUEST [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE CUSTOM_ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE GENERIC_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
23702368
approval_config = '''{
23712369
"timeoutConfig" : {
23722370
"daysUntilTimeout" : 2,
@@ -2411,7 +2409,7 @@
24112409
"maxReminders" : 5,
24122410
"enabled" : false
24132411
},
2414-
"scope" : "APPROVAL_REQUEST",
2412+
"scope" : "DOMAIN_OBJECT",
24152413
"tenantId" : "d3c10266-1a31-4acc-b01e-44a3d1c56615",
24162414
"escalationConfig" : {
24172415
"escalationCronSchedule" : "*/5 * * * *",
@@ -2443,16 +2441,18 @@
24432441
} ],
24442442
"autoApprove" : "false"
24452443
}''' # ApprovalConfig |
2444+
id = '38453251-6be2-5f8f-df93-5ce19e295837' # str | The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT (optional) # str | The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT (optional)
2445+
scope = 'ROLE' # str | The scope of the field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT (optional) # str | The scope of the field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT (optional)
24462446
try:
2447-
# Put Approval Config Type
2447+
# Put Approval Config
24482448
new_approval_config = ApprovalConfig.from_json(approval_config)
2449-
results = ApprovalsApi(api_client).put_approvals_config_type(id=id, scope=scope, approval_config=new_approval_config)
2449+
results = ApprovalsApi(api_client).put_approvals_config(approval_config=new_approval_config)
24502450
# Below is a request that includes all optional parameters
2451-
# results = ApprovalsApi(api_client).put_approvals_config_type(id, scope, new_approval_config)
2452-
print("The response of ApprovalsApi->put_approvals_config_type:\n")
2451+
# results = ApprovalsApi(api_client).put_approvals_config(new_approval_config, id, scope)
2452+
print("The response of ApprovalsApi->put_approvals_config:\n")
24532453
print(results.model_dump_json(by_alias=True, indent=4))
24542454
except Exception as e:
2455-
print("Exception when calling ApprovalsApi->put_approvals_config_type: %s\n" % e)
2455+
print("Exception when calling ApprovalsApi->put_approvals_config: %s\n" % e)
24562456
- path: /generic-approvals/{id}/reject
24572457
method: POST
24582458
xCodeSample:

sailpoint/v2025/docs/Methods/ApprovalsApi.md

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Method | HTTP request | Description
2323
[**cancel-approval**](#cancel-approval) | **POST** `/generic-approvals/bulk-cancel` | Post Bulk Cancel Approvals
2424
[**get-approval**](#get-approval) | **GET** `/generic-approvals/{id}` | Get an approval
2525
[**get-approvals**](#get-approvals) | **GET** `/generic-approvals` | Get approvals
26-
[**get-approvals-config-id-type**](#get-approvals-config-id-type) | **GET** `/generic-approvals/config` | Get Approval Config Type
26+
[**get-approvals-config**](#get-approvals-config) | **GET** `/generic-approvals/config/{id}` | Get Approval Config
2727
[**move-approval**](#move-approval) | **POST** `/generic-approvals/bulk-reassign` | Post Bulk Reassign Approvals
28-
[**put-approvals-config-type**](#put-approvals-config-type) | **PUT** `/generic-approvals/config` | Put Approval Config Type
28+
[**put-approvals-config**](#put-approvals-config) | **PUT** `/generic-approvals/config` | Put Approval Config
2929
[**reject-approval**](#reject-approval) | **POST** `/generic-approvals/{id}/reject` | Post Approvals Reject
3030
[**reject-approval-0**](#reject-approval-0) | **POST** `/generic-approvals/bulk-reject` | Post Bulk Reject Approvals
3131
[**update-approvals-attributes**](#update-approvals-attributes) | **POST** `/generic-approvals/{id}/attributes` | Post Approvals Attributes
@@ -389,18 +389,17 @@ with ApiClient(configuration) as api_client:
389389

390390
[[Back to top]](#)
391391

392-
## get-approvals-config-id-type
393-
Get Approval Config Type
394-
Currently this endpoint only supports Entitlement Description Approvals.
392+
## get-approvals-config
393+
Get Approval Config
395394
Retrieves a singular approval configuration that matches the given ID
396395

397-
[API Spec](https://developer.sailpoint.com/docs/api/v2025/get-approvals-config-id-type)
396+
[API Spec](https://developer.sailpoint.com/docs/api/v2025/get-approvals-config)
398397

399398
### Parameters
400399

401400
Param Type | Name | Data Type | Required | Description
402401
------------- | ------------- | ------------- | ------------- | -------------
403-
Path | id | **str** | True | ID the ID defined by the scope field, this could the approval ID (uuid), specific domain object ID (uuid), approval type (role/application/access_request/entitlement/source), tenant ID (uuid)
402+
Path | id | **str** | True | The id of the object the config applies to, for example one of the following: [{approvalID}, {roleID}, {entitlementID}, {accessProfileID}, {sourceID}, {applicationID}, \"ENTITLEMENT_DESCRIPTIONS\", \"ACCESS_REQUEST_APPROVAL\", {tenantID}]
404403

405404
### Return type
406405
[**ApprovalConfig**](../models/approval-config)
@@ -430,18 +429,18 @@ configuration = Configuration()
430429

431430

432431
with ApiClient(configuration) as api_client:
433-
id = '38453251-6be2-5f8f-df93-5ce19e295837' # str | ID the ID defined by the scope field, this could the approval ID (uuid), specific domain object ID (uuid), approval type (role/application/access_request/entitlement/source), tenant ID (uuid) # str | ID the ID defined by the scope field, this could the approval ID (uuid), specific domain object ID (uuid), approval type (role/application/access_request/entitlement/source), tenant ID (uuid)
432+
id = '38453251-6be2-5f8f-df93-5ce19e295837' # str | The id of the object the config applies to, for example one of the following: [{approvalID}, {roleID}, {entitlementID}, {accessProfileID}, {sourceID}, {applicationID}, \"ENTITLEMENT_DESCRIPTIONS\", \"ACCESS_REQUEST_APPROVAL\", {tenantID}] # str | The id of the object the config applies to, for example one of the following: [{approvalID}, {roleID}, {entitlementID}, {accessProfileID}, {sourceID}, {applicationID}, \"ENTITLEMENT_DESCRIPTIONS\", \"ACCESS_REQUEST_APPROVAL\", {tenantID}]
434433

435434
try:
436-
# Get Approval Config Type
435+
# Get Approval Config
437436

438-
results = ApprovalsApi(api_client).get_approvals_config_id_type(id=id)
437+
results = ApprovalsApi(api_client).get_approvals_config(id=id)
439438
# Below is a request that includes all optional parameters
440-
# results = ApprovalsApi(api_client).get_approvals_config_id_type(id)
441-
print("The response of ApprovalsApi->get_approvals_config_id_type:\n")
439+
# results = ApprovalsApi(api_client).get_approvals_config(id)
440+
print("The response of ApprovalsApi->get_approvals_config:\n")
442441
print(results.model_dump_json(by_alias=True, indent=4))
443442
except Exception as e:
444-
print("Exception when calling ApprovalsApi->get_approvals_config_id_type: %s\n" % e)
443+
print("Exception when calling ApprovalsApi->get_approvals_config: %s\n" % e)
445444
```
446445

447446

@@ -512,19 +511,19 @@ with ApiClient(configuration) as api_client:
512511

513512
[[Back to top]](#)
514513

515-
## put-approvals-config-type
516-
Put Approval Config Type
517-
Upserts a singular approval configuration that matches the given configID and configScope
514+
## put-approvals-config
515+
Put Approval Config
516+
Upserts a singular approval configuration that matches the given configID and configScope. If id and scope are not provided, it will default to setting the tenant config.
518517

519-
[API Spec](https://developer.sailpoint.com/docs/api/v2025/put-approvals-config-type)
518+
[API Spec](https://developer.sailpoint.com/docs/api/v2025/put-approvals-config)
520519

521520
### Parameters
522521

523522
Param Type | Name | Data Type | Required | Description
524523
------------- | ------------- | ------------- | ------------- | -------------
525-
Query | id | **str** | True | The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[approvalID]]:APPROVAL_REQUEST [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE CUSTOM_ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE GENERIC_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
526-
Query | scope | **str** | True | The scope of the field, where [[id]]:[[scope]] is the following: [[approvalID]]:APPROVAL_REQUEST [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE CUSTOM_ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE GENERIC_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
527524
Body | approval_config | [**ApprovalConfig**](../models/approval-config) | True |
525+
Query | id | **str** | (optional) | The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
526+
Query | scope | **str** | (optional) | The scope of the field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
528527

529528
### Return type
530529
[**ApprovalConfig**](../models/approval-config)
@@ -555,8 +554,6 @@ configuration = Configuration()
555554

556555

557556
with ApiClient(configuration) as api_client:
558-
id = '38453251-6be2-5f8f-df93-5ce19e295837' # str | The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[approvalID]]:APPROVAL_REQUEST [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE CUSTOM_ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE GENERIC_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT # str | The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[approvalID]]:APPROVAL_REQUEST [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE CUSTOM_ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE GENERIC_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
559-
scope = 'ROLE' # str | The scope of the field, where [[id]]:[[scope]] is the following: [[approvalID]]:APPROVAL_REQUEST [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE CUSTOM_ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE GENERIC_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT # str | The scope of the field, where [[id]]:[[scope]] is the following: [[approvalID]]:APPROVAL_REQUEST [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE CUSTOM_ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE GENERIC_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT
560557
approval_config = '''{
561558
"timeoutConfig" : {
562559
"daysUntilTimeout" : 2,
@@ -601,7 +598,7 @@ with ApiClient(configuration) as api_client:
601598
"maxReminders" : 5,
602599
"enabled" : false
603600
},
604-
"scope" : "APPROVAL_REQUEST",
601+
"scope" : "DOMAIN_OBJECT",
605602
"tenantId" : "d3c10266-1a31-4acc-b01e-44a3d1c56615",
606603
"escalationConfig" : {
607604
"escalationCronSchedule" : "*/5 * * * *",
@@ -633,17 +630,19 @@ with ApiClient(configuration) as api_client:
633630
} ],
634631
"autoApprove" : "false"
635632
}''' # ApprovalConfig |
633+
id = '38453251-6be2-5f8f-df93-5ce19e295837' # str | The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT (optional) # str | The ID defined by the scope field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT (optional)
634+
scope = 'ROLE' # str | The scope of the field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT (optional) # str | The scope of the field, where [[id]]:[[scope]] is the following: [[roleID]]:ROLE [[entitlementID]]:ENTITLEMENT [[accessProfileID]]:ACCESS_PROFILE [[sourceID]]:SOURCE [[applicationID]]:APPLICATION ENTITLEMENT_DESCRIPTIONS:APPROVAL_TYPE ACCESS_REQUEST_APPROVAL:APPROVAL_TYPE [[tenantID]]:TENANT (optional)
636635

637636
try:
638-
# Put Approval Config Type
637+
# Put Approval Config
639638
new_approval_config = ApprovalConfig.from_json(approval_config)
640-
results = ApprovalsApi(api_client).put_approvals_config_type(id=id, scope=scope, approval_config=new_approval_config)
639+
results = ApprovalsApi(api_client).put_approvals_config(approval_config=new_approval_config)
641640
# Below is a request that includes all optional parameters
642-
# results = ApprovalsApi(api_client).put_approvals_config_type(id, scope, new_approval_config)
643-
print("The response of ApprovalsApi->put_approvals_config_type:\n")
641+
# results = ApprovalsApi(api_client).put_approvals_config(new_approval_config, id, scope)
642+
print("The response of ApprovalsApi->put_approvals_config:\n")
644643
print(results.model_dump_json(by_alias=True, indent=4))
645644
except Exception as e:
646-
print("Exception when calling ApprovalsApi->put_approvals_config_type: %s\n" % e)
645+
print("Exception when calling ApprovalsApi->put_approvals_config: %s\n" % e)
647646
```
648647

649648

sailpoint/v2025/docs/Models/Approval.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ batch_request={batchId=38453251-6be2-5f8f-df93-5ce19e295837, batchSize=100},
9292
approval_config=sailpoint.v2025.models.approval_config.ApprovalConfig(
9393
tenant_id = 'd3c10266-1a31-4acc-b01e-44a3d1c56615',
9494
id = '5804e7d6-e04b-400f-9fb8-dff894419a2f',
95-
scope = 'APPROVAL_REQUEST',
95+
scope = 'DOMAIN_OBJECT',
9696
reminder_config = sailpoint.v2025.models.approval_config_reminder_config.ApprovalConfig_reminderConfig(
9797
enabled = False,
9898
days_until_first_reminder = 0,

0 commit comments

Comments
 (0)