Skip to main content
GET
/
applications
/
deployments
/
{id}
Get deployment
curl --request GET \
  --url https://api.sevalla.com/v2/applications/deployments/{id} \
  --header 'Authorization: Bearer <token>'
{
  "deployment": {
    "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
    "app_id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
    "repo_url": "https://github.com/user/repo",
    "branch": "main",
    "commit_sha": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2",
    "author_login": "johndoe",
    "author_img": "https://avatars.githubusercontent.com/u/12345",
    "commit_message": "feat: add new feature",
    "status": "deploymentSuccess",
    "created_at": 1738195200000
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token in the Authorization header.

Path Parameters

id
string<uuid>
required
Example:

"fb5e5168-4281-4bec-94c5-0d1584e9e657"

Response

Default Response

deployment
object
required