Add Batch Items
curl --request POST \
--url https://api.{tenant}.getomneo.com/api/v3/batches/{batch}/items \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"external_id": "<string>",
"entity_id": "<string>",
"error": "<string>"
}
]
}
'import requests
url = "https://api.{tenant}.getomneo.com/api/v3/batches/{batch}/items"
payload = { "items": [
{
"external_id": "<string>",
"entity_id": "<string>",
"error": "<string>"
}
] }
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({items: [{external_id: '<string>', entity_id: '<string>', error: '<string>'}]})
};
fetch('https://api.{tenant}.getomneo.com/api/v3/batches/{batch}/items', 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.{tenant}.getomneo.com/api/v3/batches/{batch}/items",
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' => [
[
'external_id' => '<string>',
'entity_id' => '<string>',
'error' => '<string>'
]
]
]),
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.{tenant}.getomneo.com/api/v3/batches/{batch}/items"
payload := strings.NewReader("{\n \"items\": [\n {\n \"external_id\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"error\": \"<string>\"\n }\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.{tenant}.getomneo.com/api/v3/batches/{batch}/items")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"external_id\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"error\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.{tenant}.getomneo.com/api/v3/batches/{batch}/items")
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 \"items\": [\n {\n \"external_id\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"error\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"import_job_id": 123,
"entity_type": "<string>",
"total_count": 123,
"status": "<string>",
"success_count": "<string>",
"failed_count": "<string>",
"processed_count": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"items": [
{
"id": 123,
"entity_id": "<string>",
"external_id": "<string>",
"status": "<string>",
"error": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
]
}
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}Batch
Add Batch Items
A POST to the /batches/{batch}/items endpoint allows your application to add items to an existing batch.
POST
/
v3
/
batches
/
{batch}
/
items
Add Batch Items
curl --request POST \
--url https://api.{tenant}.getomneo.com/api/v3/batches/{batch}/items \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"external_id": "<string>",
"entity_id": "<string>",
"error": "<string>"
}
]
}
'import requests
url = "https://api.{tenant}.getomneo.com/api/v3/batches/{batch}/items"
payload = { "items": [
{
"external_id": "<string>",
"entity_id": "<string>",
"error": "<string>"
}
] }
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({items: [{external_id: '<string>', entity_id: '<string>', error: '<string>'}]})
};
fetch('https://api.{tenant}.getomneo.com/api/v3/batches/{batch}/items', 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.{tenant}.getomneo.com/api/v3/batches/{batch}/items",
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' => [
[
'external_id' => '<string>',
'entity_id' => '<string>',
'error' => '<string>'
]
]
]),
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.{tenant}.getomneo.com/api/v3/batches/{batch}/items"
payload := strings.NewReader("{\n \"items\": [\n {\n \"external_id\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"error\": \"<string>\"\n }\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.{tenant}.getomneo.com/api/v3/batches/{batch}/items")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"external_id\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"error\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.{tenant}.getomneo.com/api/v3/batches/{batch}/items")
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 \"items\": [\n {\n \"external_id\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"error\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"import_job_id": 123,
"entity_type": "<string>",
"total_count": 123,
"status": "<string>",
"success_count": "<string>",
"failed_count": "<string>",
"processed_count": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"items": [
{
"id": 123,
"entity_id": "<string>",
"external_id": "<string>",
"status": "<string>",
"error": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
]
}
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}⌘I