Attio
Secure, streamlined access to the Attio API for your team.
Overview
Pass Through
curl -X [GET | POST | PUT | PATCH | DELETE]
https://eu.api-proxy.stacksync.com/v1/proxy/INSERT_REQUEST_URL_HERE \
-H "Authorization: Bearer your_api_proxy_service_token" \
-d 'Optional'curl -X GET https://eu.api-proxy.stacksync.com/v1/proxy/https://api.attio.com/v2/objects \
-H "Authorization: Bearer your_api_proxy_service_token" \import requests
url = "https://eu.api-proxy.stacksync.com/v1/proxy/https://api.attio.com/v2/objects"
headers = {
"Authorization": "Bearer your_api_proxy_service_token",
}
response = requests.get(url, headers=headers)
print(response.json())const url =
"https://eu.api-proxy.stacksync.com/v1/proxy/https://api.attio.com/v2/objects";
fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer your_api_proxy_service_token",
},
})
.then((r) => r.json())
.then((json) => console.log(json))
.catch((e) => console.error(e));Last updated