Company
Events categorised under company level will be triggered when any action performed on company. e.g. If new brand is created.
Events
company/product-size/create/v2
# Triggered when a new product size is created.
company/product-size/delete/v2
# Triggered when a product size is deleted.
company/product-size/update/v2
# Triggered when an existing product size is updated.
Payload
Hide
company_id
integer
Required
Unique identifier of the company for which this event is triggered.
contains
array of string
Required
List of top-level keys present in the payload object for this event.
region
string
Geographic region in which this event was triggered.
zone
string
Zone in which this event was triggered.
event
object
Required
Show
payload
object
Required
Show
Payload Schema JSON
1{2 "type": "object",3 "required": [4 "company_id",5 "contains",6 "event",7 "payload"8 ],9 "properties": {10 "company_id": {11 "type": "integer",12 "description": "Unique identifier of the company for which this event is triggered."13 },14 "contains": {15 "type": "array",16 "description": "List of top-level keys present in the payload object for this event.",17 "items": {18 "type": "string"19 }20 },21 "region": {22 "type": "string",23 "description": "Geographic region in which this event was triggered.",24 "example": "asia-south1"25 },26 "zone": {27 "type": "string",28 "description": "Zone in which this event was triggered.",29 "example": "default"30 },31 "event": {32 "type": "object",33 "required": [34 "category",35 "created_timestamp",36 "id",37 "name",38 "trace_id",39 "type",40 "version"41 ],42 "properties": {43 "category": {44 "type": "string",45 "description": "Scope of the event, indicating whether it was triggered at the sales channel level or the company level."46 },47 "created_timestamp": {48 "type": "integer",49 "description": "Timestamp indicating when the event was generated, in epoch milliseconds."50 },51 "id": {52 "type": "string",53 "description": "Unique identifier for the event. Use this ID to check whether the event has already been processed, to avoid duplicate handling."54 },55 "name": {56 "type": "string",57 "description": "Name of the event."58 },59 "trace_id": {60 "type": "array",61 "description": "List of internal trace identifiers used by Fynd Commerce services.",62 "items": {63 "type": "string"64 }65 },66 "type": {67 "type": "string",68 "description": "Action that triggered the event, such as create, update, or delete."69 },70 "version": {71 "type": "string",72 "description": "Version of the event schema."73 },74 "referer": {75 "type": "string",76 "description": "Source that triggered the event, typically the domain of the originating request.",77 "example": "fynd.com"78 }79 }80 },81 "payload": {82 "type": "object",83 "required": [84 "product-size"85 ],86 "properties": {87 "product-size": {88 "description": "List of product size records affected by this event.",89 "type": "array",90 "items": {91 "type": "object",92 "required": [93 "seller_identifier",94 "item_code",95 "price",96 "identifiers",97 "size",98 "company_id",99 "currency",100 "brand_uid"101 ],102 "properties": {103 "seller_identifier": {104 "type": "string",105 "description": "The identifier of the seller for the product"106 },107 "brand_uid": {108 "type": "integer",109 "description": "The ID of the brand the product belongs to"110 },111 "item_code": {112 "type": "string",113 "description": "The unique item code of the product",114 "x-not-enum": true115 },116 "price": {117 "type": "number",118 "description": "Price of the item"119 },120 "price_transfer": {121 "type": "number",122 "description": "Transfer price of the item"123 },124 "identifiers": {125 "type": "array",126 "description": "List of identifiers for the product",127 "items": {128 "type": "object",129 "properties": {130 "gtin_type": {131 "type": "string",132 "description": "GTIN type",133 "enum": [134 "sku_code",135 "ean",136 "upc",137 "alu",138 "isbn",139 "vendor_sku"140 ]141 },142 "gtin_value": {143 "type": "string",144 "description": "GTIN value"145 },146 "primary": {147 "type": "boolean",148 "description": "Whether the identifier is primary or not"149 }150 }151 }152 },153 "is_set": {154 "type": "boolean",155 "description": "Whether the product is a set of multiple items or not"156 },157 "size": {158 "type": "string",159 "description": "Size of the item"160 },161 "track_inventory": {162 "type": "boolean",163 "description": "Whether to track inventory for the product or not"164 },165 "price_effective": {166 "type": "number",167 "description": "Effective price of the item"168 },169 "company_id": {170 "type": "integer",171 "description": "Unique identifier of the company the product belongs to"172 },173 "currency": {174 "type": "string",175 "description": "Currency used for pricing the product"176 },177 "return_config": {178 "type": "object",179 "required": [180 "returnable"181 ],182 "properties": {183 "returnable": {184 "type": "boolean",185 "description": "Indicates whether the product is returnable or not"186 },187 "time": {188 "type": "integer",189 "description": "Time duration for returns"190 },191 "unit": {192 "type": "string",193 "description": "Unit of time for return duration"194 },195 "allow_partial_return": {196 "type": "boolean",197 "description": "Flag indicating if a partial return of the bundle child product is allowed."198 }199 },200 "description": "Return configuration for the product"201 },202 "is_active": {203 "type": "boolean",204 "description": "Whether the product is currently active or not"205 },206 "trader": {207 "type": "array",208 "description": "Trader information",209 "items": {210 "type": "object",211 "required": [212 "address",213 "type",214 "name"215 ],216 "properties": {217 "address": {218 "type": "array",219 "items": {220 "type": "string"221 },222 "description": "The address of the trader"223 },224 "type": {225 "type": "string",226 "description": "Type of trader"227 },228 "name": {229 "type": "string",230 "description": "Name of the trader"231 }232 },233 "description": "Trader information"234 }235 },236 "item_id": {237 "type": "integer",238 "description": "Unique identifier of the item"239 },240 "dimensions": {241 "type": "object",242 "description": "Dimensions of the item",243 "properties": {244 "item_length": {245 "type": "number",246 "description": "Length of the item in centimeters"247 },248 "item_width": {249 "type": "number",250 "description": "Width of the item in centimeters"251 },252 "item_height": {253 "type": "number",254 "description": "Height of the item in centimeters"255 },256 "item_weight": {257 "type": "number",258 "description": "Weight of the item in grams"259 },260 "item_weight_unit_of_measure": {261 "type": "string",262 "description": "Unit of measure for the item's weight (e.g., \"gram\")"263 },264 "item_dimensions_unit_of_measure": {265 "type": "string",266 "description": "Unit of measure for the item's dimensions (e.g., \"cm\")"267 }268 }269 },270 "tax_identifier": {271 "type": "object",272 "description": "Tax identifier for the product",273 "properties": {274 "hsn_code_id": {275 "type": "string",276 "description": "Unique identifier of the HSN code associated with the tax"277 }278 }279 },280 "_custom_json": {281 "type": "object",282 "description": "Custom JSON data for the product"283 },284 "created_on": {285 "type": "string",286 "format": "date-time",287 "description": "The date and time when the product size was created"288 },289 "modified_on": {290 "type": "string",291 "format": "date-time",292 "description": "The date and time when the product size was last modified"293 },294 "modified_by": {295 "type": "object",296 "description": "Details of the user who last modified the product size",297 "properties": {298 "user_id": {299 "type": "string",300 "description": "Unique identifier of the user who last modified the product size"301 },302 "super_user": {303 "type": "boolean",304 "description": "Indicates if the user is a super user"305 }306 }307 },308 "size_priority": {309 "type": "integer",310 "description": "Priority of the size for display purposes"311 },312 "_id": {313 "type": "string",314 "description": "Unique identifier for the company product size"315 },316 "use_individual_product_packaging": {317 "type": "boolean",318 "description": "Flag indicating if individual product packaging should be used instead of bundle packaging"319 }320 }321 }322 }323 }324 }325 }326}
Payload Example
1{2 "event": {3 "category": "company",4 "created_timestamp": 1712153363458,5 "id": "LwLNywt40aw0FZSrK9CdnSo35J/3EWZnxnFT93dNyI8=",6 "name": "product-size",7 "trace_id": [8 "silverbolt.c5cde860-f1c3-11ee-8e32-1670e4e67cd9"9 ],10 "type": "create",11 "version": "2",12 "referer": "fynd.com"13 },14 "company_id": 1202,15 "contains": [16 "product-size"17 ],18 "region": "asia-south1",19 "zone": "default",20 "payload": {21 "product-size": [22 {23 "_custom_json": {},24 "_id": "660d63135ae21da9bedc046f",25 "brand_uid": 6828,26 "company_id": 1202,27 "created_on": "2024-04-03T14:09:23.026532",28 "currency": "INR",29 "dimensions": {30 "item_dimensions_unit_of_measure": "cm",31 "item_height": 10,32 "item_length": 10,33 "item_weight": 200,34 "item_weight_unit_of_measure": "gram",35 "item_width": 1036 },37 "identifiers": [38 {39 "gtin_type": "sku_code",40 "gtin_value": "ABCROHINI",41 "primary": true42 }43 ],44 "is_active": true,45 "is_set": false,46 "item_code": "ITEM123",47 "item_id": 10242321,48 "modified_by": {49 "super_user": false,50 "user_id": "c068a675de437e48d5db3537",51 "username": "test_example_com_12345"52 },53 "modified_on": "2024-04-03T14:09:23.026537",54 "price": 1,55 "price_effective": 1,56 "price_transfer": 0,57 "return_config": {58 "returnable": false,59 "time": 0,60 "unit": "days"61 },62 "seller_identifier": "ABCROHINI",63 "size": "L",64 "tax_identifier": {65 "hsn_code_id": "65fd783dc528d7515782df49"66 },67 "track_inventory": true,68 "trader": [69 {70 "address": [71 "Mumbai, Maharashtra, India"72 ],73 "name": "ABC",74 "type": "Manufacturer"75 }76 ]77 }78 ]79 }80}
Payload
Hide
company_id
integer
Required
Unique identifier of the company for which this event is triggered.
contains
array of string
Required
List of top-level keys present in the payload object for this event.
region
string
Geographic region in which this event was triggered.
zone
string
Zone in which this event was triggered.
event
object
Required
Show
payload
object
Required
Show
Payload Schema JSON
1{2 "type": "object",3 "required": [4 "company_id",5 "contains",6 "event",7 "payload"8 ],9 "properties": {10 "company_id": {11 "type": "integer",12 "description": "Unique identifier of the company for which this event is triggered."13 },14 "contains": {15 "type": "array",16 "description": "List of top-level keys present in the payload object for this event.",17 "items": {18 "type": "string"19 }20 },21 "region": {22 "type": "string",23 "description": "Geographic region in which this event was triggered.",24 "example": "asia-south1"25 },26 "zone": {27 "type": "string",28 "description": "Zone in which this event was triggered.",29 "example": "default"30 },31 "event": {32 "type": "object",33 "required": [34 "category",35 "created_timestamp",36 "id",37 "name",38 "trace_id",39 "type",40 "version"41 ],42 "properties": {43 "category": {44 "type": "string",45 "description": "Scope of the event, indicating whether it was triggered at the sales channel level or the company level."46 },47 "created_timestamp": {48 "type": "integer",49 "description": "Timestamp indicating when the event was generated, in epoch milliseconds."50 },51 "id": {52 "type": "string",53 "description": "Unique identifier for the event. Use this ID to check whether the event has already been processed."54 },55 "name": {56 "type": "string",57 "description": "Name of the event"58 },59 "trace_id": {60 "type": "array",61 "description": "List of internal trace identifiers used by Fynd Commerce services.",62 "items": {63 "type": "string"64 }65 },66 "type": {67 "type": "string",68 "description": "Action that triggered the event, such as create, update, or delete."69 },70 "version": {71 "type": "string",72 "description": "Version of the event schema."73 },74 "referer": {75 "type": "string",76 "description": "Source that triggered the event, typically the domain of the originating request.",77 "example": "fynd.com"78 }79 }80 },81 "payload": {82 "type": "object",83 "required": [84 "product-size"85 ],86 "properties": {87 "product-size": {88 "description": "List of product size records affected by this event.",89 "type": "array",90 "items": {91 "type": "object",92 "required": [93 "seller_identifier",94 "item_code",95 "price",96 "identifiers",97 "size",98 "company_id",99 "currency",100 "brand_uid"101 ],102 "properties": {103 "seller_identifier": {104 "type": "string",105 "description": "Identifier of the seller for the product"106 },107 "brand_uid": {108 "type": "integer",109 "description": "Identifier of the brand the product belongs to"110 },111 "item_code": {112 "type": "string",113 "description": "The unique item code of the product"114 },115 "price": {116 "type": "number",117 "description": "Price of the item"118 },119 "price_transfer": {120 "type": "number",121 "description": "Transfer price of the item"122 },123 "identifiers": {124 "type": "array",125 "description": "List of identifiers for the product",126 "items": {127 "type": "object",128 "properties": {129 "gtin_type": {130 "type": "string",131 "description": "GTIN type",132 "enum": [133 "sku_code",134 "ean",135 "upc",136 "alu",137 "isbn",138 "vendor_sku"139 ]140 },141 "gtin_value": {142 "type": "string",143 "description": "GTIN value"144 },145 "primary": {146 "type": "boolean",147 "description": "Whether the identifier is primary or not"148 }149 }150 }151 },152 "is_set": {153 "type": "boolean",154 "description": "Whether the product is a set of multiple items or not"155 },156 "size": {157 "type": "string",158 "description": "Size of the item"159 },160 "track_inventory": {161 "type": "boolean",162 "description": "Whether to track inventory for the product or not"163 },164 "price_effective": {165 "type": "number",166 "description": "Effective price of the item"167 },168 "company_id": {169 "type": "integer",170 "description": "Identifier of the company the product belongs to"171 },172 "currency": {173 "type": "string",174 "description": "Currency used for pricing the product"175 },176 "dimensions": {177 "type": "object",178 "description": "Dimensions of the item",179 "properties": {180 "item_length": {181 "type": "number",182 "description": "Length of the item in centimeters"183 },184 "item_width": {185 "type": "number",186 "description": "Width of the item in centimeters"187 },188 "item_height": {189 "type": "number",190 "description": "Height of the item in centimeters"191 },192 "item_weight": {193 "type": "number",194 "description": "Weight of the item in grams"195 },196 "item_weight_unit_of_measure": {197 "type": "string",198 "description": "Unit of measure for the item's weight (e.g., \"gram\")"199 },200 "item_dimensions_unit_of_measure": {201 "type": "string",202 "description": "Unit of measure for the item's dimensions (e.g., \"cm\")"203 }204 }205 },206 "_custom_json": {207 "type": "object",208 "description": "Custom JSON data for the product (can contain any key-value pairs)"209 },210 "size_priority": {211 "type": "integer",212 "description": "Priority of the size for display purposes"213 },214 "item_id": {215 "type": "integer",216 "description": "Unique identifier of the item"217 },218 "created_on": {219 "type": "string",220 "format": "date-time",221 "description": "The date and time when the product size was created"222 },223 "modified_on": {224 "type": "string",225 "format": "date-time",226 "description": "The date and time when the product size was last modified"227 },228 "modified_by": {229 "type": "object",230 "description": "Details of the user who last modified the product size.",231 "properties": {232 "user_id": {233 "type": "string",234 "description": "Unique identifier of the user who last modified the product size"235 }236 }237 }238 }239 }240 }241 }242 }243 }244}
Payload Example
1{2 "event": {3 "category": "company",4 "created_timestamp": 1712153387199,5 "id": "OmEm07QXl8nfqOvqB5KLTpmVjBQ7CzoT8q3FULcyqhU=",6 "name": "product-size",7 "trace_id": [8 "silverbolt.d3f47256-f1c3-11ee-b8a2-2aedd5776368"9 ],10 "type": "delete",11 "version": "2",12 "referer": "fynd.com"13 },14 "company_id": 1202,15 "contains": [16 "product-size"17 ],18 "region": "asia-south1",19 "zone": "default",20 "payload": {21 "product-size": [22 {23 "_custom_json": {},24 "_id": "660d63135ae21da9bedc046f",25 "brand_uid": 6828,26 "company_id": 1202,27 "created_on": "2024-04-03T14:09:23.026000",28 "currency": "INR",29 "dimensions": {30 "item_dimensions_unit_of_measure": "cm",31 "item_height": 10,32 "item_length": 10,33 "item_weight": 200,34 "item_weight_unit_of_measure": "gram",35 "item_width": 1036 },37 "identifiers": [38 {39 "gtin_type": "sku_code",40 "gtin_value": "ABCROHINI",41 "primary": true42 }43 ],44 "is_set": false,45 "item_code": "ITEM123",46 "modified_on": "2024-04-03T14:09:23.026000",47 "price": 1,48 "price_effective": 1,49 "price_transfer": 0,50 "seller_identifier": "ABCROHINI",51 "size": "L",52 "track_inventory": true53 }54 ]55 }56}
Payload
Hide
company_id
integer
Required
Unique identifier of the company for which this event is triggered.
contains
array of string
Required
List of top-level keys present in the payload object for this event.
region
string
Geographic region in which this event was triggered.
zone
string
Zone in which this event was triggered.
event
object
Required
Show
payload
object
Required
Show
Payload Schema JSON
1{2 "type": "object",3 "required": [4 "company_id",5 "contains",6 "event",7 "payload"8 ],9 "properties": {10 "company_id": {11 "type": "integer",12 "description": "Unique identifier of the company for which this event is triggered."13 },14 "contains": {15 "type": "array",16 "description": "List of top-level keys present in the payload object for this event.",17 "items": {18 "type": "string"19 }20 },21 "region": {22 "type": "string",23 "description": "Geographic region in which this event was triggered.",24 "example": "asia-south1"25 },26 "zone": {27 "type": "string",28 "description": "Zone in which this event was triggered.",29 "example": "default"30 },31 "event": {32 "type": "object",33 "required": [34 "category",35 "created_timestamp",36 "id",37 "name",38 "trace_id",39 "type",40 "version"41 ],42 "properties": {43 "category": {44 "type": "string",45 "description": "Scope of the event, indicating whether it was triggered at the sales channel (application) level or the company level."46 },47 "created_timestamp": {48 "type": "integer",49 "description": "Timestamp indicating when the event was generated, in epoch milliseconds."50 },51 "id": {52 "type": "string",53 "description": "Unique identifier for the event. Use this ID to check whether the event has already been processed."54 },55 "name": {56 "type": "string",57 "description": "Name of the event"58 },59 "trace_id": {60 "type": "array",61 "description": "List of internal trace identifiers used by Fynd Commerce services.",62 "items": {63 "type": "string"64 }65 },66 "type": {67 "type": "string",68 "description": "Action that triggered the event, such as create, update, or delete."69 },70 "version": {71 "type": "string",72 "description": "Version of the event schema."73 },74 "referer": {75 "type": "string",76 "description": "Source that triggered the event.",77 "example": "fynd.com"78 }79 }80 },81 "payload": {82 "type": "object",83 "required": [84 "product-size"85 ],86 "properties": {87 "product-size": {88 "description": "List of product size records affected by this event.",89 "type": "array",90 "items": {91 "type": "object",92 "required": [93 "seller_identifier",94 "item_code",95 "price",96 "identifiers",97 "size",98 "company_id",99 "currency",100 "brand_uid"101 ],102 "properties": {103 "seller_identifier": {104 "type": "string",105 "description": "Identifier of the seller for the product"106 },107 "brand_uid": {108 "type": "integer",109 "description": "Identifier of the brand the product belongs to"110 },111 "item_code": {112 "type": "string",113 "description": "Unique item code of the product",114 "x-not-enum": true115 },116 "price": {117 "type": "number",118 "description": "Price of the item"119 },120 "price_transfer": {121 "type": "number",122 "description": "Transfer price of the item"123 },124 "identifiers": {125 "type": "array",126 "description": "List of identifiers for the product",127 "items": {128 "type": "object",129 "properties": {130 "gtin_type": {131 "type": "string",132 "description": "GTIN type",133 "enum": [134 "sku_code",135 "ean",136 "upc",137 "alu",138 "isbn",139 "vendor_sku"140 ]141 },142 "gtin_value": {143 "type": "string",144 "description": "GTIN value"145 },146 "primary": {147 "type": "boolean",148 "description": "Whether the identifier is primary or not"149 }150 }151 }152 },153 "is_set": {154 "type": "boolean",155 "description": "Whether the product is a set of multiple items or not"156 },157 "size": {158 "type": "string",159 "description": "Size of the item"160 },161 "track_inventory": {162 "type": "boolean",163 "description": "Whether to track inventory for the product or not"164 },165 "price_effective": {166 "type": "number",167 "description": "Effective price of the item"168 },169 "company_id": {170 "type": "integer",171 "description": "Unique identifier of the company the product belongs to"172 },173 "currency": {174 "type": "string",175 "description": "Currency used for pricing the product"176 },177 "return_config": {178 "type": "object",179 "required": [180 "returnable"181 ],182 "properties": {183 "returnable": {184 "type": "boolean",185 "description": "Indicates whether the product is returnable or not"186 },187 "time": {188 "type": "integer",189 "description": "Time duration for returns"190 },191 "unit": {192 "type": "string",193 "description": "Unit of time for return duration"194 },195 "allow_partial_return": {196 "type": "boolean",197 "description": "Flag indicating if a partial return of the bundle child product is allowed."198 }199 },200 "description": "Return configuration for the product"201 },202 "is_active": {203 "type": "boolean",204 "description": "Whether the product is currently active or not"205 },206 "trader": {207 "type": "array",208 "description": "Trader information",209 "items": {210 "type": "object",211 "required": [212 "address",213 "type",214 "name"215 ],216 "properties": {217 "address": {218 "type": "array",219 "items": {220 "type": "string"221 },222 "description": "The address of the trader"223 },224 "type": {225 "type": "string",226 "description": "The type of trader"227 },228 "name": {229 "type": "string",230 "description": "The name of the trader"231 }232 }233 }234 },235 "item_id": {236 "type": "integer",237 "description": "Unique identifier of the item"238 },239 "dimensions": {240 "type": "object",241 "description": "Dimensions of the item",242 "properties": {243 "item_length": {244 "type": "number",245 "description": "Length of the item in centimeters"246 },247 "item_width": {248 "type": "number",249 "description": "Width of the item in centimeters"250 },251 "item_height": {252 "type": "number",253 "description": "Height of the item in centimeters"254 },255 "item_weight": {256 "type": "number",257 "description": "Weight of the item in grams"258 },259 "item_weight_unit_of_measure": {260 "type": "string",261 "description": "Unit of measure for the item's weight (e.g., \"gram\")"262 },263 "item_dimensions_unit_of_measure": {264 "type": "string",265 "description": "Unit of measure for the item's dimensions (e.g., \"cm\")"266 }267 }268 },269 "tax_identifier": {270 "type": "object",271 "description": "Tax identifier for the product",272 "properties": {273 "hsn_code_id": {274 "type": [275 "string",276 "null"277 ],278 "description": "Unique identifier of the HSN code associated with the tax"279 }280 }281 },282 "_custom_json": {283 "type": "object",284 "description": "Custom JSON data for the product (can contain any key-value pairs)"285 },286 "created_on": {287 "type": "string",288 "format": "date-time",289 "description": "Date and time when the product size was created"290 },291 "modified_on": {292 "type": "string",293 "format": "date-time",294 "description": "Date and time when the product size was last modified"295 },296 "modified_by": {297 "type": "object",298 "description": "Details of the user who last modified the product size",299 "properties": {300 "user_id": {301 "type": "string",302 "description": "Unique identifier of the user who last modified the product size"303 },304 "super_user": {305 "type": "boolean",306 "description": "Indicates if the user is a super user"307 }308 }309 },310 "size_priority": {311 "type": "integer",312 "description": "Priority of the size for display purposes"313 },314 "_id": {315 "type": "string",316 "description": "Unique identifier for the Company Product Size"317 },318 "use_individual_product_packaging": {319 "type": "boolean",320 "description": "Flag indicating if individual product packaging should be used instead of bundle packaging"321 }322 }323 }324 }325 }326 }327 }328}
Payload Example
1{2 "company_id": 61,3 "contains": [4 "product-size"5 ],6 "region": "asia-south1",7 "zone": "default",8 "event": {9 "category": "company",10 "created_timestamp": 1712154264754,11 "id": "jacASbiBamNt03oJY8fhPR3jldli6MvEKUI4V7BuF0s=",12 "name": "product-size",13 "trace_id": [14 "silverbolt.df04b82a-f1c5-11ee-9e4c-763a730613a4"15 ],16 "type": "update",17 "version": "2",18 "referer": "fynd.com"19 },20 "payload": {21 "product-size": [22 {23 "_id": "632b032b75cc43f40b76dd09",24 "brand_uid": 9,25 "company_id": 61,26 "currency": "INR",27 "dimensions": {28 "item_dimensions_unit_of_measure": "cm",29 "item_height": 10,30 "item_length": 25,31 "item_weight": 999,32 "item_weight_unit_of_measure": "gram",33 "item_width": 1534 },35 "identifiers": [36 {37 "gtin_type": "upc",38 "gtin_value": "4062449708363",39 "primary": true40 }41 ],42 "is_active": false,43 "is_set": false,44 "item_code": "59647801",45 "item_id": 1166914,46 "modified_by": {47 "super_user": false,48 "user_id": "2a47b6bea80fa72b90894a6f"49 },50 "price": 1999,51 "price_effective": 999.5,52 "price_transfer": 0,53 "return_config": {54 "returnable": true,55 "time": 7,56 "unit": "days"57 },58 "seller_identifier": "4062449708363",59 "size": "S",60 "tax_identifier": {61 "hsn_code_id": "6277837c5e4c6fdbc8be3e93"62 },63 "track_inventory": true,64 "trader": [65 {66 "address": [67 "dummy data"68 ],69 "name": "PUMA Sports India Private Limited",70 "type": "Manufacturer"71 }72 ]73 },74 {75 "_id": "632b032b75cc43f40b76dd0a",76 "brand_uid": 9,77 "company_id": 61,78 "currency": "INR",79 "dimensions": {80 "item_dimensions_unit_of_measure": "cm",81 "item_height": 10,82 "item_length": 25,83 "item_weight": 999,84 "item_weight_unit_of_measure": "gram",85 "item_width": 1586 },87 "identifiers": [88 {89 "gtin_type": "upc",90 "gtin_value": "4062449708370",91 "primary": true92 }93 ],94 "is_active": false,95 "is_set": false,96 "item_code": "59647801",97 "item_id": 1166914,98 "modified_by": {99 "super_user": false,100 "user_id": "2a47b6bea80fa72b90894a6f",101 "username": "test_example_com_12345"102 },103 "price": 1999,104 "price_effective": 999.5,105 "price_transfer": 0,106 "return_config": {107 "returnable": true,108 "time": 7,109 "unit": "days"110 },111 "seller_identifier": "4062449708370",112 "size": "M",113 "tax_identifier": {114 "hsn_code_id": "6277837c5e4c6fdbc8be3e93"115 },116 "track_inventory": true,117 "trader": [118 {119 "address": [120 "dummy data"121 ],122 "name": "PUMA Sports India Private Limited",123 "type": "Manufacturer"124 }125 ]126 },127 {128 "_id": "632b032b75cc43f40b76dd0b",129 "brand_uid": 9,130 "company_id": 61,131 "currency": "INR",132 "dimensions": {133 "item_dimensions_unit_of_measure": "cm",134 "item_height": 10,135 "item_length": 25,136 "item_weight": 999,137 "item_weight_unit_of_measure": "gram",138 "item_width": 15139 },140 "identifiers": [141 {142 "gtin_type": "upc",143 "gtin_value": "4062449708332",144 "primary": true145 }146 ],147 "is_active": false,148 "is_set": false,149 "item_code": "59647801",150 "item_id": 1166914,151 "modified_by": {152 "super_user": false,153 "user_id": "2a47b6bea80fa72b90894a6f",154 "username": "test_example_com_12345"155 },156 "price": 1999,157 "price_effective": 999.5,158 "price_transfer": 0,159 "return_config": {160 "returnable": true,161 "time": 7,162 "unit": "days"163 },164 "seller_identifier": "4062449708332",165 "size": "L",166 "tax_identifier": {167 "hsn_code_id": "6277837c5e4c6fdbc8be3e93"168 },169 "track_inventory": true,170 "trader": [171 {172 "address": [173 "dummy data"174 ],175 "name": "PUMA Sports India Private Limited",176 "type": "Manufacturer"177 }178 ]179 },180 {181 "_id": "632b032b75cc43f40b76dd0c",182 "brand_uid": 9,183 "company_id": 61,184 "currency": "INR",185 "dimensions": {186 "item_dimensions_unit_of_measure": "cm",187 "item_height": 10,188 "item_length": 25,189 "item_weight": 999,190 "item_weight_unit_of_measure": "gram",191 "item_width": 15192 },193 "identifiers": [194 {195 "gtin_type": "upc",196 "gtin_value": "4062449708349",197 "primary": true198 }199 ],200 "is_active": false,201 "is_set": false,202 "item_code": "59647801",203 "item_id": 1166914,204 "modified_by": {205 "super_user": false,206 "user_id": "2a47b6bea80fa72b90894a6f",207 "username": "test_example_com_12345"208 },209 "price": 1999,210 "price_effective": 999.5,211 "price_transfer": 0,212 "return_config": {213 "returnable": true,214 "time": 7,215 "unit": "days"216 },217 "seller_identifier": "4062449708349",218 "size": "XL",219 "tax_identifier": {220 "hsn_code_id": "6277837c5e4c6fdbc8be3e93"221 },222 "track_inventory": true,223 "trader": [224 {225 "address": [226 "dummy data"227 ],228 "name": "PUMA Sports India Private Limited",229 "type": "Manufacturer"230 }231 ]232 }233 ]234 }235}