Get a case type

GET /api/v1/cases-type/{id}

Path parameters

  • id string Required

    The ID of the cases 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.

GET /api/v1/cases-type/{id}
curl \
 -X GET https://api.plannrcrm.com/api/v1/cases-type/id \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "name": "Mortgage Plan",
  "uuid": "b4eafdbd-e293-470d-98f5-4b2fe2921f48",
  "created_at": "2024-10-16T11:10:14+01:00",
  "updated_at": "2024-10-16T11:10:14+01:00"
}