GET
/
static-sites
curl --request GET \
  --url https://api.sevalla.com/v2/static-sites \
  --header 'Authorization: Bearer <token>'
{
  "company": {
    "static_sites": {
      "items": [
        {
          "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
          "name": "first-static-site",
          "display_name": "First static site",
          "status": "deploymentSuccess"
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

company
string
required
Example:

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

limit
number
default:10
Example:

10

offset
number
default:0
Example:

3

Response

200
application/json

Successfully found static sites

The response is of type object.