Base URL
https://{tenant}.logzi.com/api/transport_address/
Every request returns a JSON response. On success result.code == 1, on error result.code == 0. The Transport Organization Address API is used to manage transport organization receipts and their associated parcels, download parcel labels, and generate delivery notes.
/api/transport_address/get
Retrieve a single transport organization address record by identifier.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | int | Transport organization address identifier |
Example request
GET /api/transport_address/get?id=1
X-API-KEY: {az_api_kulcsod}
/api/transport_address/list
Paginated list of transport organization address records.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
receipt_id | int | Receipt identifier used for filtering | |
list_offset | int | Pagination offset (default: 0) | |
list_condition | object | Filter conditions object |
Example request
GET /api/transport_address/list?receipt_id=1&list_offset=0
X-API-KEY: {az_api_kulcsod}
/api/transport_address/parcel_list
Retrieve the list of transport organization parcels.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
list_condition | object | Filter conditions object |
Example request
GET /api/transport_address/parcel_list
X-API-KEY: {az_api_kulcsod}
/api/transport_address/parcel_list_light
Retrieve a simplified list of parcels (fewer fields).
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
list_condition | object | Filter conditions object |
Example request
GET /api/transport_address/parcel_list_light
X-API-KEY: {az_api_kulcsod}
/api/transport_address/parcel_receipt_list
Retrieve the list of parcels linked to a receipt.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
list_condition | object | Filter conditions object |
Example request
GET /api/transport_address/parcel_receipt_list
X-API-KEY: {az_api_kulcsod}
/api/transport_address/download
Download the delivery note in PDF format.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
file_type | string | File type (e.g. pdf) | |
receipt_id | int | Receipt identifier | |
receipt_type_id | int | Receipt type identifier | |
language | string | Document language (e.g. hu) | |
language_id | int | Language identifier | |
template_id | int | Print template identifier |
Example request
GET /api/transport_address/download?file_type=pdf&receipt_id=1&language=hu
X-API-KEY: {az_api_kulcsod}
/api/transport_address/download_parcel_label
Download the parcel label in PDF format.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
file_type | string | File type (e.g. pdf) | |
parcel_id | int | Parcel identifier | |
parcel_number | string | Parcel tracking number | |
language | string | Document language (e.g. hu) |
Example request
GET /api/transport_address/download_parcel_label?file_type=pdf&parcel_id=1
X-API-KEY: {az_api_kulcsod}
/api/transport_address/save_parcel
Save parcel data for a transport organization receipt.
POST fields — data object
Provide the parcel data in the data object (transport organization address identifier, weight, dimensions, tracking number).
Example request
POST /api/transport_address/save_parcel
X-API-KEY: {az_api_kulcsod}
Content-Type: application/json
{ "data": { "transport_address_id": 1, "weight": 2.5 } }
Create your account now,
pay later!