Customers
Find Customers
Search customers with given parameters
POST
/
companies
/
{company_id}
/
customers
/
find
Find Customers
curl --request POST \
--url https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"pagination": {
"from_key": "<string>",
"limit": 20
},
"include_meta": true,
"query": {
"arr": {
"eq": 123,
"gt": 123,
"gte": 123,
"lte": 123
},
"email": "<string>",
"exclude_from_metrics": true,
"has_parent": true,
"identifier": "<string>",
"managed_externally": true,
"mrr": {
"eq": 123,
"gt": 123,
"gte": 123,
"lte": 123
},
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer_id": "<string>",
"phone": "<string>",
"search": "<string>",
"title": "<string>"
},
"sort_key": "createdAtDesc"
}
'import requests
url = "https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find"
payload = {
"pagination": {
"from_key": "<string>",
"limit": 20
},
"include_meta": True,
"query": {
"arr": {
"eq": 123,
"gt": 123,
"gte": 123,
"lte": 123
},
"email": "<string>",
"exclude_from_metrics": True,
"has_parent": True,
"identifier": "<string>",
"managed_externally": True,
"mrr": {
"eq": 123,
"gt": 123,
"gte": 123,
"lte": 123
},
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer_id": "<string>",
"phone": "<string>",
"search": "<string>",
"title": "<string>"
},
"sort_key": "createdAtDesc"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
pagination: {from_key: '<string>', limit: 20},
include_meta: true,
query: {
arr: {eq: 123, gt: 123, gte: 123, lte: 123},
email: '<string>',
exclude_from_metrics: true,
has_parent: true,
identifier: '<string>',
managed_externally: true,
mrr: {eq: 123, gt: 123, gte: 123, lte: 123},
name: '<string>',
org_name: '<string>',
owner_id: '<string>',
parent_customer_id: '<string>',
phone: '<string>',
search: '<string>',
title: '<string>'
},
sort_key: 'createdAtDesc'
})
};
fetch('https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find', 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.getmeasure.com/api/v1/companies/{company_id}/customers/find",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pagination' => [
'from_key' => '<string>',
'limit' => 20
],
'include_meta' => true,
'query' => [
'arr' => [
'eq' => 123,
'gt' => 123,
'gte' => 123,
'lte' => 123
],
'email' => '<string>',
'exclude_from_metrics' => true,
'has_parent' => true,
'identifier' => '<string>',
'managed_externally' => true,
'mrr' => [
'eq' => 123,
'gt' => 123,
'gte' => 123,
'lte' => 123
],
'name' => '<string>',
'org_name' => '<string>',
'owner_id' => '<string>',
'parent_customer_id' => '<string>',
'phone' => '<string>',
'search' => '<string>',
'title' => '<string>'
],
'sort_key' => 'createdAtDesc'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find"
payload := strings.NewReader("{\n \"pagination\": {\n \"from_key\": \"<string>\",\n \"limit\": 20\n },\n \"include_meta\": true,\n \"query\": {\n \"arr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"email\": \"<string>\",\n \"exclude_from_metrics\": true,\n \"has_parent\": true,\n \"identifier\": \"<string>\",\n \"managed_externally\": true,\n \"mrr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"name\": \"<string>\",\n \"org_name\": \"<string>\",\n \"owner_id\": \"<string>\",\n \"parent_customer_id\": \"<string>\",\n \"phone\": \"<string>\",\n \"search\": \"<string>\",\n \"title\": \"<string>\"\n },\n \"sort_key\": \"createdAtDesc\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"pagination\": {\n \"from_key\": \"<string>\",\n \"limit\": 20\n },\n \"include_meta\": true,\n \"query\": {\n \"arr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"email\": \"<string>\",\n \"exclude_from_metrics\": true,\n \"has_parent\": true,\n \"identifier\": \"<string>\",\n \"managed_externally\": true,\n \"mrr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"name\": \"<string>\",\n \"org_name\": \"<string>\",\n \"owner_id\": \"<string>\",\n \"parent_customer_id\": \"<string>\",\n \"phone\": \"<string>\",\n \"search\": \"<string>\",\n \"title\": \"<string>\"\n },\n \"sort_key\": \"createdAtDesc\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"pagination\": {\n \"from_key\": \"<string>\",\n \"limit\": 20\n },\n \"include_meta\": true,\n \"query\": {\n \"arr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"email\": \"<string>\",\n \"exclude_from_metrics\": true,\n \"has_parent\": true,\n \"identifier\": \"<string>\",\n \"managed_externally\": true,\n \"mrr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"name\": \"<string>\",\n \"org_name\": \"<string>\",\n \"owner_id\": \"<string>\",\n \"parent_customer_id\": \"<string>\",\n \"phone\": \"<string>\",\n \"search\": \"<string>\",\n \"title\": \"<string>\"\n },\n \"sort_key\": \"createdAtDesc\"\n}"
response = http.request(request)
puts response.read_body{
"pagination": {
"from_key": "<string>",
"limit": 123
},
"results": [
{
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"arr": {
"currency": "<string>",
"value_in_cents": 123
},
"billing_emails": [
"<string>"
],
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"customer_integration_metadata": {},
"display_name": "<string>",
"email": "<string>",
"exclude_from_metrics": true,
"id": "<string>",
"identifier": "<string>",
"integration_references": [
{
"integration_icon": "<string>",
"integration_id": "<string>",
"integration_key": "<string>",
"integration_name": "<string>",
"reference_type": "<string>",
"remote_id": "<string>",
"remote_type": "<string>"
}
],
"locale": "<string>",
"managed_externally": true,
"metadata": {},
"mrr": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer_id": "<string>",
"phone": "<string>",
"status": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
The idempotency key that will be used to ensure the request is only performed once
Path Parameters
The company ID with the prefix 'cmp_'.
Body
application/json
The pagination parameters for the request
Show child attributes
Show child attributes
Whether to include additional metadata in the pagination response such the number of total results
The query criteria for the request
Show child attributes
Show child attributes
Available options:
createdAtDesc, createdAtAsc, updatedAtAsc, updatedAtDesc, aToZ, zToA, mrrAsc, mrrDesc, orgAToZ, orgZToA ⌘I
Find Customers
curl --request POST \
--url https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"pagination": {
"from_key": "<string>",
"limit": 20
},
"include_meta": true,
"query": {
"arr": {
"eq": 123,
"gt": 123,
"gte": 123,
"lte": 123
},
"email": "<string>",
"exclude_from_metrics": true,
"has_parent": true,
"identifier": "<string>",
"managed_externally": true,
"mrr": {
"eq": 123,
"gt": 123,
"gte": 123,
"lte": 123
},
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer_id": "<string>",
"phone": "<string>",
"search": "<string>",
"title": "<string>"
},
"sort_key": "createdAtDesc"
}
'import requests
url = "https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find"
payload = {
"pagination": {
"from_key": "<string>",
"limit": 20
},
"include_meta": True,
"query": {
"arr": {
"eq": 123,
"gt": 123,
"gte": 123,
"lte": 123
},
"email": "<string>",
"exclude_from_metrics": True,
"has_parent": True,
"identifier": "<string>",
"managed_externally": True,
"mrr": {
"eq": 123,
"gt": 123,
"gte": 123,
"lte": 123
},
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer_id": "<string>",
"phone": "<string>",
"search": "<string>",
"title": "<string>"
},
"sort_key": "createdAtDesc"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
pagination: {from_key: '<string>', limit: 20},
include_meta: true,
query: {
arr: {eq: 123, gt: 123, gte: 123, lte: 123},
email: '<string>',
exclude_from_metrics: true,
has_parent: true,
identifier: '<string>',
managed_externally: true,
mrr: {eq: 123, gt: 123, gte: 123, lte: 123},
name: '<string>',
org_name: '<string>',
owner_id: '<string>',
parent_customer_id: '<string>',
phone: '<string>',
search: '<string>',
title: '<string>'
},
sort_key: 'createdAtDesc'
})
};
fetch('https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find', 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.getmeasure.com/api/v1/companies/{company_id}/customers/find",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pagination' => [
'from_key' => '<string>',
'limit' => 20
],
'include_meta' => true,
'query' => [
'arr' => [
'eq' => 123,
'gt' => 123,
'gte' => 123,
'lte' => 123
],
'email' => '<string>',
'exclude_from_metrics' => true,
'has_parent' => true,
'identifier' => '<string>',
'managed_externally' => true,
'mrr' => [
'eq' => 123,
'gt' => 123,
'gte' => 123,
'lte' => 123
],
'name' => '<string>',
'org_name' => '<string>',
'owner_id' => '<string>',
'parent_customer_id' => '<string>',
'phone' => '<string>',
'search' => '<string>',
'title' => '<string>'
],
'sort_key' => 'createdAtDesc'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find"
payload := strings.NewReader("{\n \"pagination\": {\n \"from_key\": \"<string>\",\n \"limit\": 20\n },\n \"include_meta\": true,\n \"query\": {\n \"arr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"email\": \"<string>\",\n \"exclude_from_metrics\": true,\n \"has_parent\": true,\n \"identifier\": \"<string>\",\n \"managed_externally\": true,\n \"mrr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"name\": \"<string>\",\n \"org_name\": \"<string>\",\n \"owner_id\": \"<string>\",\n \"parent_customer_id\": \"<string>\",\n \"phone\": \"<string>\",\n \"search\": \"<string>\",\n \"title\": \"<string>\"\n },\n \"sort_key\": \"createdAtDesc\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"pagination\": {\n \"from_key\": \"<string>\",\n \"limit\": 20\n },\n \"include_meta\": true,\n \"query\": {\n \"arr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"email\": \"<string>\",\n \"exclude_from_metrics\": true,\n \"has_parent\": true,\n \"identifier\": \"<string>\",\n \"managed_externally\": true,\n \"mrr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"name\": \"<string>\",\n \"org_name\": \"<string>\",\n \"owner_id\": \"<string>\",\n \"parent_customer_id\": \"<string>\",\n \"phone\": \"<string>\",\n \"search\": \"<string>\",\n \"title\": \"<string>\"\n },\n \"sort_key\": \"createdAtDesc\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getmeasure.com/api/v1/companies/{company_id}/customers/find")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"pagination\": {\n \"from_key\": \"<string>\",\n \"limit\": 20\n },\n \"include_meta\": true,\n \"query\": {\n \"arr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"email\": \"<string>\",\n \"exclude_from_metrics\": true,\n \"has_parent\": true,\n \"identifier\": \"<string>\",\n \"managed_externally\": true,\n \"mrr\": {\n \"eq\": 123,\n \"gt\": 123,\n \"gte\": 123,\n \"lte\": 123\n },\n \"name\": \"<string>\",\n \"org_name\": \"<string>\",\n \"owner_id\": \"<string>\",\n \"parent_customer_id\": \"<string>\",\n \"phone\": \"<string>\",\n \"search\": \"<string>\",\n \"title\": \"<string>\"\n },\n \"sort_key\": \"createdAtDesc\"\n}"
response = http.request(request)
puts response.read_body{
"pagination": {
"from_key": "<string>",
"limit": 123
},
"results": [
{
"address": {
"address_line_1": "<string>",
"address_line_2": "<string>",
"city": "<string>",
"country": "<string>",
"place_id": "<string>",
"state": "<string>",
"zip": "<string>"
},
"arr": {
"currency": "<string>",
"value_in_cents": 123
},
"billing_emails": [
"<string>"
],
"company_id": "<string>",
"computed_entitlements": [
{
"entitlement_id": "<string>",
"id": "<string>",
"inherited_from_id": "<string>",
"inherited_from_type": "<string>",
"key": "<string>",
"name": "<string>",
"original_value": "<unknown>",
"overridden": true,
"type": "<string>",
"value": "<unknown>"
}
],
"created_at": "2023-11-07T05:31:56Z",
"customer_integration_metadata": {},
"display_name": "<string>",
"email": "<string>",
"exclude_from_metrics": true,
"id": "<string>",
"identifier": "<string>",
"integration_references": [
{
"integration_icon": "<string>",
"integration_id": "<string>",
"integration_key": "<string>",
"integration_name": "<string>",
"reference_type": "<string>",
"remote_id": "<string>",
"remote_type": "<string>"
}
],
"locale": "<string>",
"managed_externally": true,
"metadata": {},
"mrr": {
"currency": "<string>",
"value_in_cents": 123
},
"name": "<string>",
"org_name": "<string>",
"owner_id": "<string>",
"parent_customer_id": "<string>",
"phone": "<string>",
"status": "<string>",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}
