Skip to main content
POST
/
mergeSolution
mergeSolution
curl --request POST \
  --url https://app.ezzydoc.com/EzzyService.svc/Rest/mergeSolution \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "solution_id": 123,
  "make_workflow_active": true,
  "workflow_ids": [
    123
  ],
  "agent_ids": [
    123
  ],
  "duplicate_ai_tasks": true
}
'
{
  "invoice_id": 123,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

solution_id
integer
make_workflow_active
boolean
workflow_ids
integer[]
agent_ids
integer[]
duplicate_ai_tasks
boolean

Response

Success

invoice_id
integer
message
string
status
enum<integer>
Available options:
0,
1,
2,
3