GET
/
v1
/
apps
/
:id
/
commits
Get Application Commits
curl --request GET \
  --url https://api.vertracloud.app/v1/apps/:id/commits \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "response": [
    {
      "id": "commit123",
      "author_id": "user123",
      "message": "Initial commit",
      "version": "1.0.0",
      "status": "success",
      "size": "1.23 MB",
      "date": "2025-08-14T21:00:00.000Z"
    }
  ]
}
id
string
The ID of the application to retrieve commits for.

Response

status
string
Indicates whether the operation was successful. success if successful, error if not.
response
array
An array of commit objects.
{
  "status": "success",
  "response": [
    {
      "id": "commit123",
      "author_id": "user123",
      "message": "Initial commit",
      "version": "1.0.0",
      "status": "success",
      "size": "1.23 MB",
      "date": "2025-08-14T21:00:00.000Z"
    }
  ]
}

Error Responses

status
string
Indicates whether the operation was successful. error if not successful.
code
string
The error code indicating the reason for failure. Possible values:
  • UNAUTHORIZED: The user is not authenticated or lacks sufficient permissions.
  • FORBIDDEN: The user does not have access to the application.
  • APP_NOT_FOUND: The specified application does not exist.
{
  "status": "error",
  "code": "UNAUTHORIZED"
}