InboundTransactionImport

Business ApplicationsE-Business SuiteEnterpriseERPOracle

Properties

Name Type Description
transactionType string Inbound transaction type
tradingPartnerId integer
tradingPartnerSiteId integer
documentDate string
documentData object Transaction-specific document data. Structure varies by transaction type (invoice, ship notice, etc.)
View JSON Schema on GitHub

JSON Schema

ecommerce-gateway-inbound-transaction-import-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InboundTransactionImport",
  "type": "object",
  "properties": {
    "transactionType": {
      "type": "string",
      "description": "Inbound transaction type"
    },
    "tradingPartnerId": {
      "type": "integer"
    },
    "tradingPartnerSiteId": {
      "type": "integer"
    },
    "documentDate": {
      "type": "string"
    },
    "documentData": {
      "type": "object",
      "description": "Transaction-specific document data. Structure varies by transaction type (invoice, ship notice, etc.)"
    }
  }
}