Retrieve the plan sub-types for a given plan type

GET /api/v1/static/plan-sub-types/{type}

Path parameters

  • type string Required

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • name string
      • value string
GET /api/v1/static/plan-sub-types/{type}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/static/plan-sub-types/architecto' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "ISA Cash",
      "value": "isa_cash"
    }
  ]
}