Skip to main content

Get Invoice Quantity Codes

base_url: https://firseinvoicedemo.etranzactng.com

Description:: This endpoint returns a list of standardized Unit of Measurement (UoM) codes for invoice line items. It enables the implementation of these values for the price_unit field within the schema/payload (see Validate and Sign Invoice endpoint), thereby aligning with the UN/ECE Recommendation 20 and Recommendation 21 code lists

The introduction of this resource is intended to:

  • Ensure uniformity in quantity and unit representation across invoices
  • Improve validation accuracy during invoice processing
  • Support consistent reporting and downstream analytics
CodeTypeNameDescription
A35Stringcoulomb per square millimetrecoulomb per square millimetre
A36Stringcubic centimetre per molecubic centimetre per mole
A37Stringcubic decimetre per molecubic decimetre per mole
A38Stringcubic metre per coulombcubic metre per coulomb
A39Stringcubic metre per kilogramcubic metre per kilogram
A4Stringampere per square centimetreampere per square centimetre
A40Stringcubic metre per molecubic metre per mole
A41Stringampere per square metreampere per square metre

Sample Request

GET {base_url}/api/v3/resource/invoice-quantity
curl `{base_url}/api/v3/resource/invoice-quantity`
-H "X-API-Key: {{CLIENT_API_KEY}}"
-H "X-API-Signature: {{HMAC_SHA256_SIGNATURE}}"
-H "X-API-Timestamp: {{ISO_20022_TIMESTAMP}}"
'

Sample Response

POST {base_url}/api/v3/resource/invoice-quantity
{
"status": 200,
"message": "SUCCESSFUL",
"data": [
{
"code": "A35",
"name": "coulomb per square millimetre",
"description": "coulomb per square millimetre"
},
{
"code": "A36",
"name": "cubic centimetre per mole",
"description": "cubic centimetre per mole"
},
{
"code": "A37",
"name": "cubic decimetre per mole",
"description": "cubic decimetre per mole"
},
{
"code": "A38",
"name": "cubic metre per coulomb",
"description": "cubic metre per coulomb"
},
{
"code": "A39",
"name": "cubic metre per kilogram",
"description": "cubic metre per kilogram"
},
{
"code": "A4",
"name": "ampere per square centimetre",
"description": "ampere per square centimetre"
},
{
"code": "A40",
"name": "cubic metre per mole",
"description": "cubic metre per mole"
},
{
"code": "A41",
"name": "ampere per square metre",
"description": "ampere per square metre"
}
],
"execTime": 1.2786,
"error": ""
}