Create, update and delete attribute groups - Fabric
Create, update and delete attribute groups
cURL
curl --request POST \
--url https://live.copilot.fabric.inc/api-product/v1/product/attribute-group \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-site-context: <x-site-context>' \
--data '
{
"transactional": true,
"attributeGroup": [
{
"action": "UPDATE",
"type": "COLLECTION",
"description": "Item weight, in KG",
"name": "weight",
"priorityOrder": 1,
"id": "6259ec8d006b0d00092b3189",
"editableAttributes": [
{
"action": "UPDATE",
"id": "6245f16d11ae770009f19292",
"order": 0
}
]
}
]
}
'
Python
import requests
url = "https://live.copilot.fabric.inc/api-product/v1/product/attribute-group"
payload = {
"transactional": True,
"attributeGroup": [
{
"action": "UPDATE",
"type": "COLLECTION",
"description": "Item weight, in KG",
"name": "weight",
"priorityOrder": 1,
"id": "6259ec8d006b0d00092b3189",
"editableAttributes": [
{
"action": "UPDATE",
"id": "6245f16d11ae770009f19292",
"order": 0
}
]
}
]
}
headers = {
"x-site-context": "<x-site-context>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)
JavaScript (Fetch)
const options = {
method: 'POST',
headers: {
'x-site-context': '<x-site-context>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
transactional: true,
attributeGroup: [
{
action: 'UPDATE',
type: 'COLLECTION',
description: 'Item weight, in KG',
name: 'weight',
priorityOrder: 1,
id: '6259ec8d006b0d00092b3189',
editableAttributes: [{action: 'UPDATE', id: '6245f16d11ae770009f19292', order: 0}]
}
]
})
};
fetch('https://live.copilot.fabric.inc/api-product/v1/product/attribute-group', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
PHP
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://live.copilot.fabric.inc/api-product/v1/product/attribute-group",
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([
'transactional' => true,
'attributeGroup' => [
[
'action' => 'UPDATE',
'type' => 'COLLECTION',
'description' => 'Item weight, in KG',
'name' => 'weight',
'priorityOrder' => 1,
'id' => '6259ec8d006b0d00092b3189',
'editableAttributes' => [
[
'action' => 'UPDATE',
'id' => '6245f16d11ae770009f19292',
'order' => 0
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"x-site-context: <x-site-context>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
Go
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://live.copilot.fabric.inc/api-product/v1/product/attribute-group"
payload := strings.NewReader(`{
"transactional": true,
"attributeGroup": [
{
"action": "UPDATE",
"type": "COLLECTION",
"description": "Item weight, in KG",
"name": "weight",
"priorityOrder": 1,
"id": "6259ec8d006b0d00092b3189",
"editableAttributes": [
{
"action": "UPDATE",
"id": "6245f16d11ae770009f19292",
"order": 0
}
]
}
]
}`)
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-site-context", "<x-site-context>")
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))
}
Java
HttpResponse<String> response = Unirest.post("https://live.copilot.fabric.inc/api-product/v1/product/attribute-group")
.header("x-site-context", "<x-site-context>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"transactional\": true,\n \"attributeGroup\": [\n {\n \"action\": \"UPDATE\",\n \"type\": \"COLLECTION\",\n \"description\": \"Item weight, in KG\",\n \"name\": \"weight\",\n \"priorityOrder\": 1,\n \"id\": \"6259ec8d006b0d00092b3189\",\n \"editableAttributes\": [\n {\n \"action\": \"UPDATE\",\n \"id\": \"6245f16d11ae770009f19292\",\n \"order\": 0\n }\n ]\n }\n ]\n}")
.asString();
Ruby
require 'uri'
require 'net/http'
url = URI("https://live.copilot.fabric.inc/api-product/v1/product/attribute-group")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-site-context"] = '<x-site-context>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"transactional\": true,\n \"attributeGroup\": [\n {\n \"action\": \"UPDATE\",\n \"type\": \"COLLECTION\",\n \"description\": \"Item weight, in KG\",\n \"name\": \"weight\",\n \"priorityOrder\": 1,\n \"id\": \"6259ec8d006b0d00092b3189\",\n \"editableAttributes\": [\n {\n \"action\": \"UPDATE\",\n \"id\": \"6245f16d11ae770009f19292\",\n \"order\": 0\n }\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body
Sample Responses
Successful Response (200)
[
{
"_id": "6259ec8d006b0d00092b3189",
"description": "Item weight, in KG",
"type": "COLLECTION",
"name": "weight",
"priorityOrder": 1,
"createdOn": "2022-04-15T22:07:09.921Z",
"modifiedOn": "2022-04-15T22:10:05.427Z",
"attributes": [
{
"_id": "6259ec8defc2116dd6c0f3fc",
"attributeGroupId": "6259ec8d006b0d00092b3189",
"attributeId": "6245f16d11ae770009f19292",
"isEditable": true,
"createdOn": "2022-04-15T22:07:09.932Z",
"modifiedOn": "2022-04-15T22:10:05.444Z",
"order": 0
}
]
}
]
Client Error Response (400)
{
"code": 400,
"message": "Client error"
}
Server Error Response (500)
{
"code": 500,
"message": "An internal error occurred. If the issue persists please contact support@fabric.inc."
}