Static Site Deployments

This section will contain a more detailed description soon. For the time being, you can feel free to rely on the auto-generated information to get started!

Get static site deployment details

SecuritybearerAuth
Request
path Parameters
deployment_id
required
string <uuid>
Example: 54fb80af-576c-4fdc-ba4f-b596c83f15a1
Responses
200

Response object of static site deployment by ID requests

401

No or invalid API key provided to the request

404

Could not find the static site deployment or the user does not have permissions to retrieve data

500

Error occurred while retrieving static site deployment

get/static-sites/deployments/{deployment_id}
Request samples
Response samples
static site/json
{
  • "deployment": {
    }
}

Manually deploy a static site

SecuritybearerAuth
Request
Request Body schema: application/json
required
static_site_id
required
string <uuid>
branch
string
Responses
200

Deployment created successfully

401

No or invalid API key provided to the request

500

Error occurred while creating the deployment

post/static-sites/deployments
Request samples
application/json
{
  • "static_site_id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
  • "branch": "main"
}
Response samples
application/json
{
  • "deployment": {
    }
}