Show Platform Detail

GET /api/v1/platform/{uuid}

Path parameters

  • uuid string Required

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • uuid string
      • created_at string
      • updated_at string
      • supported_platform string
      • platform_terms_url string
      • product_terms object
        Hide product_terms attributes Show product_terms attributes object
        • gia_terms_url string
        • isa_terms_url string
        • jisa_terms_url string
        • pension_terms_url string
GET /api/v1/platform/{uuid}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/platform/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "uuid": "84013ea5-e41d-4dc7-9347-7e39f5110501",
      "created_at": "2025-06-25T15:10:47+01:00",
      "updated_at": "2025-06-25T15:10:47+01:00",
      "product_terms": {
        "gia_terms_url": "https://example.com/gia-terms",
        "isa_terms_url": "https://example.com/isa-terms",
        "jisa_terms_url": "https://example.com/jisa-terms",
        "pension_terms_url": "https://example.com/pension-terms"
      },
      "platform_terms_url": "https://example.com/terms",
      "supported_platform": "seccl"
    }
  ]
}