Authorizations
The Bearer Token generated on the Cloud UI.
Path Parameters
The deployment identifier
Response
DeploymentResource
curl --request GET \
--url https://app.laravel.cloud/api/deployments/{deployment} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"type": "deployments",
"attributes": {
"status": "pending",
"branch_name": "<string>",
"commit_hash": "<string>",
"commit_message": "<string>",
"failure_reason": "<string>",
"php_major_version": "8.2",
"build_command": "<string>",
"node_version": "20",
"uses_web_server": true,
"uses_octane": true,
"uses_hibernation": true,
"started_at": "2023-11-07T05:31:56Z",
"finished_at": "2023-11-07T05:31:56Z"
},
"relationships": {
"environment": {
"data": {
"type": "environments",
"id": "<string>"
}
},
"initiator": {
"data": {
"type": "users",
"id": "<string>"
}
}
},
"links": {
"self": {
"href": "<string>",
"rel": "<string>",
"describedby": "<string>",
"title": "<string>",
"type": "<string>",
"hreflang": "<string>",
"meta": {}
}
}
}
}Get the details of a specific deployment.
curl --request GET \
--url https://app.laravel.cloud/api/deployments/{deployment} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"type": "deployments",
"attributes": {
"status": "pending",
"branch_name": "<string>",
"commit_hash": "<string>",
"commit_message": "<string>",
"failure_reason": "<string>",
"php_major_version": "8.2",
"build_command": "<string>",
"node_version": "20",
"uses_web_server": true,
"uses_octane": true,
"uses_hibernation": true,
"started_at": "2023-11-07T05:31:56Z",
"finished_at": "2023-11-07T05:31:56Z"
},
"relationships": {
"environment": {
"data": {
"type": "environments",
"id": "<string>"
}
},
"initiator": {
"data": {
"type": "users",
"id": "<string>"
}
}
},
"links": {
"self": {
"href": "<string>",
"rel": "<string>",
"describedby": "<string>",
"title": "<string>",
"type": "<string>",
"hreflang": "<string>",
"meta": {}
}
}
}
}The Bearer Token generated on the Cloud UI.
The deployment identifier
DeploymentResource
Show child attributes
Was this page helpful?