Delete a robot by ID
DELETE/robots/:id
The Delete Robot request allows you to remove a robot from ANSCER FMS.
Request
Path Parameters
id stringrequired
The ID of the robot to retrieve, update or delete
Responses
- 200
- 401
- 403
- 404
- 500
Robot deleted
- application/json
- Schema
- Example (from schema)
Schema
_id uuid
manufacturer string
serialNumber string
robotStatus string
Possible values: [pending, active, inactive]
factSheet object
createdAt date-time
updatedAt date-time
{
"_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"manufacturer": "string",
"serialNumber": "string",
"robotStatus": "pending",
"factSheet": {},
"createdAt": "2024-12-03T13:25:44.723Z",
"updatedAt": "2024-12-03T13:25:44.723Z"
}
Unauthorized.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Authentication token not provided."
}
{
"message": "Authentication token not provided."
}
Forbidden.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Access to this resource is forbidden."
}
{
"message": "Access to this resource is forbidden."
}
Resource not found.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Resource not found."
}
{
"message": "Resource not found."
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Internal Server Error. Please try again later."
}
{
"message": "Internal Server Error. Please try again later."
}
Loading...