Get a list of robots
GET/robots
The Get All Robots request allows you to retrieve a list of all robots registered in ANSCER FMS.
Request
Responses
- 200
- 401
- 403
- 500
A list of robots
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
_id uuid
manufacturer string
serialNumber string
robotStatus string
Possible values: [pending, active, inactive]
createdAt date-time
updatedAt date-time
[
{
"_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"manufacturer": "string",
"serialNumber": "string",
"robotStatus": "pending",
"createdAt": "2025-06-05T13:40:40.435Z",
"updatedAt": "2025-06-05T13:40:40.435Z"
}
]
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."
}
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...