← Documentation home
GET/hyax-api/v1/helpdesk/articles/:id

Get helpdesk article

Base URL: https://platform.hyax.com · Replace YOUR_API_KEY with your team API key.

Request examples

Same request in cURL, Node.js (fetch), and PHP (ext-curl).

curl -X GET 'https://platform.hyax.com/hyax-api/v1/helpdesk/articles/clx_example_id' \
  -H 'Authorization: Bearer YOUR_API_KEY'

Example response

Shape varies by data; values are illustrative.

{
  "success": true,
  "data": {
    "id": "clx…",
    "title": "Getting started",
    "content": "<h2>Welcome</h2><p>…</p>",
    "excerpt": "Learn the basics",
    "slug": "getting-started",
    "status": "PUBLISHED",
    "order": 0,
    "viewCount": 42,
    "categoryId": "clx…",
    "category": { "id": "clx…", "name": "Basics", "slug": "basics" },
    "createdAt": "2025-01-15T12:00:00.000Z",
    "updatedAt": "2025-01-15T12:00:00.000Z"
  }
}