Headers
-
Content-Type string
-
Accept string
Body Required
-
Name of the document pack.
-
Short description of the document pack.
-
is_template boolean
Denotes whether document pack is a template or not.
POST
/api/v1/document-pack/document-pack
curl \
--request POST https://api.plannrcrm.com/api/v1/document-pack/document-pack \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"name":"Terms and Conditions","description":"Terms and Conditions for our services","is_template":true}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"name": "Terms and Conditions",
"description": "Terms and Conditions for our services",
"is_template": true
}
Response examples (200)
{
"data": [
{
"name": "Name of Document Pack",
"uuid": "756794c7-1ac7-4f46-9157-779edb25aace",
"created_at": "2025-02-20T10:13:04+00:00",
"updated_at": "2025-02-20T10:13:04+00:00",
"description": "Description of Document Pack",
"is_template": "Is Document Pack a template"
}
]
}