Headers
-
Content-Type
string -
Accept
string
POST
/api/v1/cases-type
curl \
--request POST 'https://api.plannrcrm.com/api/v1/cases-type' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"name":"Mortgage Plan"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"name": "Mortgage Plan"
}
Response examples (200)
{
"name": "Mortgage Plan",
"uuid": "f519c703-473a-4a59-8e64-758e49cbd112",
"created_at": "2025-04-03T15:34:20+01:00",
"updated_at": "2025-04-03T15:34:20+01:00"
}