Skip to content

Commit f658390

Browse files
fix for new maestro sdk (#151)
1 parent 8b096a9 commit f658390

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/ds_config_sample.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"rooms_api_client_host": "https://demo.rooms.docusign.com/restapi",
1717
"monitor_api_client_host": "https://lens-d.docusign.net",
1818
"admin_api_client_host": "https://api-d.docusign.net/management",
19-
"maestro_api_client_host": "https://demo.services.docusign.net/",
19+
"maestro_api_client_host": "https://apps-d.docusign.com/api/maestro",
2020
"webforms_api_client_host": "https://apps-d.docusign.com/api/webforms/v1.1",
2121
"allow_silent_authentication": True, # a user can be silently authenticated if they have an
2222
# active login session on another tab of the same browser

app/maestro/examples/eg001_trigger_workflow.py

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def trigger_workflow(workflow, args):
6868
workflow_trigger_api = WorkflowTriggerApi(api_client)
6969
trigger_response = workflow_trigger_api.trigger_workflow(
7070
args["account_id"],
71+
args["workflow_id"],
7172
trigger_payload,
7273
mtid=mtid, mtsec=mtsec
7374
)

0 commit comments

Comments
 (0)