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/GetStoreByBusinessKeys \
--header 'Content-Type: application/json' \
--data '
{
"dataViewParameters": {
"StoreCode": "NW-RJ450"
}
}
'import requests
url = "https://api.example.com/dx/api/application/v2/data_views/GetStoreByBusinessKeys"
payload = { "dataViewParameters": { "StoreCode": "NW-RJ450" } }
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: {StoreCode: 'NW-RJ450'}})
};
fetch('https://api.example.com/dx/api/application/v2/data_views/GetStoreByBusinessKeys', 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/GetStoreByBusinessKeys",
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' => [
'StoreCode' => 'NW-RJ450'
]
]),
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/GetStoreByBusinessKeys"
payload := strings.NewReader("{\n \"dataViewParameters\": {\n \"StoreCode\": \"NW-RJ450\"\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/GetStoreByBusinessKeys")
.header("Content-Type", "application/json")
.body("{\n \"dataViewParameters\": {\n \"StoreCode\": \"NW-RJ450\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/dx/api/application/v2/data_views/GetStoreByBusinessKeys")
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 \"StoreCode\": \"NW-RJ450\"\n }\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"@version": 1,
"@class": "Store",
"ID": "STE6TG95YWx0eV9fU3RvcmVfNjg5ZGUzMTdmNjgxNGYwMGE2ODkyMjFj",
"Name": "Store6",
"UpdateDateTime": "2025-08-14T13:22:31.113Z",
"CreateDateTime": "2025-08-14T13:22:31.113Z",
"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": "S-704RMN",
"Description": "Store6 Description",
"pzCaseTypeID": "CaseType-Loyalty__Store-Loyalty__Store",
"CaseSLAEventID": "goal:0c1ebc2d-c362-8cba-242f-2752f11939e8",
"Origin": "API",
"pzActiveStates": [],
"CurrentStageID": "Active",
"ConfirmationNote": "This stage is ready to transition.",
"CurrentStageName": "Active",
"Urgency": 10,
"Assignments": [],
"StoreCode": "NW-RJ450",
"StoreStatus": "Active",
"IsParticipating": true,
"Address": {
"@class": "LocationAddress",
"ID": "STE6TG95YWx0eV9fTG9jYXRpb25BZGRyZXNzXzY4OWRlMzE3ZjY4MTRmMDBhNjg5MjIyMA",
"StateProvince": "State1",
"Street": "Street1",
"City": "City1",
"PostalCode": "12345",
"Country": "BRAZIL"
}
}
],
"resultCount": 1,
"fetchDateTime": "2025-08-14T13:23:32.457Z"
}curl --request POST \
--url https://api.example.com/dx/api/application/v2/data_views/GetStoreByBusinessKeys \
--header 'Content-Type: application/json' \
--data '
{
"dataViewParameters": {
"StoreCode": "NW-RJ450"
}
}
'import requests
url = "https://api.example.com/dx/api/application/v2/data_views/GetStoreByBusinessKeys"
payload = { "dataViewParameters": { "StoreCode": "NW-RJ450" } }
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: {StoreCode: 'NW-RJ450'}})
};
fetch('https://api.example.com/dx/api/application/v2/data_views/GetStoreByBusinessKeys', 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/GetStoreByBusinessKeys",
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' => [
'StoreCode' => 'NW-RJ450'
]
]),
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/GetStoreByBusinessKeys"
payload := strings.NewReader("{\n \"dataViewParameters\": {\n \"StoreCode\": \"NW-RJ450\"\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/GetStoreByBusinessKeys")
.header("Content-Type", "application/json")
.body("{\n \"dataViewParameters\": {\n \"StoreCode\": \"NW-RJ450\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/dx/api/application/v2/data_views/GetStoreByBusinessKeys")
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 \"StoreCode\": \"NW-RJ450\"\n }\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"@version": 1,
"@class": "Store",
"ID": "STE6TG95YWx0eV9fU3RvcmVfNjg5ZGUzMTdmNjgxNGYwMGE2ODkyMjFj",
"Name": "Store6",
"UpdateDateTime": "2025-08-14T13:22:31.113Z",
"CreateDateTime": "2025-08-14T13:22:31.113Z",
"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": "S-704RMN",
"Description": "Store6 Description",
"pzCaseTypeID": "CaseType-Loyalty__Store-Loyalty__Store",
"CaseSLAEventID": "goal:0c1ebc2d-c362-8cba-242f-2752f11939e8",
"Origin": "API",
"pzActiveStates": [],
"CurrentStageID": "Active",
"ConfirmationNote": "This stage is ready to transition.",
"CurrentStageName": "Active",
"Urgency": 10,
"Assignments": [],
"StoreCode": "NW-RJ450",
"StoreStatus": "Active",
"IsParticipating": true,
"Address": {
"@class": "LocationAddress",
"ID": "STE6TG95YWx0eV9fTG9jYXRpb25BZGRyZXNzXzY4OWRlMzE3ZjY4MTRmMDBhNjg5MjIyMA",
"StateProvince": "State1",
"Street": "Street1",
"City": "City1",
"PostalCode": "12345",
"Country": "BRAZIL"
}
}
],
"resultCount": 1,
"fetchDateTime": "2025-08-14T13:23:32.457Z"
}OK
