API Documentation
- Introduction
- Authentication
- Errors
- ApiTokens
- Organizations
- Projects
- Domains
- ProxySettings
- Components
- ProjectComponents
- Statistics
- DataCollectionEvents
- Users
- Invitations
- DataCollection (Project)
ProxySettings
List all ProxySettings
Retrieves all the Proxy Settings revisions of a project.
GET
/
v1
/
projects
/
{id}
/
proxy-settings
Copy
Ask AI
curl --request GET \
--url https://api.edgee.app/v1/projects/{id}/proxy-settings \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"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
Path Parameters
Response
200
application/json
The list of all the Proxy Settings revisions
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.edgee.app/v1/projects/{id}/proxy-settings \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"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>"
]
}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.