Get deployment logs
curl --request GET \
--url https://cloud.laravel.com/api/deployments/{deployment}/logs \
--header 'Authorization: Bearer <token>'{
"data": {
"build": {
"available": true,
"steps": [
{
"step": "<string>",
"status": "<string>",
"description": "<string>",
"output": "<string>",
"duration_ms": 123,
"time": "<string>"
}
]
},
"deploy": {
"available": true,
"steps": [
{
"step": "<string>",
"status": "<string>",
"description": "<string>",
"output": "<string>",
"duration_ms": 123,
"time": "<string>"
}
]
}
},
"meta": {
"deployment_status": "<string>"
}
}Deployments
Get deployment logs
Get the build and deploy logs for a specific deployment.
GET
/
deployments
/
{deployment}
/
logs
Get deployment logs
curl --request GET \
--url https://cloud.laravel.com/api/deployments/{deployment}/logs \
--header 'Authorization: Bearer <token>'{
"data": {
"build": {
"available": true,
"steps": [
{
"step": "<string>",
"status": "<string>",
"description": "<string>",
"output": "<string>",
"duration_ms": 123,
"time": "<string>"
}
]
},
"deploy": {
"available": true,
"steps": [
{
"step": "<string>",
"status": "<string>",
"description": "<string>",
"output": "<string>",
"duration_ms": 123,
"time": "<string>"
}
]
}
},
"meta": {
"deployment_status": "<string>"
}
}Was this page helpful?
⌘I

