Deal
List deal views
List the deal views of the workspace. Only public views are returned; built-in default views are not included.
GET
/
v1
/
deals
/
views
cURL
curl --request GET \
--url https://api.claap.io/v1/deals/views \
--header 'X-Claap-Key: <api-key>'import requests
url = "https://api.claap.io/v1/deals/views"
headers = {"X-Claap-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Claap-Key': '<api-key>'}};
fetch('https://api.claap.io/v1/deals/views', 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.claap.io/v1/deals/views",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Claap-Key: <api-key>"
],
]);
$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.claap.io/v1/deals/views"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Claap-Key", "<api-key>")
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.claap.io/v1/deals/views")
.header("X-Claap-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.claap.io/v1/deals/views")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Claap-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"result": [
{
"viewId": "<string>",
"name": "<string>",
"ownerId": "<string>",
"columns": [
{
"type": "Default",
"columnId": "<string>",
"isHidden": false,
"width": 123
}
],
"filters": {
"aiStatusIn": [],
"aiStatusNotIn": [],
"amountCurrencyIn": [],
"amountCurrencyNotIn": [],
"amountValue": {
"exists": true,
"gte": 123,
"is": 123,
"isNot": 123,
"lte": 123
},
"closedAfterRelative": 123,
"closedBeforeRelative": 123,
"companyIdIn": [],
"companyIdNotIn": [],
"contactIdIn": [],
"hasInteraction": true,
"openedAfterRelative": 123,
"openedBeforeRelative": 123,
"ownerEmailIn": [],
"ownerEmailNotIn": [],
"pipelineIdIn": [],
"pipelineIdNotIn": [],
"stageIn": [],
"stageNotIn": [],
"statusIn": [],
"statusNotIn": [],
"typeIn": [],
"typeNotIn": [],
"userGroupIn": [],
"userGroupNotIn": []
},
"sort": [
{
"insight": {
"sectionId": "<string>"
}
}
],
"icon": "<string>"
}
]
}Lists the deal views of the workspace. Only public views are returned; built-in default views are not included. The endpoint is not paginated as the number of views per workspace is capped.
⌘I
cURL
curl --request GET \
--url https://api.claap.io/v1/deals/views \
--header 'X-Claap-Key: <api-key>'import requests
url = "https://api.claap.io/v1/deals/views"
headers = {"X-Claap-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Claap-Key': '<api-key>'}};
fetch('https://api.claap.io/v1/deals/views', 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.claap.io/v1/deals/views",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Claap-Key: <api-key>"
],
]);
$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.claap.io/v1/deals/views"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Claap-Key", "<api-key>")
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.claap.io/v1/deals/views")
.header("X-Claap-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.claap.io/v1/deals/views")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Claap-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"result": [
{
"viewId": "<string>",
"name": "<string>",
"ownerId": "<string>",
"columns": [
{
"type": "Default",
"columnId": "<string>",
"isHidden": false,
"width": 123
}
],
"filters": {
"aiStatusIn": [],
"aiStatusNotIn": [],
"amountCurrencyIn": [],
"amountCurrencyNotIn": [],
"amountValue": {
"exists": true,
"gte": 123,
"is": 123,
"isNot": 123,
"lte": 123
},
"closedAfterRelative": 123,
"closedBeforeRelative": 123,
"companyIdIn": [],
"companyIdNotIn": [],
"contactIdIn": [],
"hasInteraction": true,
"openedAfterRelative": 123,
"openedBeforeRelative": 123,
"ownerEmailIn": [],
"ownerEmailNotIn": [],
"pipelineIdIn": [],
"pipelineIdNotIn": [],
"stageIn": [],
"stageNotIn": [],
"statusIn": [],
"statusNotIn": [],
"typeIn": [],
"typeNotIn": [],
"userGroupIn": [],
"userGroupNotIn": []
},
"sort": [
{
"insight": {
"sectionId": "<string>"
}
}
],
"icon": "<string>"
}
]
}