Skip to main content

Payload

{
  "event": "store.updated",
  "id": "evt_abc123",
  "created_at": "2025-01-15T14:30:00Z",
  "data": {
    "account": "1",
    "country": "6",
    "stores": [
      {
        "name": "New store 805",
        "active": true,
        "storeId": 805,
        "vendorId": 16,
        "storeCode": "T005",
        "services": [
          {
            "name": "DELIVERY",
            "active": true
          }
        ],
        "schedulesByChannel": [
          {
            "channelId": "0F049503-85CF-E511-80C6-000D3A3261F3",
            "schedules": [
              {
                "day": "FRIDAY",
                "endTime": "22:30",
                "startTime": "10:00"
              }
            ]
          }
        ],
        "taxesInfo": {
          "taxRate": 0,
          "vatRatePercentage": 12
        },
        "contactInfo": {
          "phone": "23955400",
          "address": "PICHINCHA / QUITO / INAQUITO / AV. AMERICA N37-288 Y VILLALENGUA"
        },
        "deliveryInfo": {
          "cookTime": "10",
          "deliveryId": 46356,
          "minimumOrder": "0.00",
          "shippingCost": 1.99
        },
        "locationInfo": {
          "city": "QUITO",
          "latitude": "-0.17250869436401206",
          "longitude": "-78.49125266075134"
        },
        "storeChannels": [
          "0F049503-85CF-E511-80C6-000D3A3261F3"
        ]
      }
    ],
    "channels": [
      {
        "active": true,
        "channel": "Llevar",
        "vendorId": 16,
        "channelId": "0E049503-85CF-E511-80C6-000D3A3261F3",
        "channelReferenceName": "Llevar PICKUP",
        "additionalInfo": {
          "mediaId": "E683B6FE-65A9-4D01-B07B-FA1A3C8BCA8D",
          "mediaName": "PICKUP",
          "relatedLists": [
            {
              "listId": "42203FD3-0194-EA11-80EE-000D3A019254",
              "listName": "PICKUP ECOMMERCE T"
            }
          ]
        }
      }
    ]
  }
}
Each store.updated event represents a single store configuration change. To remove a store, Fire emits a separate store.deleted event. What your system does with the data is up to your integration.

Fields

data

FieldTypeDescription
accountstringAccount identifier — required by downstream systems
countrystringCountry identifier — required by downstream systems
storesobject[]Store configurations
channelsobject[]Channel configurations

data.stores[n]

FieldTypeDescription
namestringStore display name
activebooleanWhether the store is active
storeIdintegerUnique store identifier
vendorIdintegerBrand identifier
storeCodestringStore code
servicesobject[]Available services (e.g. DELIVERY, PICKUP)
schedulesByChannelobject[]Operating hours per channel
taxesInfoobjectTax and VAT configuration
contactInfoobjectPhone and address
deliveryInfoobjectCook time, delivery ID, minimum order, and shipping cost
locationInfoobjectCity, latitude, and longitude
storeChannelsstring[]Channel UUIDs this store is associated with

data.stores[n].services[n]

FieldTypeDescription
namestringService type (DELIVERY, PICKUP, etc.)
activebooleanWhether the service is active

data.stores[n].schedulesByChannel[n]

FieldTypeDescription
channelIdstringChannel UUID
schedulesobject[]List of time windows
schedules[n].daystringDay of the week (e.g. MONDAY, FRIDAY)
schedules[n].startTimestringOpening time in HH:mm format
schedules[n].endTimestringClosing time in HH:mm format

data.stores[n].taxesInfo

FieldTypeDescription
taxRatenumberTax rate
vatRatePercentagenumberVAT rate as a percentage

data.stores[n].contactInfo

FieldTypeDescription
phonestringStore phone number
addressstringStore address

data.stores[n].deliveryInfo

FieldTypeDescription
cookTimestringEstimated preparation time in minutes
deliveryIdintegerDelivery provider identifier
minimumOrderstringMinimum order amount
shippingCostnumberDelivery fee

data.stores[n].locationInfo

FieldTypeDescription
citystringCity name
latitudestringGeographic latitude
longitudestringGeographic longitude

data.channels[n]

FieldTypeDescription
activebooleanWhether the channel is active
channelstringChannel name
vendorIdintegerBrand identifier
channelIdstringUnique channel UUID
channelReferenceNamestringChannel reference name
additionalInfoobjectMedia and related list metadata

data.channels[n].additionalInfo

FieldTypeDescription
mediaIdstringMedia asset UUID
mediaNamestringMedia asset name
relatedListsobject[]Associated lists
relatedLists[n].listIdstringList UUID
relatedLists[n].listNamestringList name

Usage

See Store publication for the full handling guide.