Show Developer Menu

GET /articles/{slug}

Issuing a GET call to articles will allow you to retrieve a specific Help Article

Example Request
curl 'https://{brand}.reamaze.io/api/v1/articles/{slug}' \
  -u {login-email}:{api-token} \
  -H 'Accept: application/json'
Example Response
{
  "title": "Advantage of the Union in Respect to Economy in Government",
  "body": "...",
  "slug": "advantage-of-the-union",
  "status": 0,
  "created_at": "2014-05-06T10:17:28.000-07:00",
  "updated_at": "2014-05-06T10:17:28.000-07:00",
  "url": "...",
  "author": {
    "name": "Alexander Hamilton",
    "email": "alexander.hamilton@reamaze.com"
  },
  "topic": {
    "name": "The Federalist Papers",
    "slug": "the-federalist-papers"
  }
}