Show Developer Menu

PUT /articles/{slug}

Issuing a PUT call to a specific article will allow you to update the article.

Example Request
curl 'https://{brand}.reamaze.io/api/v1/articles/{slug}' \
  -u {login-email}:{api-token} \
  -H 'Accept: application/json' \
  -H 'Content-type: application/json' \
  -X PUT -d '{"article": {"title": "new title", "body": "new body"}}'
Response

A successful request will return the JSON for the updated article.

A failed request will return an HTTP 422 Unprocessable Entity with the JSON body explaining the error.