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

application/json

Body Required

object object

Responses

  • 200 application/json

    Record updated successfully

  • 404

    Record not found

PUT /DB/Maint/{table}/{id}
curl \
 --request PUT 'https://api.wereadthemanual.com/v1.0/DB/Maint/item/123' \
 --header "X-ApiKey: $API_KEY" \
 --header "X-ApiDate: $API_KEY" \
 --header "X-ApiHmac: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"name":"John Doe Updated","email":"john.new@example.com"}'
Request example
{
  "name": "John Doe Updated",
  "email": "john.new@example.com"
}
Response examples (200)
{
  "id": 10,
  "name": "John Doe Updated",
  "email": "john,new@example.com"
}