Correct in batch
curl --request POST \
--url https://{space}.{region}.api.niadra.com/v1/feedback/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"idempotency_key": "<string>",
"subject": {
"value": "<string>",
"scope": "<string>"
},
"conversation_id": "<string>",
"fact_id": "<string>",
"open_item_id": "<string>",
"reason": "<string>",
"value": "<string>"
}
]
}
'import requests
url = "https://{space}.{region}.api.niadra.com/v1/feedback/batch"
payload = { "items": [
{
"idempotency_key": "<string>",
"subject": {
"value": "<string>",
"scope": "<string>"
},
"conversation_id": "<string>",
"fact_id": "<string>",
"open_item_id": "<string>",
"reason": "<string>",
"value": "<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: [
{
idempotency_key: '<string>',
subject: {value: '<string>', scope: '<string>'},
conversation_id: '<string>',
fact_id: '<string>',
open_item_id: '<string>',
reason: '<string>',
value: '<string>'
}
]
})
};
fetch('https://{space}.{region}.api.niadra.com/v1/feedback/batch', 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://{space}.{region}.api.niadra.com/v1/feedback/batch",
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' => [
[
'idempotency_key' => '<string>',
'subject' => [
'value' => '<string>',
'scope' => '<string>'
],
'conversation_id' => '<string>',
'fact_id' => '<string>',
'open_item_id' => '<string>',
'reason' => '<string>',
'value' => '<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://{space}.{region}.api.niadra.com/v1/feedback/batch"
payload := strings.NewReader("{\n \"items\": [\n {\n \"idempotency_key\": \"<string>\",\n \"subject\": {\n \"value\": \"<string>\",\n \"scope\": \"<string>\"\n },\n \"conversation_id\": \"<string>\",\n \"fact_id\": \"<string>\",\n \"open_item_id\": \"<string>\",\n \"reason\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\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://{space}.{region}.api.niadra.com/v1/feedback/batch")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"idempotency_key\": \"<string>\",\n \"subject\": {\n \"value\": \"<string>\",\n \"scope\": \"<string>\"\n },\n \"conversation_id\": \"<string>\",\n \"fact_id\": \"<string>\",\n \"open_item_id\": \"<string>\",\n \"reason\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{space}.{region}.api.niadra.com/v1/feedback/batch")
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 \"idempotency_key\": \"<string>\",\n \"subject\": {\n \"value\": \"<string>\",\n \"scope\": \"<string>\"\n },\n \"conversation_id\": \"<string>\",\n \"fact_id\": \"<string>\",\n \"open_item_id\": \"<string>\",\n \"reason\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"accepted": 123,
"duplicates": 123,
"errors": [
{
"code": "<string>",
"index": 123,
"detail": "<string>"
}
],
"masked": {}
}{
"code": "<string>",
"status": 123,
"title": "<string>",
"detail": "<string>",
"request_id": "<string>",
"type": "about:blank"
}Write
Correct in batch
Up to 500 corrections in one call, each with its own key; a refused item never fails the rest.
POST
/
v1
/
feedback
/
batch
Correct in batch
curl --request POST \
--url https://{space}.{region}.api.niadra.com/v1/feedback/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"idempotency_key": "<string>",
"subject": {
"value": "<string>",
"scope": "<string>"
},
"conversation_id": "<string>",
"fact_id": "<string>",
"open_item_id": "<string>",
"reason": "<string>",
"value": "<string>"
}
]
}
'import requests
url = "https://{space}.{region}.api.niadra.com/v1/feedback/batch"
payload = { "items": [
{
"idempotency_key": "<string>",
"subject": {
"value": "<string>",
"scope": "<string>"
},
"conversation_id": "<string>",
"fact_id": "<string>",
"open_item_id": "<string>",
"reason": "<string>",
"value": "<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: [
{
idempotency_key: '<string>',
subject: {value: '<string>', scope: '<string>'},
conversation_id: '<string>',
fact_id: '<string>',
open_item_id: '<string>',
reason: '<string>',
value: '<string>'
}
]
})
};
fetch('https://{space}.{region}.api.niadra.com/v1/feedback/batch', 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://{space}.{region}.api.niadra.com/v1/feedback/batch",
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' => [
[
'idempotency_key' => '<string>',
'subject' => [
'value' => '<string>',
'scope' => '<string>'
],
'conversation_id' => '<string>',
'fact_id' => '<string>',
'open_item_id' => '<string>',
'reason' => '<string>',
'value' => '<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://{space}.{region}.api.niadra.com/v1/feedback/batch"
payload := strings.NewReader("{\n \"items\": [\n {\n \"idempotency_key\": \"<string>\",\n \"subject\": {\n \"value\": \"<string>\",\n \"scope\": \"<string>\"\n },\n \"conversation_id\": \"<string>\",\n \"fact_id\": \"<string>\",\n \"open_item_id\": \"<string>\",\n \"reason\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\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://{space}.{region}.api.niadra.com/v1/feedback/batch")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"idempotency_key\": \"<string>\",\n \"subject\": {\n \"value\": \"<string>\",\n \"scope\": \"<string>\"\n },\n \"conversation_id\": \"<string>\",\n \"fact_id\": \"<string>\",\n \"open_item_id\": \"<string>\",\n \"reason\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{space}.{region}.api.niadra.com/v1/feedback/batch")
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 \"idempotency_key\": \"<string>\",\n \"subject\": {\n \"value\": \"<string>\",\n \"scope\": \"<string>\"\n },\n \"conversation_id\": \"<string>\",\n \"fact_id\": \"<string>\",\n \"open_item_id\": \"<string>\",\n \"reason\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"accepted": 123,
"duplicates": 123,
"errors": [
{
"code": "<string>",
"index": 123,
"detail": "<string>"
}
],
"masked": {}
}{
"code": "<string>",
"status": 123,
"title": "<string>",
"detail": "<string>",
"request_id": "<string>",
"type": "about:blank"
}Authorizations
nia_sk_...
Body
application/json
Many corrections in one call, each with its own idempotency key; one bad item never fails the rest.
Required array length:
1 - 500 elementsShow child attributes
Show child attributes
Response
Successful Response
Items whose idempotency key was already stored.
Show child attributes
Show child attributes
Values held back from the accepted items before storage, by type (card, cvv, password, secret): the stored text says [retido:cartão ****1234] where the value was.
Show child attributes
Show child attributes

