Batches
Create Batch
Creates up to 1,000 QR codes asynchronously. Returns 202 immediately;
poll GET /batches/{id} for progress. Available on Plus, Pro, Ultra
and Agency plans. Requires the qr:write scope.
Items use the same target rules as single creation. A shared
design (or a saved dashboard template via template_id) is applied
to every item. Dynamic items count against your plan’s QR limit —
capacity is checked before the batch is accepted.
POST
/
batches
Create Batch
curl --request POST \
--url https://api.useqrkit.com/v1/batches \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"target": {
"destination": "<string>",
"text": "<string>",
"email": "<string>",
"subject": "<string>",
"message": "<string>",
"phone": "<string>",
"ssid": "<string>",
"password": "<string>",
"title": "<string>",
"location": "<string>",
"start": "<string>",
"end": "<string>",
"utm": {
"source": "<string>",
"medium": "<string>",
"campaign": "<string>",
"term": "<string>",
"content": "<string>"
}
},
"name": "<string>",
"folder_id": "<string>",
"tags": [
"<string>"
]
}
],
"design": {
"error_correction": "Q",
"colors": {
"foreground": "#000000",
"background": "#ffffff"
},
"gradient": {
"start": "#005ae0",
"end": "#00c2ff",
"type": "linear-top-to-bottom"
},
"shapes": {
"body": "square",
"eye_frame": "square",
"eye_ball": "square"
},
"eye_colors": {
"frame": "#005ae0",
"ball": "#004bb8"
},
"logo": {
"url": "<string>",
"clear_background": false
},
"transparent_background": false
},
"template_id": "<string>"
}
'import requests
url = "https://api.useqrkit.com/v1/batches"
payload = {
"items": [
{
"target": {
"destination": "<string>",
"text": "<string>",
"email": "<string>",
"subject": "<string>",
"message": "<string>",
"phone": "<string>",
"ssid": "<string>",
"password": "<string>",
"title": "<string>",
"location": "<string>",
"start": "<string>",
"end": "<string>",
"utm": {
"source": "<string>",
"medium": "<string>",
"campaign": "<string>",
"term": "<string>",
"content": "<string>"
}
},
"name": "<string>",
"folder_id": "<string>",
"tags": ["<string>"]
}
],
"design": {
"error_correction": "Q",
"colors": {
"foreground": "#000000",
"background": "#ffffff"
},
"gradient": {
"start": "#005ae0",
"end": "#00c2ff",
"type": "linear-top-to-bottom"
},
"shapes": {
"body": "square",
"eye_frame": "square",
"eye_ball": "square"
},
"eye_colors": {
"frame": "#005ae0",
"ball": "#004bb8"
},
"logo": {
"url": "<string>",
"clear_background": False
},
"transparent_background": False
},
"template_id": "<string>"
}
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({
items: [
{
target: {
destination: '<string>',
text: '<string>',
email: '<string>',
subject: '<string>',
message: '<string>',
phone: '<string>',
ssid: '<string>',
password: '<string>',
title: '<string>',
location: '<string>',
start: '<string>',
end: '<string>',
utm: {
source: '<string>',
medium: '<string>',
campaign: '<string>',
term: '<string>',
content: '<string>'
}
},
name: '<string>',
folder_id: '<string>',
tags: ['<string>']
}
],
design: {
error_correction: 'Q',
colors: {foreground: '#000000', background: '#ffffff'},
gradient: {start: '#005ae0', end: '#00c2ff', type: 'linear-top-to-bottom'},
shapes: {body: JSON.stringify('square'), eye_frame: 'square', eye_ball: 'square'},
eye_colors: {frame: '#005ae0', ball: '#004bb8'},
logo: {url: '<string>', clear_background: false},
transparent_background: false
},
template_id: '<string>'
})
};
fetch('https://api.useqrkit.com/v1/batches', 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.useqrkit.com/v1/batches",
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([
'items' => [
[
'target' => [
'destination' => '<string>',
'text' => '<string>',
'email' => '<string>',
'subject' => '<string>',
'message' => '<string>',
'phone' => '<string>',
'ssid' => '<string>',
'password' => '<string>',
'title' => '<string>',
'location' => '<string>',
'start' => '<string>',
'end' => '<string>',
'utm' => [
'source' => '<string>',
'medium' => '<string>',
'campaign' => '<string>',
'term' => '<string>',
'content' => '<string>'
]
],
'name' => '<string>',
'folder_id' => '<string>',
'tags' => [
'<string>'
]
]
],
'design' => [
'error_correction' => 'Q',
'colors' => [
'foreground' => '#000000',
'background' => '#ffffff'
],
'gradient' => [
'start' => '#005ae0',
'end' => '#00c2ff',
'type' => 'linear-top-to-bottom'
],
'shapes' => [
'body' => 'square',
'eye_frame' => 'square',
'eye_ball' => 'square'
],
'eye_colors' => [
'frame' => '#005ae0',
'ball' => '#004bb8'
],
'logo' => [
'url' => '<string>',
'clear_background' => false
],
'transparent_background' => false
],
'template_id' => '<string>'
]),
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.useqrkit.com/v1/batches"
payload := strings.NewReader("{\n \"items\": [\n {\n \"target\": {\n \"destination\": \"<string>\",\n \"text\": \"<string>\",\n \"email\": \"<string>\",\n \"subject\": \"<string>\",\n \"message\": \"<string>\",\n \"phone\": \"<string>\",\n \"ssid\": \"<string>\",\n \"password\": \"<string>\",\n \"title\": \"<string>\",\n \"location\": \"<string>\",\n \"start\": \"<string>\",\n \"end\": \"<string>\",\n \"utm\": {\n \"source\": \"<string>\",\n \"medium\": \"<string>\",\n \"campaign\": \"<string>\",\n \"term\": \"<string>\",\n \"content\": \"<string>\"\n }\n },\n \"name\": \"<string>\",\n \"folder_id\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ]\n }\n ],\n \"design\": {\n \"error_correction\": \"Q\",\n \"colors\": {\n \"foreground\": \"#000000\",\n \"background\": \"#ffffff\"\n },\n \"gradient\": {\n \"start\": \"#005ae0\",\n \"end\": \"#00c2ff\",\n \"type\": \"linear-top-to-bottom\"\n },\n \"shapes\": {\n \"body\": \"square\",\n \"eye_frame\": \"square\",\n \"eye_ball\": \"square\"\n },\n \"eye_colors\": {\n \"frame\": \"#005ae0\",\n \"ball\": \"#004bb8\"\n },\n \"logo\": {\n \"url\": \"<string>\",\n \"clear_background\": false\n },\n \"transparent_background\": false\n },\n \"template_id\": \"<string>\"\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.useqrkit.com/v1/batches")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"target\": {\n \"destination\": \"<string>\",\n \"text\": \"<string>\",\n \"email\": \"<string>\",\n \"subject\": \"<string>\",\n \"message\": \"<string>\",\n \"phone\": \"<string>\",\n \"ssid\": \"<string>\",\n \"password\": \"<string>\",\n \"title\": \"<string>\",\n \"location\": \"<string>\",\n \"start\": \"<string>\",\n \"end\": \"<string>\",\n \"utm\": {\n \"source\": \"<string>\",\n \"medium\": \"<string>\",\n \"campaign\": \"<string>\",\n \"term\": \"<string>\",\n \"content\": \"<string>\"\n }\n },\n \"name\": \"<string>\",\n \"folder_id\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ]\n }\n ],\n \"design\": {\n \"error_correction\": \"Q\",\n \"colors\": {\n \"foreground\": \"#000000\",\n \"background\": \"#ffffff\"\n },\n \"gradient\": {\n \"start\": \"#005ae0\",\n \"end\": \"#00c2ff\",\n \"type\": \"linear-top-to-bottom\"\n },\n \"shapes\": {\n \"body\": \"square\",\n \"eye_frame\": \"square\",\n \"eye_ball\": \"square\"\n },\n \"eye_colors\": {\n \"frame\": \"#005ae0\",\n \"ball\": \"#004bb8\"\n },\n \"logo\": {\n \"url\": \"<string>\",\n \"clear_background\": false\n },\n \"transparent_background\": false\n },\n \"template_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.useqrkit.com/v1/batches")
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 \"items\": [\n {\n \"target\": {\n \"destination\": \"<string>\",\n \"text\": \"<string>\",\n \"email\": \"<string>\",\n \"subject\": \"<string>\",\n \"message\": \"<string>\",\n \"phone\": \"<string>\",\n \"ssid\": \"<string>\",\n \"password\": \"<string>\",\n \"title\": \"<string>\",\n \"location\": \"<string>\",\n \"start\": \"<string>\",\n \"end\": \"<string>\",\n \"utm\": {\n \"source\": \"<string>\",\n \"medium\": \"<string>\",\n \"campaign\": \"<string>\",\n \"term\": \"<string>\",\n \"content\": \"<string>\"\n }\n },\n \"name\": \"<string>\",\n \"folder_id\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ]\n }\n ],\n \"design\": {\n \"error_correction\": \"Q\",\n \"colors\": {\n \"foreground\": \"#000000\",\n \"background\": \"#ffffff\"\n },\n \"gradient\": {\n \"start\": \"#005ae0\",\n \"end\": \"#00c2ff\",\n \"type\": \"linear-top-to-bottom\"\n },\n \"shapes\": {\n \"body\": \"square\",\n \"eye_frame\": \"square\",\n \"eye_ball\": \"square\"\n },\n \"eye_colors\": {\n \"frame\": \"#005ae0\",\n \"ball\": \"#004bb8\"\n },\n \"logo\": {\n \"url\": \"<string>\",\n \"clear_background\": false\n },\n \"transparent_background\": false\n },\n \"template_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "batch_aB3dE5fG7hI9jK1m",
"object": "batch",
"total_count": 123,
"completed_count": 123,
"error_count": 123,
"items": [
{
"name": "<string>",
"type": "<string>",
"qr_code_id": "<string>",
"error": "<string>"
}
],
"created_at": "2023-11-07T05:31:56Z"
}{
"error": {
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}Authorizations
API key in the Authorization header: Bearer qr_live_… or Bearer qr_test_…. Token endpoints take a Clerk session JWT instead.
Body
application/json
Response
Batch accepted for processing
⌘I
Create Batch
curl --request POST \
--url https://api.useqrkit.com/v1/batches \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"target": {
"destination": "<string>",
"text": "<string>",
"email": "<string>",
"subject": "<string>",
"message": "<string>",
"phone": "<string>",
"ssid": "<string>",
"password": "<string>",
"title": "<string>",
"location": "<string>",
"start": "<string>",
"end": "<string>",
"utm": {
"source": "<string>",
"medium": "<string>",
"campaign": "<string>",
"term": "<string>",
"content": "<string>"
}
},
"name": "<string>",
"folder_id": "<string>",
"tags": [
"<string>"
]
}
],
"design": {
"error_correction": "Q",
"colors": {
"foreground": "#000000",
"background": "#ffffff"
},
"gradient": {
"start": "#005ae0",
"end": "#00c2ff",
"type": "linear-top-to-bottom"
},
"shapes": {
"body": "square",
"eye_frame": "square",
"eye_ball": "square"
},
"eye_colors": {
"frame": "#005ae0",
"ball": "#004bb8"
},
"logo": {
"url": "<string>",
"clear_background": false
},
"transparent_background": false
},
"template_id": "<string>"
}
'import requests
url = "https://api.useqrkit.com/v1/batches"
payload = {
"items": [
{
"target": {
"destination": "<string>",
"text": "<string>",
"email": "<string>",
"subject": "<string>",
"message": "<string>",
"phone": "<string>",
"ssid": "<string>",
"password": "<string>",
"title": "<string>",
"location": "<string>",
"start": "<string>",
"end": "<string>",
"utm": {
"source": "<string>",
"medium": "<string>",
"campaign": "<string>",
"term": "<string>",
"content": "<string>"
}
},
"name": "<string>",
"folder_id": "<string>",
"tags": ["<string>"]
}
],
"design": {
"error_correction": "Q",
"colors": {
"foreground": "#000000",
"background": "#ffffff"
},
"gradient": {
"start": "#005ae0",
"end": "#00c2ff",
"type": "linear-top-to-bottom"
},
"shapes": {
"body": "square",
"eye_frame": "square",
"eye_ball": "square"
},
"eye_colors": {
"frame": "#005ae0",
"ball": "#004bb8"
},
"logo": {
"url": "<string>",
"clear_background": False
},
"transparent_background": False
},
"template_id": "<string>"
}
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({
items: [
{
target: {
destination: '<string>',
text: '<string>',
email: '<string>',
subject: '<string>',
message: '<string>',
phone: '<string>',
ssid: '<string>',
password: '<string>',
title: '<string>',
location: '<string>',
start: '<string>',
end: '<string>',
utm: {
source: '<string>',
medium: '<string>',
campaign: '<string>',
term: '<string>',
content: '<string>'
}
},
name: '<string>',
folder_id: '<string>',
tags: ['<string>']
}
],
design: {
error_correction: 'Q',
colors: {foreground: '#000000', background: '#ffffff'},
gradient: {start: '#005ae0', end: '#00c2ff', type: 'linear-top-to-bottom'},
shapes: {body: JSON.stringify('square'), eye_frame: 'square', eye_ball: 'square'},
eye_colors: {frame: '#005ae0', ball: '#004bb8'},
logo: {url: '<string>', clear_background: false},
transparent_background: false
},
template_id: '<string>'
})
};
fetch('https://api.useqrkit.com/v1/batches', 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.useqrkit.com/v1/batches",
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([
'items' => [
[
'target' => [
'destination' => '<string>',
'text' => '<string>',
'email' => '<string>',
'subject' => '<string>',
'message' => '<string>',
'phone' => '<string>',
'ssid' => '<string>',
'password' => '<string>',
'title' => '<string>',
'location' => '<string>',
'start' => '<string>',
'end' => '<string>',
'utm' => [
'source' => '<string>',
'medium' => '<string>',
'campaign' => '<string>',
'term' => '<string>',
'content' => '<string>'
]
],
'name' => '<string>',
'folder_id' => '<string>',
'tags' => [
'<string>'
]
]
],
'design' => [
'error_correction' => 'Q',
'colors' => [
'foreground' => '#000000',
'background' => '#ffffff'
],
'gradient' => [
'start' => '#005ae0',
'end' => '#00c2ff',
'type' => 'linear-top-to-bottom'
],
'shapes' => [
'body' => 'square',
'eye_frame' => 'square',
'eye_ball' => 'square'
],
'eye_colors' => [
'frame' => '#005ae0',
'ball' => '#004bb8'
],
'logo' => [
'url' => '<string>',
'clear_background' => false
],
'transparent_background' => false
],
'template_id' => '<string>'
]),
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.useqrkit.com/v1/batches"
payload := strings.NewReader("{\n \"items\": [\n {\n \"target\": {\n \"destination\": \"<string>\",\n \"text\": \"<string>\",\n \"email\": \"<string>\",\n \"subject\": \"<string>\",\n \"message\": \"<string>\",\n \"phone\": \"<string>\",\n \"ssid\": \"<string>\",\n \"password\": \"<string>\",\n \"title\": \"<string>\",\n \"location\": \"<string>\",\n \"start\": \"<string>\",\n \"end\": \"<string>\",\n \"utm\": {\n \"source\": \"<string>\",\n \"medium\": \"<string>\",\n \"campaign\": \"<string>\",\n \"term\": \"<string>\",\n \"content\": \"<string>\"\n }\n },\n \"name\": \"<string>\",\n \"folder_id\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ]\n }\n ],\n \"design\": {\n \"error_correction\": \"Q\",\n \"colors\": {\n \"foreground\": \"#000000\",\n \"background\": \"#ffffff\"\n },\n \"gradient\": {\n \"start\": \"#005ae0\",\n \"end\": \"#00c2ff\",\n \"type\": \"linear-top-to-bottom\"\n },\n \"shapes\": {\n \"body\": \"square\",\n \"eye_frame\": \"square\",\n \"eye_ball\": \"square\"\n },\n \"eye_colors\": {\n \"frame\": \"#005ae0\",\n \"ball\": \"#004bb8\"\n },\n \"logo\": {\n \"url\": \"<string>\",\n \"clear_background\": false\n },\n \"transparent_background\": false\n },\n \"template_id\": \"<string>\"\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.useqrkit.com/v1/batches")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"target\": {\n \"destination\": \"<string>\",\n \"text\": \"<string>\",\n \"email\": \"<string>\",\n \"subject\": \"<string>\",\n \"message\": \"<string>\",\n \"phone\": \"<string>\",\n \"ssid\": \"<string>\",\n \"password\": \"<string>\",\n \"title\": \"<string>\",\n \"location\": \"<string>\",\n \"start\": \"<string>\",\n \"end\": \"<string>\",\n \"utm\": {\n \"source\": \"<string>\",\n \"medium\": \"<string>\",\n \"campaign\": \"<string>\",\n \"term\": \"<string>\",\n \"content\": \"<string>\"\n }\n },\n \"name\": \"<string>\",\n \"folder_id\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ]\n }\n ],\n \"design\": {\n \"error_correction\": \"Q\",\n \"colors\": {\n \"foreground\": \"#000000\",\n \"background\": \"#ffffff\"\n },\n \"gradient\": {\n \"start\": \"#005ae0\",\n \"end\": \"#00c2ff\",\n \"type\": \"linear-top-to-bottom\"\n },\n \"shapes\": {\n \"body\": \"square\",\n \"eye_frame\": \"square\",\n \"eye_ball\": \"square\"\n },\n \"eye_colors\": {\n \"frame\": \"#005ae0\",\n \"ball\": \"#004bb8\"\n },\n \"logo\": {\n \"url\": \"<string>\",\n \"clear_background\": false\n },\n \"transparent_background\": false\n },\n \"template_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.useqrkit.com/v1/batches")
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 \"items\": [\n {\n \"target\": {\n \"destination\": \"<string>\",\n \"text\": \"<string>\",\n \"email\": \"<string>\",\n \"subject\": \"<string>\",\n \"message\": \"<string>\",\n \"phone\": \"<string>\",\n \"ssid\": \"<string>\",\n \"password\": \"<string>\",\n \"title\": \"<string>\",\n \"location\": \"<string>\",\n \"start\": \"<string>\",\n \"end\": \"<string>\",\n \"utm\": {\n \"source\": \"<string>\",\n \"medium\": \"<string>\",\n \"campaign\": \"<string>\",\n \"term\": \"<string>\",\n \"content\": \"<string>\"\n }\n },\n \"name\": \"<string>\",\n \"folder_id\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ]\n }\n ],\n \"design\": {\n \"error_correction\": \"Q\",\n \"colors\": {\n \"foreground\": \"#000000\",\n \"background\": \"#ffffff\"\n },\n \"gradient\": {\n \"start\": \"#005ae0\",\n \"end\": \"#00c2ff\",\n \"type\": \"linear-top-to-bottom\"\n },\n \"shapes\": {\n \"body\": \"square\",\n \"eye_frame\": \"square\",\n \"eye_ball\": \"square\"\n },\n \"eye_colors\": {\n \"frame\": \"#005ae0\",\n \"ball\": \"#004bb8\"\n },\n \"logo\": {\n \"url\": \"<string>\",\n \"clear_background\": false\n },\n \"transparent_background\": false\n },\n \"template_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "batch_aB3dE5fG7hI9jK1m",
"object": "batch",
"total_count": 123,
"completed_count": 123,
"error_count": 123,
"items": [
{
"name": "<string>",
"type": "<string>",
"qr_code_id": "<string>",
"error": "<string>"
}
],
"created_at": "2023-11-07T05:31:56Z"
}{
"error": {
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}
