Headers

application/json

Body Required

  • name string Required

    name of the type

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the type

    • name string

      Name of the type

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was updated.

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": "6ee38ec6-8627-4af9-bb87-357e1dac306c",
  "created_at": "2025-02-20T10:13:02+00:00",
  "updated_at": "2025-02-20T10:13:02+00:00"
}