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

    Field email updated successfully

  • 404

    Record not found

PATCH /DB/Maint/{table}/{id}
curl \
 --request PATCH 'https://api.wrtm.io/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 '{"email":"john.new@example.com"}'
Request example
{
  "email": "john.new@example.com"
}
Response examples (200)
{
  "email": "john,new@example.com"
}