Skip to content

Predefined Dimensions

Reference Packaging

AAJ maintains a catalog of standard packaging profiles to speed up quoting and booking. Use these predefined dimensions when creating shipments to ensure accurate volumetric weight calculations.

30+
Package Profiles
Centimeters
Measurement Unit
NGN
Price Currency

Endpoint

GET {{base_url}}/partner/booking/get-predefined-dimensions

cURL

curl -X GET "https://booking.aajexpress.org/api/v2/partner/booking/get-predefined-dimensions" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Response shape (excerpt)

{
  "success": true,
  "data": [
    {
      "_id": "68fb3fa3bec965665202eacf",
      "name": "AAJ Flyer",
      "length": 32,
      "width": 25,
      "height": 2,
      "weight": 0.32,
      "price": 0
    }
  ]
}

Record Structure

Field Type Description
_id string Environment-specific dimension identifier. Use this value in packages.packages[].predefinedDimension when creating a booking
name string Display-ready package name exposed in the AAJ UI
length number Internal length measurement in centimetres
width number Internal width measurement in centimetres
height number Internal height measurement in centimetres
weight number Reference weight in kilograms used for volumetric checks
price number Packaged material price in Nigerian Naira (NGN)

Complete Dimension Catalog

Use the search box to quickly filter by package name or measurement.

Name Length (cm) Width (cm) Height (cm) Weight (kg) Price (NGN)
AAJ Flyer32.025.02.00.320.00
2kg Box28.028.010.02.001500.00
4kg Box44.022.020.54.004000.00
6kg Box41.524.028.06.004000.00
7kg Box45.030.023.07.004000.00
8kg Box40.034.027.58.004000.00
10kg Box (1)39.029.543.010.004000.00
10kg Box (2)44.531.032.510.004000.00
13kg Box47.533.042.513.004000.00
17kg Box38.038.057.017.004000.00
18kg Box58.039.039.018.004000.00
19kg Box67.047.030.019.004000.00
20kg Box58.040.042.020.004000.00
23kg Box54.550.042.023.004000.00
16kg Box59.046.028.016.004000.00
29kg Box58.043.058.029.004000.00
15kg Box59.040.031.015.004000.00
11kg Box59.039.022.011.004000.00
5kg Box35.027.017.05.004000.00
3kg Box35.030.014.03.004000.00
8kg Box (2)52.038.020.08.004000.00
21kg Box60.040.042.021.004000.00
5kg Box (2)35.028.022.05.004000.00
9kg Box52.038.022.09.004000.00
14kg Box52.038.034.014.004000.00
12kg Box50.038.029.012.004000.00
AAJ Flyer 21.01.01.00.650.00
13kg-free55.044.025.013.000.00
19kg-free56.040.042.019.000.00
17kg-free56.039.037.017.000.00
18kg-free56.039.037.018.000.00

Implementation Note

Store these definitions in a shared configuration service or seed script so quoting, booking, and warehouse tooling resolve the same identifiers.

Environment-specific IDs

Do not hardcode predefined dimension IDs across environments. Always fetch dimensions from get-predefined-dimensions in the current environment and use the returned _id value.