GET
/
static-sites
/
deployments
/
{deployment_id}
curl --request GET \
  --url https://api.sevalla.com/v2/static-sites/deployments/{deployment_id} \
  --header 'Authorization: Bearer <token>'
{
  "deployment": {
    "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
    "static_site_id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
    "status": "inProgress",
    "repo_url": "https://github.com/user/project",
    "branch": "main",
    "author_login": "jane-doe",
    "author_img": "https://avatars.githubusercontent.com/u/123456",
    "commit_sha": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
    "commit_message": "Merge pull request #123",
    "cloud_build_id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
    "created_at": 1665382600770,
    "updated_at": 1665394600620,
    "finished_at": 1665406600330,
    "started_at": 1665418600450
  }
}

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
static site/json

Response object of static site deployment by ID requests

The response is of type object.