Retrieve a specific record by ID
GET
/DB/Maint/{table}/{id}
curl \
--request GET '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"
Response examples (200)
{
"id": 10,
"name": "John Doe",
"email": "john@example.com"
}