List all transactions

Retrieves all transactions of your business

List all transactions.

Lists all transactions related to your business.

get

/transactions

Authorizations
Query parameters
includesany

A comma-separated list of relations to be included in the response. Possible relations are: components, components.supplierBusiness, components.transaction, components.ddsReferences.

Example: components,components.supplierBusiness
Responses
curl -L \
  --url 'https://api.tradeaware.live-eo.com/transactions' \
  --header 'Authorization: Bearer JWT'
[
  {
    "id": "02c36247-1aad-41ba-aa49-f114ca4c263f",
    "status": "DRAFT",
    "customId": "DEC-24-238620",
    "activityType": "EXPORT",
    "countryOfActivity": "IT",
    "isGeoLocationConfidential": "false",
    "components": [
      {
        "id": "02c36247-1aad-41ba-aa49-f114ca4c263f",
        "hsn": "18010000",
        "commodity": "oil palm",
        "quantity": 123.45,
        "unit": "KGM",
        "description": "text",
        "namePairs": [
          {
            "commonName": "soybean",
            "scientificName": "Glycine max"
          }
        ],
        "transactionId": "02c36247-1aad-41ba-aa49-f114ca4c263f",
        "dateOfProduction": "2021-01-01T00:00:00.000Z",
        "endDateOfProduction": "2021-01-01T00:00:00.000Z",
        "createdAt": "2023-07-26T15:03:48Z",
        "updatedAt": "2023-07-28T09:13:37Z",
        "supplierBusiness": {
          "id": "02c36247-1aad-41ba-aa49-f114ca4c263f",
          "email": "user@example.com",
          "name": "Example Inc.",
          "username": "John Doe",
          "addressStreet": "Salawati 143",
          "addressZip": "98451",
          "addressPostcode": "12345",
          "addressArea": "Brandenburg",
          "addressCity": "West Papua",
          "addressCountryCode": "ID",
          "addressCountry": "Indonesia",
          "addressLine1": "Salawati 123",
          "addressLine2": "3rd floor",
          "createdAt": "2023-07-26T15:03:48Z",
          "updatedAt": "2023-07-28T09:13:37Z",
          "initialLocale": "id-ID",
          "units": "metric",
          "plots": "[Circular Reference]",
          "newlyCreated": "true",
          "members": "[Circular Reference]",
          "connectionsAsSource": "[Circular Reference]",
          "connectionsAsTarget": "[Circular Reference]",
          "businessInvitations": "[Circular Reference]",
          "contactPerson": "[Circular Reference]",
          "machineToMachineClientId": "1234567890asdfghjk",
          "eori": "text",
          "vat": "text"
        }
      }
    ],
    "customData": {
      "key1": "someValue",
      "key2": true,
      "key3": 1234
    },
    "createdAt": "2023-07-26T15:03:48Z",
    "updatedAt": "2023-07-28T09:13:37Z"
  }
]

Last updated