curl --request PUT \
--url http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId} \
--header 'Content-Type: application/json' \
--data '
{
"id": 123,
"name": "<string>",
"customId": "<string>",
"description": "<string>",
"brand": {
"id": 123,
"customId": "<string>",
"name": "<string>",
"contactPersonId": "<string>",
"contactPersonName": "<string>"
},
"supplier": {
"id": 123,
"customId": "<string>",
"name": "<string>",
"contactPersonId": "<string>",
"contactPersonName": "<string>"
},
"companyContactPerson": {
"id": "<string>",
"name": "<string>"
},
"supplierContactPerson": {
"id": "<string>",
"name": "<string>"
},
"defaultQty": 123,
"nameGeneratorExtraText": "<string>",
"readyForExport": true,
"categories": [
{
"id": 123,
"customId": "<string>",
"name": "<string>"
}
],
"customFields": [
{
"id": 123,
"value": {
"id": 123,
"customId": "<string>",
"value": "<string>"
},
"values": [
{
"id": 123,
"customId": "<string>",
"value": "<string>"
}
]
}
]
}
'import requests
url = "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}"
payload = {
"id": 123,
"name": "<string>",
"customId": "<string>",
"description": "<string>",
"brand": {
"id": 123,
"customId": "<string>",
"name": "<string>",
"contactPersonId": "<string>",
"contactPersonName": "<string>"
},
"supplier": {
"id": 123,
"customId": "<string>",
"name": "<string>",
"contactPersonId": "<string>",
"contactPersonName": "<string>"
},
"companyContactPerson": {
"id": "<string>",
"name": "<string>"
},
"supplierContactPerson": {
"id": "<string>",
"name": "<string>"
},
"defaultQty": 123,
"nameGeneratorExtraText": "<string>",
"readyForExport": True,
"categories": [
{
"id": 123,
"customId": "<string>",
"name": "<string>"
}
],
"customFields": [
{
"id": 123,
"value": {
"id": 123,
"customId": "<string>",
"value": "<string>"
},
"values": [
{
"id": 123,
"customId": "<string>",
"value": "<string>"
}
]
}
]
}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
id: 123,
name: '<string>',
customId: '<string>',
description: '<string>',
brand: {
id: 123,
customId: '<string>',
name: '<string>',
contactPersonId: '<string>',
contactPersonName: '<string>'
},
supplier: {
id: 123,
customId: '<string>',
name: '<string>',
contactPersonId: '<string>',
contactPersonName: '<string>'
},
companyContactPerson: {id: '<string>', name: '<string>'},
supplierContactPerson: {id: '<string>', name: '<string>'},
defaultQty: 123,
nameGeneratorExtraText: '<string>',
readyForExport: true,
categories: [{id: 123, customId: '<string>', name: '<string>'}],
customFields: [
{
id: 123,
value: {id: 123, customId: '<string>', value: '<string>'},
values: [{id: 123, customId: '<string>', value: '<string>'}]
}
]
})
};
fetch('http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}', 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 => "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'id' => 123,
'name' => '<string>',
'customId' => '<string>',
'description' => '<string>',
'brand' => [
'id' => 123,
'customId' => '<string>',
'name' => '<string>',
'contactPersonId' => '<string>',
'contactPersonName' => '<string>'
],
'supplier' => [
'id' => 123,
'customId' => '<string>',
'name' => '<string>',
'contactPersonId' => '<string>',
'contactPersonName' => '<string>'
],
'companyContactPerson' => [
'id' => '<string>',
'name' => '<string>'
],
'supplierContactPerson' => [
'id' => '<string>',
'name' => '<string>'
],
'defaultQty' => 123,
'nameGeneratorExtraText' => '<string>',
'readyForExport' => true,
'categories' => [
[
'id' => 123,
'customId' => '<string>',
'name' => '<string>'
]
],
'customFields' => [
[
'id' => 123,
'value' => [
'id' => 123,
'customId' => '<string>',
'value' => '<string>'
],
'values' => [
[
'id' => 123,
'customId' => '<string>',
'value' => '<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 := "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}"
payload := strings.NewReader("{\n \"id\": 123,\n \"name\": \"<string>\",\n \"customId\": \"<string>\",\n \"description\": \"<string>\",\n \"brand\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"supplier\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"companyContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"supplierContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"defaultQty\": 123,\n \"nameGeneratorExtraText\": \"<string>\",\n \"readyForExport\": true,\n \"categories\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"customFields\": [\n {\n \"id\": 123,\n \"value\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n },\n \"values\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n }\n ]\n}")
req, _ := http.NewRequest("PUT", 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.put("http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}")
.header("Content-Type", "application/json")
.body("{\n \"id\": 123,\n \"name\": \"<string>\",\n \"customId\": \"<string>\",\n \"description\": \"<string>\",\n \"brand\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"supplier\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"companyContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"supplierContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"defaultQty\": 123,\n \"nameGeneratorExtraText\": \"<string>\",\n \"readyForExport\": true,\n \"categories\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"customFields\": [\n {\n \"id\": 123,\n \"value\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n },\n \"values\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Put.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"id\": 123,\n \"name\": \"<string>\",\n \"customId\": \"<string>\",\n \"description\": \"<string>\",\n \"brand\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"supplier\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"companyContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"supplierContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"defaultQty\": 123,\n \"nameGeneratorExtraText\": \"<string>\",\n \"readyForExport\": true,\n \"categories\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"customFields\": [\n {\n \"id\": 123,\n \"value\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n },\n \"values\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": "<unknown>",
"code": "<string>",
"data": {
"id": 123,
"name": "<string>",
"customId": "<string>",
"description": "<string>",
"brand": {
"id": 123,
"name": "<string>"
},
"organization": {
"id": 123,
"name": "<string>"
},
"supplier": {
"id": 123,
"name": "<string>"
},
"companyContactPerson": {
"id": "<string>",
"name": "<string>"
},
"supplierContactPerson": {
"id": "<string>",
"name": "<string>"
},
"adminUnit": {
"id": 123,
"name": "<string>",
"properties": [
"<string>"
]
},
"logo": {
"id": "<string>",
"url": "<string>"
},
"lastUpdated": "2023-11-07T05:31:56Z",
"deadline": "2023-11-07T05:31:56Z",
"etd": "2023-11-07T05:31:56Z",
"erpItemId": "<string>",
"defaultQty": 123,
"nameGeneratorExtraText": "<string>",
"physicalReferenceNumber": "<string>",
"categories": [
{
"id": 123,
"name": "<string>",
"state": "<unknown>",
"usedInItems": 123,
"beginDate": "2023-11-07T05:31:56Z",
"endDate": "2023-11-07T05:31:56Z",
"properties": [
"<string>"
]
}
],
"customFields": [
{
"id": 123,
"customId1": "<string>",
"type": "<string>",
"name": "<string>",
"value": {
"id": 123,
"value": "<string>",
"customId": "<string>"
},
"values": [
{
"id": 123,
"value": "<string>",
"customId": "<string>"
}
],
"perColorValues": [
{
"styleColorId": 123,
"value": {
"id": 123,
"value": "<string>",
"customId": "<string>"
},
"values": [
{
"id": 123,
"value": "<string>",
"customId": "<string>"
}
]
}
]
}
],
"properties": [
"<string>"
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}Updates a single item by ID (full replace).
Updates an item owned by the current organization. PUT is a full replace: every field on the request body is written to the database verbatim. The route id wins over any id present in the body. Required fields (name, brand, companyContactPerson) must be present and non-null; missing or null returns 400. description (≤1000), userDefinedId (≤100), and name (≤200) are length-bounded; defaultQty must be non-null and ≥0. Nullable scalar fields clear the column when sent as null. Collections (categories, customFields) are written verbatim: an explicit list replaces the association set, an empty array or an omitted/null field clears the set — there is no preserve-on-null semantics (that is PATCH, dl-59708). Toggling readyForExport from false to true triggers the mandatory-custom-field check (dl-58912); when readyForExport stays true and the request supplies customFields, the same check fires to prevent silent removal of mandatory fields. Cross-organization access returns 403 (an authenticated-but-not-authorized denial), matching GET/PATCH.
curl --request PUT \
--url http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId} \
--header 'Content-Type: application/json' \
--data '
{
"id": 123,
"name": "<string>",
"customId": "<string>",
"description": "<string>",
"brand": {
"id": 123,
"customId": "<string>",
"name": "<string>",
"contactPersonId": "<string>",
"contactPersonName": "<string>"
},
"supplier": {
"id": 123,
"customId": "<string>",
"name": "<string>",
"contactPersonId": "<string>",
"contactPersonName": "<string>"
},
"companyContactPerson": {
"id": "<string>",
"name": "<string>"
},
"supplierContactPerson": {
"id": "<string>",
"name": "<string>"
},
"defaultQty": 123,
"nameGeneratorExtraText": "<string>",
"readyForExport": true,
"categories": [
{
"id": 123,
"customId": "<string>",
"name": "<string>"
}
],
"customFields": [
{
"id": 123,
"value": {
"id": 123,
"customId": "<string>",
"value": "<string>"
},
"values": [
{
"id": 123,
"customId": "<string>",
"value": "<string>"
}
]
}
]
}
'import requests
url = "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}"
payload = {
"id": 123,
"name": "<string>",
"customId": "<string>",
"description": "<string>",
"brand": {
"id": 123,
"customId": "<string>",
"name": "<string>",
"contactPersonId": "<string>",
"contactPersonName": "<string>"
},
"supplier": {
"id": 123,
"customId": "<string>",
"name": "<string>",
"contactPersonId": "<string>",
"contactPersonName": "<string>"
},
"companyContactPerson": {
"id": "<string>",
"name": "<string>"
},
"supplierContactPerson": {
"id": "<string>",
"name": "<string>"
},
"defaultQty": 123,
"nameGeneratorExtraText": "<string>",
"readyForExport": True,
"categories": [
{
"id": 123,
"customId": "<string>",
"name": "<string>"
}
],
"customFields": [
{
"id": 123,
"value": {
"id": 123,
"customId": "<string>",
"value": "<string>"
},
"values": [
{
"id": 123,
"customId": "<string>",
"value": "<string>"
}
]
}
]
}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
id: 123,
name: '<string>',
customId: '<string>',
description: '<string>',
brand: {
id: 123,
customId: '<string>',
name: '<string>',
contactPersonId: '<string>',
contactPersonName: '<string>'
},
supplier: {
id: 123,
customId: '<string>',
name: '<string>',
contactPersonId: '<string>',
contactPersonName: '<string>'
},
companyContactPerson: {id: '<string>', name: '<string>'},
supplierContactPerson: {id: '<string>', name: '<string>'},
defaultQty: 123,
nameGeneratorExtraText: '<string>',
readyForExport: true,
categories: [{id: 123, customId: '<string>', name: '<string>'}],
customFields: [
{
id: 123,
value: {id: 123, customId: '<string>', value: '<string>'},
values: [{id: 123, customId: '<string>', value: '<string>'}]
}
]
})
};
fetch('http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}', 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 => "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'id' => 123,
'name' => '<string>',
'customId' => '<string>',
'description' => '<string>',
'brand' => [
'id' => 123,
'customId' => '<string>',
'name' => '<string>',
'contactPersonId' => '<string>',
'contactPersonName' => '<string>'
],
'supplier' => [
'id' => 123,
'customId' => '<string>',
'name' => '<string>',
'contactPersonId' => '<string>',
'contactPersonName' => '<string>'
],
'companyContactPerson' => [
'id' => '<string>',
'name' => '<string>'
],
'supplierContactPerson' => [
'id' => '<string>',
'name' => '<string>'
],
'defaultQty' => 123,
'nameGeneratorExtraText' => '<string>',
'readyForExport' => true,
'categories' => [
[
'id' => 123,
'customId' => '<string>',
'name' => '<string>'
]
],
'customFields' => [
[
'id' => 123,
'value' => [
'id' => 123,
'customId' => '<string>',
'value' => '<string>'
],
'values' => [
[
'id' => 123,
'customId' => '<string>',
'value' => '<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 := "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}"
payload := strings.NewReader("{\n \"id\": 123,\n \"name\": \"<string>\",\n \"customId\": \"<string>\",\n \"description\": \"<string>\",\n \"brand\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"supplier\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"companyContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"supplierContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"defaultQty\": 123,\n \"nameGeneratorExtraText\": \"<string>\",\n \"readyForExport\": true,\n \"categories\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"customFields\": [\n {\n \"id\": 123,\n \"value\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n },\n \"values\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n }\n ]\n}")
req, _ := http.NewRequest("PUT", 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.put("http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}")
.header("Content-Type", "application/json")
.body("{\n \"id\": 123,\n \"name\": \"<string>\",\n \"customId\": \"<string>\",\n \"description\": \"<string>\",\n \"brand\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"supplier\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"companyContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"supplierContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"defaultQty\": 123,\n \"nameGeneratorExtraText\": \"<string>\",\n \"readyForExport\": true,\n \"categories\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"customFields\": [\n {\n \"id\": 123,\n \"value\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n },\n \"values\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/items/{itemId}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Put.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"id\": 123,\n \"name\": \"<string>\",\n \"customId\": \"<string>\",\n \"description\": \"<string>\",\n \"brand\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"supplier\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\",\n \"contactPersonId\": \"<string>\",\n \"contactPersonName\": \"<string>\"\n },\n \"companyContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"supplierContactPerson\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"defaultQty\": 123,\n \"nameGeneratorExtraText\": \"<string>\",\n \"readyForExport\": true,\n \"categories\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"name\": \"<string>\"\n }\n ],\n \"customFields\": [\n {\n \"id\": 123,\n \"value\": {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n },\n \"values\": [\n {\n \"id\": 123,\n \"customId\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": "<unknown>",
"code": "<string>",
"data": {
"id": 123,
"name": "<string>",
"customId": "<string>",
"description": "<string>",
"brand": {
"id": 123,
"name": "<string>"
},
"organization": {
"id": 123,
"name": "<string>"
},
"supplier": {
"id": 123,
"name": "<string>"
},
"companyContactPerson": {
"id": "<string>",
"name": "<string>"
},
"supplierContactPerson": {
"id": "<string>",
"name": "<string>"
},
"adminUnit": {
"id": 123,
"name": "<string>",
"properties": [
"<string>"
]
},
"logo": {
"id": "<string>",
"url": "<string>"
},
"lastUpdated": "2023-11-07T05:31:56Z",
"deadline": "2023-11-07T05:31:56Z",
"etd": "2023-11-07T05:31:56Z",
"erpItemId": "<string>",
"defaultQty": 123,
"nameGeneratorExtraText": "<string>",
"physicalReferenceNumber": "<string>",
"categories": [
{
"id": 123,
"name": "<string>",
"state": "<unknown>",
"usedInItems": 123,
"beginDate": "2023-11-07T05:31:56Z",
"endDate": "2023-11-07T05:31:56Z",
"properties": [
"<string>"
]
}
],
"customFields": [
{
"id": 123,
"customId1": "<string>",
"type": "<string>",
"name": "<string>",
"value": {
"id": 123,
"value": "<string>",
"customId": "<string>"
},
"values": [
{
"id": 123,
"value": "<string>",
"customId": "<string>"
}
],
"perColorValues": [
{
"styleColorId": 123,
"value": {
"id": 123,
"value": "<string>",
"customId": "<string>"
},
"values": [
{
"id": 123,
"value": "<string>",
"customId": "<string>"
}
]
}
]
}
],
"properties": [
"<string>"
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}Path Parameters
Body
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes