Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys \
--header 'Content-Type: application/json' \
--data '
{
"dataViewParameters": {
"ProductCode": "19520"
}
}
'import requests
url = "https://api.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys"
payload = { "dataViewParameters": { "ProductCode": "19520" } }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({dataViewParameters: {ProductCode: '19520'}})
};
fetch('https://api.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys', 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.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys",
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([
'dataViewParameters' => [
'ProductCode' => '19520'
]
]),
CURLOPT_HTTPHEADER => [
"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.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys"
payload := strings.NewReader("{\n \"dataViewParameters\": {\n \"ProductCode\": \"19520\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
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.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys")
.header("Content-Type", "application/json")
.body("{\n \"dataViewParameters\": {\n \"ProductCode\": \"19520\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"dataViewParameters\": {\n \"ProductCode\": \"19520\"\n }\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"@version": 1,
"@class": "Product",
"ID": "STE6TG95YWx0eV9fUHJvZHVjdF82ODlkZTM4MWY2ODE0ZjAwYTY4OTIyMmY",
"Name": "Nuggets",
"UpdateDateTime": "2025-08-14T13:24:17.304Z",
"CreateDateTime": "2025-08-14T13:24:17.304Z",
"CreateUser": {
"@class": "User",
"ID": "STE6UGVnYVBsYXRmb3JtX19Vc2VyXzY4NjcxYjRjOTU4OGNkM2JmYmVkZjg1Mw"
},
"UpdateUser": {
"@class": "User",
"ID": "STE6UGVnYVBsYXRmb3JtX19Vc2VyXzY4NjcxYjRjOTU4OGNkM2JmYmVkZjg1Mw"
},
"ApplicationName": "Loyalty",
"UpdateUserID": "systemuser_burgerkingapiuser_rhdlfx8bukx9ttqa",
"CreateUserID": "systemuser_burgerkingapiuser_rhdlfx8bukx9ttqa",
"ApplicationVersion": "0.1.0-1",
"HistoryCounter": 3,
"Status": "Open-Active",
"BusinessID": "P-092BDW",
"Description": "Nuggets",
"pzCaseTypeID": "CaseType-Loyalty__Product-Loyalty__Product",
"CaseSLAEventID": "goal:3b3a63be-bc32-9846-c7fa-df7bb58e1d10",
"Origin": "API",
"pzActiveStates": [],
"CurrentStageID": "Active",
"ConfirmationNote": "This stage is ready to transition.",
"CurrentStageName": "Active",
"Urgency": 10,
"Assignments": [],
"Incentivizable": true,
"Category": "Snack",
"Brand": "Burger King",
"ProductCode": "19520"
}
],
"resultCount": 1,
"fetchDateTime": "2025-08-14T13:27:18.137Z"
}curl --request POST \
--url https://api.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys \
--header 'Content-Type: application/json' \
--data '
{
"dataViewParameters": {
"ProductCode": "19520"
}
}
'import requests
url = "https://api.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys"
payload = { "dataViewParameters": { "ProductCode": "19520" } }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({dataViewParameters: {ProductCode: '19520'}})
};
fetch('https://api.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys', 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.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys",
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([
'dataViewParameters' => [
'ProductCode' => '19520'
]
]),
CURLOPT_HTTPHEADER => [
"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.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys"
payload := strings.NewReader("{\n \"dataViewParameters\": {\n \"ProductCode\": \"19520\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
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.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys")
.header("Content-Type", "application/json")
.body("{\n \"dataViewParameters\": {\n \"ProductCode\": \"19520\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/dx/api/application/v2/data_views/GetProductByBusinessKeys")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"dataViewParameters\": {\n \"ProductCode\": \"19520\"\n }\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"@version": 1,
"@class": "Product",
"ID": "STE6TG95YWx0eV9fUHJvZHVjdF82ODlkZTM4MWY2ODE0ZjAwYTY4OTIyMmY",
"Name": "Nuggets",
"UpdateDateTime": "2025-08-14T13:24:17.304Z",
"CreateDateTime": "2025-08-14T13:24:17.304Z",
"CreateUser": {
"@class": "User",
"ID": "STE6UGVnYVBsYXRmb3JtX19Vc2VyXzY4NjcxYjRjOTU4OGNkM2JmYmVkZjg1Mw"
},
"UpdateUser": {
"@class": "User",
"ID": "STE6UGVnYVBsYXRmb3JtX19Vc2VyXzY4NjcxYjRjOTU4OGNkM2JmYmVkZjg1Mw"
},
"ApplicationName": "Loyalty",
"UpdateUserID": "systemuser_burgerkingapiuser_rhdlfx8bukx9ttqa",
"CreateUserID": "systemuser_burgerkingapiuser_rhdlfx8bukx9ttqa",
"ApplicationVersion": "0.1.0-1",
"HistoryCounter": 3,
"Status": "Open-Active",
"BusinessID": "P-092BDW",
"Description": "Nuggets",
"pzCaseTypeID": "CaseType-Loyalty__Product-Loyalty__Product",
"CaseSLAEventID": "goal:3b3a63be-bc32-9846-c7fa-df7bb58e1d10",
"Origin": "API",
"pzActiveStates": [],
"CurrentStageID": "Active",
"ConfirmationNote": "This stage is ready to transition.",
"CurrentStageName": "Active",
"Urgency": 10,
"Assignments": [],
"Incentivizable": true,
"Category": "Snack",
"Brand": "Burger King",
"ProductCode": "19520"
}
],
"resultCount": 1,
"fetchDateTime": "2025-08-14T13:27:18.137Z"
}OK
