DELETE
/
api
/
production-logs
/
{id}
Delete a production log
curl --request DELETE \
  --url http://localhost:3000/api/production-logs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Resource ID

Response

Production log deleted

success
boolean
Example:

true

message
string
data
any