Containers
Get the compose file on a robot
This endpoint gets the compose-file on a robot.
curl --request GET https://api.airbotics.io/robots/robot0/compose-file \
--header 'content-type: application/json' \
--header 'air-api-key: <token>'
{
"id": "robot-app-v1",
"name": "Robot application",
"state": "pending_up",
"error_code": null,
"content": {
"services": {
"hello": {
"image": "hello-world"
}
}
},
"created_at": "2023-07-17T13:27:05.636Z"
}
Path parameters
id
string
requiredThe ID of the robot.
curl --request GET https://api.airbotics.io/robots/robot0/compose-file \
--header 'content-type: application/json' \
--header 'air-api-key: <token>'
{
"id": "robot-app-v1",
"name": "Robot application",
"state": "pending_up",
"error_code": null,
"content": {
"services": {
"hello": {
"image": "hello-world"
}
}
},
"created_at": "2023-07-17T13:27:05.636Z"
}