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/create/v3
# Triggered when a new product is created for a company.
company/product/update/v3
# Triggered when an existing product is updated for a company.
company/product/delete/v3
# Triggered when a product is deleted for a company.
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.",77 "example": "fynd.com"78 }79 }80 },81 "payload": {82 "type": "object",83 "required": [84 "product"85 ],86 "properties": {87 "product": {88 "type": "object",89 "required": [90 "name",91 "return_config",92 "product_publish",93 "is_dependent",94 "no_of_boxes",95 "company_id",96 "uid",97 "template_tag",98 "category_uid",99 "item_code",100 "multi_size",101 "is_set",102 "brand_uid",103 "is_active",104 "is_image_less_product",105 "custom_order",106 "tax_identifier",107 "country_of_origin",108 "item_type",109 "departments",110 "slug"111 ],112 "properties": {113 "currency": {114 "type": "string",115 "description": "Currency of the product."116 },117 "product_group_tag": {118 "type": "array",119 "description": "Tag associated with the product group.",120 "items": {121 "type": "string"122 }123 },124 "name": {125 "type": "string",126 "description": "Name of the product."127 },128 "tags": {129 "type": "array",130 "description": "List of tags associated with the product.",131 "items": {132 "type": "string"133 }134 },135 "slug": {136 "type": "string",137 "description": "Unique slug for the product."138 },139 "variant_media": {140 "type": "object",141 "additionalProperties": true,142 "description": "A dictionary of media files associated with each variant of the product."143 },144 "teaser_tag": {145 "type": "object",146 "description": "Teaser tag for the product."147 },148 "trader": {149 "type": "array",150 "items": {151 "type": "object",152 "required": [153 "address",154 "type",155 "name"156 ],157 "properties": {158 "address": {159 "type": "array",160 "items": {161 "type": "string"162 }163 },164 "type": {165 "type": "string",166 "description": "Type of trader (e.g., Manufacturer, Importer, Packer)"167 },168 "name": {169 "type": "string",170 "description": "Name of the trader"171 }172 }173 },174 "description": "Trader associated with the product."175 },176 "description": {177 "type": "string",178 "description": "Description of the product."179 },180 "return_config": {181 "type": "object",182 "required": [183 "returnable"184 ],185 "properties": {186 "returnable": {187 "type": "boolean",188 "description": "Flag indicating if the product is returnable or not."189 },190 "time": {191 "type": "integer",192 "description": "The time within which the product can be returned, in the specified time unit."193 },194 "unit": {195 "type": "string",196 "description": "The unit of time used to measure the time within which the product can be returned."197 },198 "allow_partial_return": {199 "type": "boolean",200 "description": "Flag indicating if a partial return of the bundle child product is allowed."201 }202 },203 "description": "Return policy information for the product."204 },205 "departments": {206 "type": "array",207 "items": {208 "type": "integer",209 "description": "Department IDs associated with the product"210 },211 "description": "List of department IDs associated with the product."212 },213 "product_publish": {214 "type": "object",215 "required": [216 "product_online_date",217 "is_set"218 ],219 "properties": {220 "product_online_date": {221 "type": "string",222 "description": "Unix timestamp indicating the date and time when the product was published online."223 },224 "is_set": {225 "type": "boolean",226 "description": "Flag to indicate if the product is published online or not."227 }228 },229 "description": "Information about the product publication status."230 },231 "is_dependent": {232 "type": "boolean",233 "description": "Flag to indicate if the product is dependent on other products or not."234 },235 "highlights": {236 "type": "array",237 "items": {238 "type": "string"239 },240 "description": "A list of highlights or special features associated with the product."241 },242 "size_guide": {243 "type": "string",244 "description": "URL to the size guide for the product."245 },246 "no_of_boxes": {247 "type": "integer",248 "description": "Number of boxes containing the product."249 },250 "company_id": {251 "type": "integer",252 "description": "ID of the company associated with the product."253 },254 "variants": {255 "type": "object",256 "additionalProperties": true,257 "description": "A dictionary of product variants, where the keys are variant names and the values are variant details."258 },259 "category_slug": {260 "type": "string",261 "description": "Slug of the category associated with the product."262 },263 "media": {264 "type": "array",265 "items": {266 "type": "object",267 "properties": {268 "type": {269 "type": "string"270 },271 "url": {272 "type": "string"273 }274 }275 },276 "description": "List of media information associated with the product."277 },278 "uid": {279 "type": "integer",280 "description": "The unique identifier of the product."281 },282 "template_tag": {283 "type": "string",284 "description": "The tag used for the product template."285 },286 "short_description": {287 "type": "string",288 "description": "A short description of the product, limited to 50 characters."289 },290 "category_uid": {291 "type": "integer",292 "description": "The unique identifier of the category that the product belongs to."293 },294 "item_code": {295 "type": "string",296 "description": "Item code for the product."297 },298 "multi_size": {299 "type": "boolean",300 "description": "Flag to indicate if the product has multiple sizes or not."301 },302 "is_set": {303 "type": "boolean",304 "description": "Flag to indicate if the product is a set or not."305 },306 "net_quantity": {307 "description": "Net quantity details for the product.",308 "type": "object",309 "properties": {310 "unit": {311 "type": "string",312 "description": "Specifies the unit of measurement for the net quantity."313 },314 "value": {315 "type": "number",316 "description": "The numerical value representing the net quantity of the product"317 }318 }319 },320 "brand_uid": {321 "type": "integer",322 "description": "Unique ID of the brand associated with the product."323 },324 "is_active": {325 "type": "boolean",326 "description": "A boolean indicating whether the product is currently active or not."327 },328 "is_image_less_product": {329 "type": "boolean",330 "description": "Flag to indicate if the product has no image or not."331 },332 "attributes": {333 "type": "object",334 "additionalProperties": true,335 "description": "Attributes of the product."336 },337 "custom_order": {338 "type": "object",339 "required": [340 "manufacturing_time_unit",341 "is_custom_order",342 "manufacturing_time"343 ],344 "properties": {345 "manufacturing_time_unit": {346 "type": "string",347 "description": "The unit of time used to measure the time required to manufacture the product."348 },349 "is_custom_order": {350 "type": "boolean",351 "description": "Flag indicating if the product is a custom order or not."352 },353 "manufacturing_time": {354 "type": "integer",355 "description": "The time required to manufacture the product, in the specified time unit."356 }357 },358 "description": "Custom order information for the product."359 },360 "tax_identifier": {361 "type": "object",362 "properties": {363 "hsn_code": {364 "type": [365 "string",366 "null"367 ],368 "description": "The HSN (Harmonized System of Nomenclature) code associated with the product."369 },370 "hsn_code_id": {371 "type": [372 "string",373 "null"374 ],375 "description": "ID of the HSN code associated with the product."376 },377 "reporting_hsn": {378 "type": [379 "string",380 "null"381 ],382 "description": "Reporting HSN for the product."383 },384 "tax_rule_id": {385 "type": "string",386 "description": "ID of the tax rule associated with the product."387 }388 },389 "description": "Tax identifier for the product."390 },391 "hs_code": {392 "type": [393 "string",394 "null"395 ],396 "description": "The HS Code (Harmonized System of Nomenclature) code associated with the product."397 },398 "country_of_origin": {399 "type": "string",400 "description": "Country of origin for the product."401 },402 "item_type": {403 "type": "string",404 "description": "Type of the product."405 },406 "_custom_json": {407 "type": "object",408 "description": "A dictionary of custom JSON data associated with the product."409 },410 "bundle_details": {411 "type": "array",412 "description": "An array of bundle child SKU details. This will have the child SKUs along with the net quantity used in bundle formation.",413 "items": {414 "type": "object",415 "properties": {416 "is_base": {417 "type": "boolean",418 "description": "A flag that determines if the child product is the base product of the bundle."419 },420 "seller_identifier": {421 "type": "string",422 "description": "Seller identifier of the bundle child product."423 },424 "net_quantity": {425 "type": "number",426 "description": "Net quantity of the bundle child product."427 }428 }429 }430 },431 "use_individual_product_packaging": {432 "type": "boolean",433 "description": "Flag indicating if individual product packaging should be used instead of bundle packaging."434 }435 },436 "description": "Information about a product."437 }438 }439 }440 }441}
Payload Example
1{2 "event": {3 "trace_id": [4 "silverbolt.e5d3d4ae-f23a-11ee-8e32-1670e4e67cd9"5 ],6 "name": "product",7 "type": "create",8 "version": "3",9 "created_timestamp": 1712204527295,10 "id": "IzF6aoBVaTMBlGX+k1wGXf0ZVwfcSY5I9BYU8X0VGEA=",11 "category": "company",12 "referer": "fynd.com"13 },14 "company_id": 7053,15 "contains": [16 "product"17 ],18 "region": "asia-south1",19 "zone": "default",20 "payload": {21 "product": {22 "media": [23 {24 "url": "https://cdn.fynd.com/v2/falling-surf-7c8bb8/fyprod/wrkr/products/pictures/item/free/original/Lgc3jeZ-H-Hanging_Light.jpeg",25 "type": "image"26 }27 ],28 "trader": [29 {30 "address": [31 "TEST"32 ],33 "type": "Manufacturer",34 "name": "TEST"35 }36 ],37 "item_code": "HANGI_001NG",38 "is_active": true,39 "name": "Hanging_Light",40 "currency": "INR",41 "short_description": "",42 "custom_order": {43 "is_custom_order": false,44 "manufacturing_time_unit": "days",45 "manufacturing_time": 046 },47 "company_id": 7053,48 "template_tag": "led-lights",49 "size_guide": "",50 "attributes": {},51 "description": "",52 "_custom_json": {},53 "no_of_boxes": 1,54 "teaser_tag": {},55 "product_publish": {56 "product_online_date": "2024-04-04T04:22:05.148000+00:00",57 "is_set": false58 },59 "uid": 10242364,60 "is_dependent": false,61 "item_type": "standard",62 "variants": {},63 "return_config": {64 "returnable": false,65 "unit": "days",66 "time": 067 },68 "slug": "hanginglight",69 "departments": [70 3271 ],72 "tags": [],73 "product_group_tag": [],74 "is_set": false,75 "country_of_origin": "India",76 "is_image_less_product": false,77 "category_slug": "Hanging--Light",78 "highlights": [],79 "multi_size": false,80 "category_uid": 3750,81 "brand_uid": 5989,82 "variant_media": {},83 "tax_identifier": {84 "hsn_code_id": "64e8aa91d87af8902bc12c0b",85 "hsn_code": "94051900",86 "reporting_hsn": "94051900H1",87 "tax_rule_id": "64e8aa91d87af8902bc12c0b"88 },89 "hs_code": "94051900",90 "net_quantity": {}91 }92 }93}
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.",77 "example": "fynd.com"78 }79 }80 },81 "payload": {82 "type": "object",83 "required": [84 "product"85 ],86 "properties": {87 "product": {88 "type": "object",89 "required": [90 "name",91 "return_config",92 "is_dependent",93 "no_of_boxes",94 "company_id",95 "uid",96 "template_tag",97 "category_uid",98 "item_code",99 "multi_size",100 "is_set",101 "brand_uid",102 "is_active",103 "is_image_less_product",104 "custom_order",105 "tax_identifier",106 "country_of_origin",107 "item_type",108 "departments",109 "slug"110 ],111 "properties": {112 "currency": {113 "type": "string",114 "description": "Currency of the product."115 },116 "product_group_tag": {117 "type": "array",118 "description": "Tag associated with the product group.",119 "items": {120 "type": "string"121 }122 },123 "name": {124 "type": "string",125 "description": "Name of the product."126 },127 "tags": {128 "type": "array",129 "description": "List of tags associated with the product.",130 "items": {131 "type": "string"132 }133 },134 "slug": {135 "type": "string",136 "description": "Unique slug for the product."137 },138 "variant_media": {139 "type": "object",140 "additionalProperties": true,141 "description": "A dictionary of media files associated with each variant of the product."142 },143 "teaser_tag": {144 "type": "object",145 "description": "Teaser tag for the product."146 },147 "trader": {148 "type": "array",149 "items": {150 "type": "object",151 "required": [152 "address",153 "type",154 "name"155 ],156 "properties": {157 "address": {158 "type": "array",159 "items": {160 "type": "string"161 }162 },163 "type": {164 "type": "string",165 "description": "Type of trader (e.g., Manufacturer, Importer, Packer)"166 },167 "name": {168 "type": "string",169 "description": "Name of the trader"170 }171 },172 "description": "Details of traders associated with the product"173 },174 "description": "Trader associated with the product."175 },176 "description": {177 "type": "string",178 "description": "Description of the product."179 },180 "return_config": {181 "type": "object",182 "required": [183 "returnable"184 ],185 "properties": {186 "returnable": {187 "type": "boolean",188 "description": "Flag indicating if the product is returnable or not."189 },190 "time": {191 "type": "integer",192 "description": "The time within which the product can be returned, in the specified time unit."193 },194 "unit": {195 "type": "string",196 "description": "The unit of time used to measure the time within which the product can be returned."197 },198 "allow_partial_return": {199 "type": "boolean",200 "description": "Flag indicating if a partial return of the bundle child product is allowed."201 }202 },203 "description": "Return policy information for the product."204 },205 "departments": {206 "type": "array",207 "items": {208 "type": "integer",209 "description": "Departments associated with the product"210 },211 "description": "List of department IDs associated with the product."212 },213 "product_publish": {214 "type": "object",215 "required": [216 "product_online_date",217 "is_set"218 ],219 "properties": {220 "product_online_date": {221 "type": "string",222 "description": "Unix timestamp indicating the date and time when the product was published online."223 },224 "is_set": {225 "type": "boolean",226 "description": "Flag to indicate if the product is published online or not."227 }228 },229 "description": "Information about the product publication status."230 },231 "is_dependent": {232 "type": "boolean",233 "description": "Flag to indicate if the product is dependent on other products or not."234 },235 "highlights": {236 "type": "array",237 "items": {238 "type": "string",239 "description": "Highlights or features of the product"240 },241 "description": "A list of highlights or special features associated with the product."242 },243 "change_request_id": {244 "type": "string",245 "description": "ID of the change request associated with the product update."246 },247 "size_guide": {248 "type": "string",249 "description": "URL to the size guide for the product."250 },251 "no_of_boxes": {252 "type": "integer",253 "description": "Number of boxes containing the product."254 },255 "company_id": {256 "type": "integer",257 "description": "ID of the company associated with the product."258 },259 "variants": {260 "type": "object",261 "additionalProperties": true,262 "description": "A dictionary of product variants, where the keys are variant names and the values are variant details."263 },264 "category_slug": {265 "type": "string",266 "description": "Slug of the category associated with the product."267 },268 "media": {269 "type": "array",270 "items": {271 "type": "object",272 "properties": {273 "type": {274 "type": "string"275 },276 "url": {277 "type": "string"278 }279 },280 "description": "Media URLs associated with the product"281 },282 "description": "List of media information associated with the product."283 },284 "uid": {285 "type": "integer",286 "description": "The unique identifier of the product."287 },288 "template_tag": {289 "type": "string",290 "description": "The tag used for the product template."291 },292 "short_description": {293 "type": "string",294 "description": "A short description of the product, limited to 50 characters."295 },296 "category_uid": {297 "type": "integer",298 "description": "The unique identifier of the category that the product belongs to."299 },300 "item_code": {301 "type": "string",302 "description": "Item code for the product."303 },304 "multi_size": {305 "type": "boolean",306 "description": "Flag to indicate if the product has multiple sizes or not."307 },308 "is_set": {309 "type": "boolean",310 "description": "Flag to indicate if the product is a set or not."311 },312 "net_quantity": {313 "description": "Net quantity details for the product.",314 "type": "object",315 "properties": {316 "unit": {317 "type": "string",318 "description": "Specifies the unit of measurement for the net quantity."319 },320 "value": {321 "type": "number",322 "description": "The numerical value representing the net quantity of the product"323 }324 }325 },326 "brand_uid": {327 "type": "integer",328 "description": "Unique ID of the brand associated with the product."329 },330 "is_active": {331 "type": "boolean",332 "description": "A boolean indicating whether the product is currently active or not."333 },334 "is_image_less_product": {335 "type": "boolean",336 "description": "Flag to indicate if the product has no image or not."337 },338 "attributes": {339 "type": "object",340 "additionalProperties": true,341 "description": "Attributes of the product."342 },343 "custom_order": {344 "type": "object",345 "required": [346 "manufacturing_time_unit",347 "is_custom_order",348 "manufacturing_time"349 ],350 "properties": {351 "manufacturing_time_unit": {352 "type": "string",353 "description": "The unit of time used to measure the time required to manufacture the product."354 },355 "is_custom_order": {356 "type": "boolean",357 "description": "Flag indicating if the product is a custom order or not."358 },359 "manufacturing_time": {360 "type": "integer",361 "description": "The time required to manufacture the product, in the specified time unit."362 }363 },364 "description": "Custom order information for the product."365 },366 "tax_identifier": {367 "type": "object",368 "properties": {369 "hsn_code": {370 "type": [371 "string",372 "null"373 ],374 "description": "The HSN (Harmonized System of Nomenclature) code associated with the product."375 },376 "hsn_code_id": {377 "type": [378 "string",379 "null"380 ],381 "description": "ID of the HSN code associated with the product."382 },383 "reporting_hsn": {384 "type": [385 "string",386 "null"387 ],388 "description": "Reporting HSN for the product."389 },390 "tax_rule_id": {391 "type": "string",392 "description": "ID of the tax rule associated with the product."393 }394 },395 "description": "Tax identifier for the product."396 },397 "hs_code": {398 "type": [399 "string",400 "null"401 ],402 "description": "The HS Code (Harmonized System of Nomenclature) code associated with the product."403 },404 "country_of_origin": {405 "type": "string",406 "description": "Country of origin for the product."407 },408 "item_type": {409 "type": "string",410 "description": "Type of the product."411 },412 "_custom_json": {413 "type": "object",414 "description": "A dictionary of custom JSON data associated with the product."415 },416 "bundle_details": {417 "type": "array",418 "description": "An array of bundle child SKU details. This will have the child SKUs along with the net quantity used in bundle formation.",419 "items": {420 "type": "object",421 "properties": {422 "is_base": {423 "type": "boolean",424 "description": "A flag that determines if the child product is the base product of the bundle."425 },426 "seller_identifier": {427 "type": "string",428 "description": "Seller identifier of the bundle child product."429 },430 "net_quantity": {431 "type": "number",432 "description": "Net quantity of the bundle child product."433 }434 }435 }436 },437 "use_individual_product_packaging": {438 "type": "boolean",439 "description": "Flag indicating if individual product packaging should be used instead of bundle packaging."440 }441 },442 "description": "Information about a product."443 }444 }445 }446 }447}
Payload Example
1{2 "event": {3 "trace_id": [4 "silverbolt.50d4dff6-f1ef-11ee-b8ab-6e67a317dc8d"5 ],6 "name": "product",7 "type": "update",8 "version": "3",9 "created_timestamp": 1712172065067,10 "id": "HIGFyd5dMpB8lxOHoMYx5JOfq/pafoqsCo0/UFzDOMw=",11 "category": "company",12 "referer": "fynd.com"13 },14 "company_id": 6065,15 "contains": [16 "product"17 ],18 "region": "asia-south1",19 "zone": "default",20 "payload": {21 "product": {22 "brand_uid": 7450,23 "category_slug": "sling-bags",24 "name": "What a Click Bestie",25 "attributes": {26 "color": "Pastel Pink",27 "primary_color": "Pink",28 "net-quantity": "1 N",29 "marketer-address": "New Delhi",30 "primary_material": "Plastic",31 "marketer-name": "Pretty Please",32 "essential": "No",33 "gender": [34 "Women"35 ]36 },37 "media": [38 {39 "type": "image",40 "url": "https://cdn.fynd.com/v2/falling-surf-7c8bb8/fyprod/wrkr/products/pictures/item/free/original/RDfLeAu98-What-a-Click-Bestie.jpeg"41 },42 {43 "type": "image",44 "url": "https://cdn.fynd.com/v2/falling-surf-7c8bb8/fyprod/wrkr/products/pictures/item/free/original/oZac3z5Rc-What-a-Click-Bestie.jpeg"45 },46 {47 "type": "image",48 "url": "https://cdn.fynd.com/v2/falling-surf-7c8bb8/fyprod/wrkr/products/pictures/item/free/original/nPP6FhSfs-What-a-Click-Bestie.jpeg"49 }50 ],51 "custom_order": {52 "manufacturing_time_unit": "days",53 "is_custom_order": false,54 "manufacturing_time": 055 },56 "size_guide": "",57 "highlights": [],58 "is_image_less_product": false,59 "return_config": {60 "unit": "days",61 "returnable": false,62 "time": 063 },64 "item_type": "standard",65 "slug": "what-a-click-bestie-9739009",66 "no_of_boxes": 1,67 "is_active": true,68 "uid": 9739009,69 "net_quantity": {},70 "is_set": false,71 "trader": [72 {73 "name": "Pretty Please",74 "type": "Manufacturer",75 "address": [76 "New Delhi"77 ]78 }79 ],80 "template_tag": "bags",81 "variants": {82 "primary_color": [83 "PA-13",84 "PA-12"85 ]86 },87 "departments": [88 2189 ],90 "product_publish": {91 "product_online_date": "2023-11-04T21:42:29.788000+00:00",92 "is_set": false93 },94 "tags": [],95 "company_id": 6065,96 "tax_identifier": {97 "hsn_code": "42021290",98 "hsn_code_id": "6277846d5e4c6fdbc8be5472",99 "reporting_hsn": "42021290H1",100 "tax_rule_id": "6277846d5e4c6fdbc8be5472"101 },102 "hs_code": "42021290",103 "currency": "INR",104 "category_uid": 352,105 "short_description": "",106 "description": "This bag exudes effortless elegance, adding a touch of sophistication to your party look.",107 "item_code": "PA-14",108 "multi_size": true,109 "is_dependent": false,110 "country_of_origin": "India"111 }112 }113}
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 Platform 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"85 ],86 "properties": {87 "product": {88 "type": "object",89 "required": [90 "uid",91 "company_id",92 "brand_uid",93 "item_code"94 ],95 "properties": {96 "uid": {97 "type": "integer",98 "description": "The unique identifier of the product."99 },100 "company_id": {101 "type": "integer",102 "description": "ID of the company associated with the product."103 },104 "archived_by": {105 "type": "object",106 "properties": {107 "user_id": {108 "type": "string",109 "description": "Unique identifier of the user who archived the product."110 }111 },112 "description": "Information about the user who archived the product."113 },114 "brand_uid": {115 "type": "integer",116 "description": "Unique ID of the brand associated with the product."117 },118 "item_code": {119 "type": "string",120 "description": "Item code for the product."121 },122 "archived_on": {123 "type": "string",124 "description": "Timestamp indicating the date and time when the product was archived."125 },126 "trader": {127 "type": "array",128 "items": {129 "type": "object",130 "properties": {131 "address": {132 "type": "array",133 "items": {134 "type": "string"135 }136 },137 "name": {138 "type": "string",139 "description": "Name of the trader"140 },141 "type": {142 "type": "string",143 "description": "Type of trader (e.g., Manufacturer, Importer, Packer)"144 }145 },146 "description": "Details of traders associated with the product"147 },148 "description": "Trader associated with the product."149 }150 },151 "description": "Information about a product."152 }153 }154 }155 }156}
Payload Example
1{2 "event": {3 "trace_id": [4 "silverbolt.cd586c62-f1ce-11ee-aa9a-d6778ce1e347"5 ],6 "name": "product",7 "type": "delete",8 "version": "3",9 "created_timestamp": 1712158100574,10 "id": "dL4VUszr7UM8bPlXQSPqdwrgTY4yKjEF9p/kH0Vc2m0=",11 "category": "company",12 "referer": "fynd.com"13 },14 "company_id": 3523,15 "contains": [16 "product"17 ],18 "region": "asia-south1",19 "zone": "default",20 "payload": {21 "product": {22 "uid": 10124296,23 "company_id": 3523,24 "archived_on": "2024-04-03T15:28:20.571977Z",25 "brand_uid": 5294,26 "archived_by": {27 "user_id": "f4bf0e6837690a325f35609a"28 },29 "item_code": "MJN-KSCN-915-LIGHT BLUE",30 "trader": [31 {32 "address": [33 "Address"34 ],35 "name": "Address",36 "type": "Importer"37 }38 ]39 }40 }41}