Copy Draft Workflow To Live
put
https://api.flxpoint.com/workflow/{id}/copy-draft-to-liveUse this when you want to replace workflow data through the API.
🔑 X-API-TOKEN⏱ 2 req/sToken: Account · Source · Channel
This page explains the endpoint. To send a live test request, use the interactive tester in Stoplight or your own Postman / HTTP client.
Copy the draft workflow to the live workflow (this will overwrite the existing live workflow)
Request
Example request
put
/workflow/{id}/copy-draft-to-livecurl -X PUT "https://api.flxpoint.com/workflow/{id}/copy-draft-to-live" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Responses
200OK
No schema documented for this status.
401Unauthorized
No schema documented for this status.
404Not Found
No schema documented for this status.
OpenAPI fragment
{
"put": {
"summary": "Copy Draft Workflow To Live",
"description": "Copy the draft workflow to the live workflow (this will overwrite the existing live workflow)",
"parameters": [],
"responses": {
"200": {
"description": "OK"
},
"401": {
"description": "Unauthorized"
},
"404": {
"description": "Not Found"
}
}
}
}Ready to run it? Send the curl from your terminal or Postman, or use the interactive tester in Stoplight.Open in Stoplight