Record a conversion
curl --request POST \
--url https://api.revdesk.com/v1/optimize/conversions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"test_id": "<string>",
"variant_id": "<string>",
"visitor_id": "<string>",
"value": 500000000,
"currency": "<string>",
"occurred_at": "2023-11-07T05:31:56Z",
"metadata": {}
}
'import requests
url = "https://api.revdesk.com/v1/optimize/conversions"
payload = {
"test_id": "<string>",
"variant_id": "<string>",
"visitor_id": "<string>",
"value": 500000000,
"currency": "<string>",
"occurred_at": "2023-11-07T05:31:56Z",
"metadata": {}
}
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({
test_id: '<string>',
variant_id: '<string>',
visitor_id: '<string>',
value: 500000000,
currency: '<string>',
occurred_at: '2023-11-07T05:31:56Z',
metadata: {}
})
};
fetch('https://api.revdesk.com/v1/optimize/conversions', 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.revdesk.com/v1/optimize/conversions",
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([
'test_id' => '<string>',
'variant_id' => '<string>',
'visitor_id' => '<string>',
'value' => 500000000,
'currency' => '<string>',
'occurred_at' => '2023-11-07T05:31:56Z',
'metadata' => [
]
]),
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.revdesk.com/v1/optimize/conversions"
payload := strings.NewReader("{\n \"test_id\": \"<string>\",\n \"variant_id\": \"<string>\",\n \"visitor_id\": \"<string>\",\n \"value\": 500000000,\n \"currency\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {}\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.revdesk.com/v1/optimize/conversions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"test_id\": \"<string>\",\n \"variant_id\": \"<string>\",\n \"visitor_id\": \"<string>\",\n \"value\": 500000000,\n \"currency\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.revdesk.com/v1/optimize/conversions")
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 \"test_id\": \"<string>\",\n \"variant_id\": \"<string>\",\n \"visitor_id\": \"<string>\",\n \"value\": 500000000,\n \"currency\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {}\n}"
response = http.request(request)
puts response.read_body{
"data": {
"recorded": true,
"test_id": "<string>",
"variant_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}Optimize
Record a conversion
Records a conversion for a test from your own systems (a closed order, a booked appointment, a signed contract) so the results reflect outcomes the tag cannot see. Send the tag’s visitor_id so the conversion is credited to the arm that visitor saw; a conversion with neither variant_id nor a known visitor_id is stored but cannot count toward an arm. Repeat sends with the same metadata.order_id are ignored.
POST
/
v1
/
optimize
/
conversions
Record a conversion
curl --request POST \
--url https://api.revdesk.com/v1/optimize/conversions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"test_id": "<string>",
"variant_id": "<string>",
"visitor_id": "<string>",
"value": 500000000,
"currency": "<string>",
"occurred_at": "2023-11-07T05:31:56Z",
"metadata": {}
}
'import requests
url = "https://api.revdesk.com/v1/optimize/conversions"
payload = {
"test_id": "<string>",
"variant_id": "<string>",
"visitor_id": "<string>",
"value": 500000000,
"currency": "<string>",
"occurred_at": "2023-11-07T05:31:56Z",
"metadata": {}
}
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({
test_id: '<string>',
variant_id: '<string>',
visitor_id: '<string>',
value: 500000000,
currency: '<string>',
occurred_at: '2023-11-07T05:31:56Z',
metadata: {}
})
};
fetch('https://api.revdesk.com/v1/optimize/conversions', 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.revdesk.com/v1/optimize/conversions",
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([
'test_id' => '<string>',
'variant_id' => '<string>',
'visitor_id' => '<string>',
'value' => 500000000,
'currency' => '<string>',
'occurred_at' => '2023-11-07T05:31:56Z',
'metadata' => [
]
]),
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.revdesk.com/v1/optimize/conversions"
payload := strings.NewReader("{\n \"test_id\": \"<string>\",\n \"variant_id\": \"<string>\",\n \"visitor_id\": \"<string>\",\n \"value\": 500000000,\n \"currency\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {}\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.revdesk.com/v1/optimize/conversions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"test_id\": \"<string>\",\n \"variant_id\": \"<string>\",\n \"visitor_id\": \"<string>\",\n \"value\": 500000000,\n \"currency\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.revdesk.com/v1/optimize/conversions")
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 \"test_id\": \"<string>\",\n \"variant_id\": \"<string>\",\n \"visitor_id\": \"<string>\",\n \"value\": 500000000,\n \"currency\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {}\n}"
response = http.request(request)
puts response.read_body{
"data": {
"recorded": true,
"test_id": "<string>",
"variant_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"resolution_hint": "<string>",
"fields": {},
"doc_url": "<string>"
}
}Authorizations
Organization-scoped RevDesk API key. Each operation declares its required permissions in x-required-scopes.
Headers
UUID — when present, deduplicates repeat submissions. See /api-reference/idempotency.
Body
application/json
Minimum string length:
1Minimum string length:
1Pattern:
^[0-9a-f]{32}$Required range:
0 <= x <= 1000000000Pattern:
^[A-Za-z]{3}$Pattern:
^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d:[0-5]\d(?:\.\d+)?(?:Z|([+-](?:[01]\d|2[0-3]):[0-5]\d)))$Show child attributes
Show child attributes
Response
Success
Show child attributes
Show child attributes