GET
/
v1
/
projects
/
{id}
/
proxy-settings
curl --request GET \
  --url https://api.edgee.app/v1/projects/{id}/proxy-settings \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "url": "<string>",
  "has_more": true,
  "last_key": "<string>",
  "data": [
    {
      "object": "proxy_settings",
      "revision": 123,
      "description": "<string>",
      "is_active": true,
      "backends": [
        {
          "name": "<string>",
          "address": "<string>",
          "enable_ssl": true,
          "check_certificate": "<string>",
          "ca_certificate": "<string>",
          "sni_hostname": "<string>",
          "default": true,
          "override_host": "<string>"
        }
      ],
      "routes": [
        {
          "path": "<string>",
          "regex": true,
          "backend_name": "<string>",
          "rank": "<string>",
          "continent": [
            "<any>"
          ],
          "region": [
            "<any>"
          ],
          "country": [
            "<any>"
          ]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200
application/json
The list of all the Proxy Settings revisions
object
string

String representing the object’s type. Objects of the same type share the same value.

Example:

"list"

url
string

The URL where this list can be accessed.

has_more
boolean

Whether there are more objects beyond the ones returned. You can use it to decide whether to show the user a “load more” button, for example.

last_key
string

The last key of the list. You can use its value on the start_key parameter to fetch the next page of the list.

data
object[]

A ProxySettings is a revision of the proxy settings of a project.