Duplicate a Workflow
Creates a new custom workflow by duplicating an existing workflow using the workflow id of the parent workflow. Duplicating a workflow keeps workflow stages the same for the new workflow.
The name and content types are required and should be different.
https://mapi.storyblok.com/v1/spaces/:space_id/workflows/:workflow_id/duplicate
Path Parameters
-
:space_id
required numberNumeric ID of a space
Request Body Properties
-
workflow
Workflow Object-
content_types
required string[]Array of content types associated with this workflow. At least one content type is required for a custom workflow.
-
name
required stringWorkflow name
-
Response Properties
-
workflow
Workflow Object-
id
numberThe numeric ID
-
content_types
string[]Array of content types associated with this workflow. At least one content type is required for a custom workflow.
-
is_default
booleanTrue if the workflow is default one
-
name
stringWorkflow name
-
curl "https://mapi.storyblok.com/v1/spaces/606/workflows/656/duplicate" \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: YOUR_OAUTH_TOKEN" \
-d "{\"workflow\": {\"name\": \"duplicated page\",\"content_types\": [\"page_new\"]}}"
// Using the Universal JavaScript Client:
// https://github.com/storyblok/storyblok-js-client
Storyblok.post('/spaces/606/workflows/656/duplicate', {
"workflow": {
"name": "duplicated page",
"content_types": [
"page_new"
]
}
})
.then(response => {
console.log(response)
}).catch(error => {
console.log(error)
})
$client = new \Storyblok\ManagementClient('YOUR_OAUTH_TOKEN');
$payload = [
"workflow" => [
"name" => "duplicated page",
"content_types" => [
"page_new"
]
]
];
$client->post('/spaces/606/workflows/656/duplicate', $payload)->getBody();
require 'storyblok'
client = Storyblok::Client.new(oauth_token: 'YOUR_OAUTH_TOKEN')
payload = {
"workflow" => {
"name" => "duplicated page",
"content_types" => [
"page_new"
]
}
}
client.post('/spaces/606/workflows/656/duplicate', payload)
HttpResponse<String> response = Unirest.post("https://mapi.storyblok.com/v1/spaces/606/workflows/656/duplicate")
.header("Content-Type", "application/json")
.header("Authorization", "YOUR_OAUTH_TOKEN")
.body("{\"workflow\": {\"name\": \"duplicated page\",\"content_types\": [\"page_new\"]}}")
.asString();
var client = new RestClient("https://mapi.storyblok.com/v1/spaces/606/workflows/656/duplicate");
var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");
request.AddParameter("application/json", "{\"workflow\": {\"name\": \"duplicated page\",\"content_types\": [\"page_new\"]}}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
import Foundation
let headers = [
"Content-Type": "application/json",
"Authorization": "YOUR_OAUTH_TOKEN"
]
let postData = NSData(data: "{\"workflow\": {\"name\": \"duplicated page\",\"content_types\": [\"page_new\"]}}".data(using: String.Encoding.utf8)!)
let request = NSMutableURLRequest(url: NSURL(string: "https://mapi.storyblok.com/v1/spaces/606/workflows/656/duplicate")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)
request.method = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
import requests
url = "https://mapi.storyblok.com/v1/spaces/606/workflows/656/duplicate"
querystring = {}
payload = "{\"workflow\": {\"name\": \"duplicated page\",\"content_types\": [\"page_new\"]}}"
headers = {
'Content-Type': "application/json",
'Authorization': "YOUR_OAUTH_TOKEN"
}
response = requests.request("POST", url, data=payload, headers=headers, params=querystring)
print(response.text)
You will receive a workflows object as a response along with another property called workflow_stages
- these workflow stages are inherited from the parent workflow.