enterpriseSync event

This event is published periodically as scheduled in the data publish agent configuration. This event is a batch event where each batch contains the enterpriseSync event. It publishes all the enterprises set up in IBM® Sterling™ Selling and Fulfillment Suite.

Event schema

The enterpriseSync event contains basic information of an enterprise such as enterprise code and address. See the following event schema as an example:
[
{
  "specversion": "1.0",
  "type": "enterpriseSync",
  "id": "enterpriseSync-<timestamp>-<random>",
  "time": "ISO-8601 datetime",
  "datacontenttype": "application/json",
  "tenantid": "string",
  "data": {
    "organizationKey": "string",
    "organizationCode": "string",
    "organizationName": "string",
    "corporatePersonInfo": {
      "addressLine1": "string",
      "addressLine2": "string",
      "city": "string",
      "country": "string",
      "state": "string",
      "zipCode": "string"
    },
    "contactPersonInfo": {
      "addressLine1": "string",
      "addressLine2": "string",
      "city": "string",
      "country": "string",
      "state": "string",
      "zipCode": "string"
    },
    "billingPersonInfo": {
      "addressLine1": "string",
      "addressLine2": "string",
      "city": "string",
      "country": "string",
      "state": "string",
      "zipCode": "string"
    }
  }
}
]