Skip to main content
GET
/
v1
/
apps
/
{app_id}
/
deploys
Get Recent Deployments
curl --request GET \
  --url https://api.vertracloud.app/v1/apps/{app_id}/deploys
{
  "response": [
    {
      "app_id": "123",
      "commit_id": "abc123",
      "message": "Fix deployment bug",
      "pusher": "user1",
      "branch": "main",
      "created_at": "2026-03-14T20:00:00.000Z"
    }
  ]
}
app_id
string
required
The ID of the application whose recent deployments will be retrieved.

Response

response
array
An array of deployment objects.
{
  "response": [
    {
      "app_id": "123",
      "commit_id": "abc123",
      "message": "Fix deployment bug",
      "pusher": "user1",
      "branch": "main",
      "created_at": "2026-03-14T20:00:00.000Z"
    }
  ]
}

Error Responses

code
string
Possible error codes:
  • UNAUTHORIZED: User is not authenticated or lacks permissions.
  • INTEGRATION_NOT_FOUND: Application or deployments not found.
message
string
A descriptive message providing additional details about the error.
{
  "code": "INTEGRATION_NOT_FOUND"
}