GET
/
applications
/
deployments
/
{deployment_id}
curl --request GET \
  --url https://api.sevalla.com/v2/applications/deployments/{deployment_id} \
  --header 'Authorization: Bearer <token>'
{
  "deployment": {
    "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
    "app_id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
    "repo_url": "http://example.com",
    "branch": "main",
    "commit_sha": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
    "author_login": "john-doe",
    "author_img": "http://example.com",
    "commit_message": "docs: example",
    "status": "success",
    "created_at": 1665382600770
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

deployment_id
string
required
Example:

"54fb80af-576c-4fdc-ba4f-b596c83f15a1"

Response

200
application/json

Response object of application deployment by ID requests

The response is of type object.