Path parameters

  • table string Required

    Name of the case insensitive database table. Available table names for the Maintenance database are shown below

    Values are Item, Class, Mfg, Type, Task, Process, ProcImg, Remind, Supply, Tool, or Setting.

  • id integer Required

    Record ID

Responses

  • 200 application/json

    Successful response

  • 404

    Record not found

GET /DB/Maint/{table}/{id}
curl \
 --request GET 'https://api.whyreadthemanual.com/v1.0/DB/Maint/item/123' \
 --header "X-ApiKey: $API_KEY" \
 --header "X-ApiDate: $API_KEY" \
 --header "X-ApiHmac: $API_KEY"
Response examples (200)
{
  "id": 10,
  "name": "John Doe",
  "email": "john@example.com"
}