Start Document Set
Start a formation workflow by creating a document set from one of the supported formation templates.
Body
required
application/json
Responses
- application/vnd.api+json
Request Example for post/v1/document_sets
curl https://api.clerky.com/v1/document_sets \
--request POST \
--header 'Content-Type: application/vnd.api+json' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
--data '{
"data": {
"type": "document_sets",
"attributes": {
"template": "startup_delaware-corporation"
}
}
}'
{
"data": {
"type": "document_sets",
"id": "12",
"links": {
"app": "https://app.clerky.com/document_sets/12"
},
"attributes": {
"state": "input_needed",
"template": "startup_delaware-corporation"
}
}
}