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
}
}Retrieve a deployment and details for a specific static site.
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
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
"54fb80af-576c-4fdc-ba4f-b596c83f15a1"
Response object of static site deployment by ID requests
Show child attributes
"54fb80af-576c-4fdc-ba4f-b596c83f15a1"
"54fb80af-576c-4fdc-ba4f-b596c83f15a1"
waiting, inProgress, success, failed, cancelled "inProgress"
"https://github.com/user/project"
"main"
"jane-doe"
"https://avatars.githubusercontent.com/u/123456"
"54fb80af-576c-4fdc-ba4f-b596c83f15a1"
"Merge pull request #123"
"54fb80af-576c-4fdc-ba4f-b596c83f15a1"
1665382600770
1665394600620
1665406600330
1665418600450
Was this page helpful?