List forms from EventLink and connected CRM sources
curl --request GET \
--url https://api.eventlink.co/api/v1/dashboard/forms \
--cookie better-auth.session_token=import requests
url = "https://api.eventlink.co/api/v1/dashboard/forms"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://api.eventlink.co/api/v1/dashboard/forms', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eventlink.co/api/v1/dashboard/forms",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "better-auth.session_token=",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.eventlink.co/api/v1/dashboard/forms"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "better-auth.session_token=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.eventlink.co/api/v1/dashboard/forms")
.header("cookie", "better-auth.session_token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eventlink.co/api/v1/dashboard/forms")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["cookie"] = 'better-auth.session_token='
response = http.request(request)
puts response.read_body{
"sources": {
"eventlink": {
"status": "ready",
"forms": [
{
"id": "<string>",
"name": "<string>",
"fieldCount": 1,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
},
"hubspot": {
"portalId": "<string>",
"forms": [
{
"id": "<string>",
"name": "<string>",
"formType": "<string>",
"submitText": "<string>",
"fieldCount": 1,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"editable": true,
"editorUrl": "<string>"
}
],
"cachedUntil": "2023-11-07T05:31:56Z"
}
}
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}dashboard
List forms from EventLink and connected CRM sources
Returns EventLink forms from the workspace database and HubSpot forms when connected. HubSpot form catalogs are cached server-side for 5 minutes (bypass with refresh=1). Never includes OAuth tokens.
GET
/
api
/
v1
/
dashboard
/
forms
List forms from EventLink and connected CRM sources
curl --request GET \
--url https://api.eventlink.co/api/v1/dashboard/forms \
--cookie better-auth.session_token=import requests
url = "https://api.eventlink.co/api/v1/dashboard/forms"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://api.eventlink.co/api/v1/dashboard/forms', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eventlink.co/api/v1/dashboard/forms",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "better-auth.session_token=",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.eventlink.co/api/v1/dashboard/forms"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "better-auth.session_token=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.eventlink.co/api/v1/dashboard/forms")
.header("cookie", "better-auth.session_token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eventlink.co/api/v1/dashboard/forms")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["cookie"] = 'better-auth.session_token='
response = http.request(request)
puts response.read_body{
"sources": {
"eventlink": {
"status": "ready",
"forms": [
{
"id": "<string>",
"name": "<string>",
"fieldCount": 1,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
},
"hubspot": {
"portalId": "<string>",
"forms": [
{
"id": "<string>",
"name": "<string>",
"formType": "<string>",
"submitText": "<string>",
"fieldCount": 1,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"editable": true,
"editorUrl": "<string>"
}
],
"cachedUntil": "2023-11-07T05:31:56Z"
}
}
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}{
"error": "<string>",
"status": 123,
"code": "<string>",
"retryAfterSeconds": 123
}⌘I