GET
/
v1-preview
/
models
/
international-consignment-note
/
{documentId}
using ABBYY.DocumentAI;
using ABBYY.DocumentAI.Schemas.Components;

var sdk = new DocumentAI(apiKeyAuth: "<YOUR_BEARER_TOKEN_HERE>");

var res = await sdk.Models.InternationalConsignmentNote.GetExtractedFieldsAsync(documentId: "wh23anb5xjf0ntw5taase5qz");

// handle response
{
  "meta": {
    "id": "wh23anb5xjf0ntw5taase5qz",
    "name": "document.jpg",
    "createdAt": "2025-02-07T17:44:06.949Z",
    "model": "international-consignment-note",
    "status": "Processed",
    "pageCount": 10,
    "errors": [
      {
        "message": "Total is required"
      }
    ]
  },
  "fields": {
    "shipper": {
      "name": "Global Exports Ltd",
      "address": "123 Business Park, London, UK EC2A 4PB",
      "country": "United Kingdom",
      "stateOrProvince": "England",
      "city": "London",
      "postalCode": "EC2A 4PB",
      "street": "123 Business Park",
      "signatureAndStamp": "Signed and stamped by Global Exports Ltd"
    },
    "consignee": {
      "name": "US Imports Inc",
      "address": "456 Trade Street, New York, NY 10001",
      "country": "United States",
      "stateOrProvince": "New York",
      "city": "New York",
      "postalCode": "10001",
      "street": "456 Trade Street",
      "signatureAndStamp": "Signed and stamped by US Imports Inc"
    },
    "carrier": {
      "name": "International Freight Services",
      "address": "789 Transport Ave, London, UK EC2A 4PC",
      "country": "United Kingdom",
      "stateOrProvince": "England",
      "city": "London",
      "postalCode": "EC2A 4PC",
      "street": "789 Transport Ave",
      "signatureAndStamp": "Signed and stamped by IFS"
    },
    "successiveCarrier": {
      "name": "US Transport Co",
      "address": "321 Logistics Blvd, New York, NY 10002",
      "country": "United States",
      "stateOrProvince": "New York",
      "city": "New York",
      "postalCode": "10002",
      "street": "321 Logistics Blvd"
    },
    "placeOfDeliveryOfGoods": {
      "address": "456 Trade Street, New York, NY 10001",
      "country": "United States"
    },
    "placeAndDateOfTakingOverOfGoods": {
      "address": "123 Business Park, London, UK EC2A 4PB",
      "country": "United Kingdom",
      "date": "2024-03-15"
    },
    "listOfAnnexedDocuments": [
      "Invoice",
      "Packing List",
      "Certificate of Origin"
    ],
    "lineItems": [
      {
        "marksAndNumbers": "PKG-001",
        "numberOfPackages": 10,
        "typeOfPackaging": "Pallet",
        "natureOfGoods": "Industrial Machinery",
        "hsCode": "848330",
        "grossWeight": 1000,
        "weightUom": "kg",
        "volume": 5,
        "volumeUom": "m3"
      }
    ],
    "totals": {
      "totalNumberOfPackages": 10,
      "totalPackagesUom": "Pallet",
      "totalWeight": 1000,
      "totalWeightUom": "kg",
      "totalVolume": 5,
      "totalVolumeUom": "m3"
    },
    "documentNumber": "CMR-2024-001",
    "placeOfIssue": "London",
    "dateOfIssue": "2024-03-15",
    "loading": {
      "arrivalDate": "2024-03-15",
      "arrivalTime": "09:00:00",
      "departureDate": "2024-03-15",
      "departureTime": "11:00:00"
    },
    "discharge": {
      "arrivalDate": "2024-03-20",
      "arrivalTime": "14:00:00",
      "departureDate": "2024-03-20",
      "departureTime": "16:00:00"
    },
    "termsOfDelivery": "DAP",
    "valueOfGoods": 50000,
    "currency": "USD",
    "sendersInstructions": "Handle with care, temperature controlled",
    "carrierRemarks": "Goods in good condition",
    "specialAgreementsOfCarriage": "Temperature controlled transport required",
    "numberPlate": "UK-12345",
    "trailerNumberPlate": "UK-67890",
    "goodsReceivedDate": "2024-03-15"
  }
}

Authorizations

Authorization
string
header
required

Our API offers authentication via API keys. You can obtain an API key from https://developer.abbyy.com

Path Parameters

documentId
string
required

The id of the document

Response

200
application/json

Extracted International Consignment Note Data Response