Replace the entire record with new data
Path parameters
-
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, orSetting. -
Record ID
PUT
/DB/Maint/{table}/{id}
curl \
--request PUT '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" \
--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"
}