GET
/
v1
/
apps
/
{app_id}
/
deploys
/
recent
Get Recent Deployments
curl --request GET \
  --url https://api.vertracloud.app/v1/apps/{app_id}/deploys/recent \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "response": [
    {
      "app_id": "123",
      "commit_id": "abc123",
      "message": "Fix deployment bug",
      "pusher": "user1",
      "branch": "main",
      "created_at": "2025-08-14T20:00:00.000Z"
    }
  ]
}
app_id
string
required
The ID of the application whose recent deployments will be retrieved.

Response

status
string
Indicates if the request was successful. Returns success on success.
response
array
An array of deployment objects.
{
  "status": "success",
  "response": [
    {
      "app_id": "123",
      "commit_id": "abc123",
      "message": "Fix deployment bug",
      "pusher": "user1",
      "branch": "main",
      "created_at": "2025-08-14T20:00:00.000Z"
    }
  ]
}

Error Responses

status
string
Returns error if the request fails.
code
string
Possible error codes:
  • UNAUTHORIZED: User is not authenticated or lacks permissions.
  • INTEGRATION_NOT_FOUND: Application or deployments not found.
{
  "status": "error",
  "code": "INTEGRATION_NOT_FOUND"
}