New API v2
The new API v2 are being released, featuring new functionalities and a new, more secure authentication method.
Introduction
APIs provide the possibility to integrate Qapla' both for reading and writing with your own ecommerce system or for an e-commerce to which a plugin or connector has not yet been implemented.
- Qapla' API is based on REST.
- Accepts GET, POST, PUT and DELETE JSON encoded requests.
- Returns JSON encoded values.
- The reference time zone is CEST, which corresponds to UTC + 2 when daylight saving time is in effect, or UTC + 1 when standard time is in effect.
Latest version available
This is the latest version of the APIs. Not all APIs have been migrated to version 1.3 yet; as new features are added, they will be updated.
APIs that haven't been updated yet still refer to version 1.2
Previous versions
Previous versions of this API are still active, but considered as deprecated.Webhook
Qapla' also has a Webhook service which is an integral part of the API.API Key
In oder to use the APIs, it is necessary to know the Private API Keys assigned to your channel(s), available on the Control Panel in the section:Settings > Channels > [CHANNEL_NAME] > "Configure" > Channel > Private API Key
This API key must be protected and kept secret.
Endpoint
https://api.qapla.it/[API_VERSION]/[ENDPOINT]
| [API_VERSION] | It is the version value of the API. |
| [ENDPOINT] | It is the endpoint you need to invoke. |
Response
The JSON response to a Request uses this standard format| [API_NAME] | The name of the API consumed |
| [OK/KO] | OK in case of a positive answer, KO In case of an error |
| [ERROR_MESSAGE] | It is null in case of OK and will contain the error in case of KO |
Rate limiting
The system uses the TokenBucket algorithm with the following parameters:
| Bucket capacity | 120 | Maximum of 120 requests |
|---|---|---|
| Tokens per second | 2 | Refilling at a rate of 2 per second |
A multiple request (e.g. pushShipment or pushOrder with 100 shipments or orders) is evaluated as 100 tokens.
HTTP Response Status Codes
Exceeding the limit will lead to the following HTTP response429 Too Many Requests
and the following response error by any API involved
"error": "Too Many Requests"
Abuse
The abuse of the use will lead to a BAN of the API Key.Sandbox
There isn't any proper sandbox environment. However you can use the sandbox field in the API methods (where supported) to use the test infrastructure, without having operational effects (like costs, picking requests sent to the carries, etc...)Test
Once the API Key has been obtained, a connection test can be immediately performed using the API getChannel.Shipments
- Channel, represented by API Key
- Courier, "courier"
- Tracking number, "trackingNumber"
pushShipment
pushShipment allows you to upload one or more shipments through a POST of data in JSON format.In combination with the Webhook creates an integrated shipping management system.
POSThttps://api.qapla.it/1.3/pushShipment/
Request
In this example, two shipments are loaded, one in "minimum" and one "complete" format.
Parameters
There are 3 types of shipment loading modes.
- "minimum" containing 3 mandatory fields*
- "necessary" to activate additional communication services to the customer such as transactional emails, etc.•
- "complete" always with the first 3 mandatory fields, but containing all the information
*Mandatory parameter
•Parameter required to activate transactional emails and / or SMS
The maximum number of shipments that can be sent for individual request is 100.
| apiKey(string) | The API Key assigned to the channel into which you want to import shipments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| pushShipment(array) |
It is an array of maximum 100 shipments to load.
|
Response Body200
Errors
In case of error, each shipping line will be reported:
getShipment
getShipment allows you to read the status of a shipment through the tracking number, the order reference or the ID.For a total and integrated management of the update cycle of shipments, also evaluate the Webhook.
GEThttps://api.qapla.it/1.3/getShipment/?apiKey=[API_KEY]&trackingNumber=[TRACKING_NUMBER]
GEThttps://api.qapla.it/1.3/getShipment/?apiKey=[API_KEY]&reference=[ORDER_REFERENCE]
GEThttps://api.qapla.it/1.3/getShipment/?apiKey=[API_KEY]&id=[SHIPMENT_ID]
GEThttps://api.qapla.it/1.3/getShipment/?apiKey=[API_KEY]&custom1=[CUSTOM1]
Parameters
| Parameter | Description | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| apiKey*(string) | The API Key assigned to the channel we want to query | Exclusive parameters | |||||||||||||||||||||||
| trackingNumber(string) | The interested tracking number | ||||||||||||||||||||||||
| reference(string) | The order reference | ||||||||||||||||||||||||
| id(int) | Shipment ID | ||||||||||||||||||||||||
| custom1, custom2, custom3(string) | The fields custom1, custom2, custom3 | ||||||||||||||||||||||||
| Optional parameters | |||||||||||||||||||||||||
| lang | The language of the names of the Qapla' status (it, en, es), default: it.
Example: &lang=en |
||||||||||||||||||||||||
| data |
The flag data specifies which and how much data we want to receive, by default it returns minimal data on the progress of the shipment.
The parameter can be combined separated by commas, for example &data=consignee,historyin order to get only these data. |
||||||||||||||||||||||||
Response Body200
Description
| result | The result of the operation: OK or KO in case of error | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| error | The error in case of result: KO | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| version | The API version | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| lang | The required language / transferred as parameter (default: it) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| count | Number of current shipments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shipments |
It is an array that can contain more than one shipment
|
Errors
In case of error the "result" field will contain "KO" and the "error" field the description of the error.{
"getShipment": {
"result": "KO",
"error": "[ERROR_MESSAGE]"
}
}
getShipments
getShipments allows you to receive the list of shipments imported from Qapla' by input date, shipping date, order date.GEThttps://api.qapla.it/1.2/getShipments/?apiKey=[API_KEY]&[DATE]
Parameters
| Parameter | Description |
|---|---|
| apiKey | the API Key assigned to the channel we want to query |
| [DATE]* | |
| shipDate | shipment date in format ISO 8601 "YYYY-MM-DD" |
| orderDate | order date in format ISO 8601 "YYYY-MM-DD" |
| dateIns | upload date in format ISO 8601 "YYYY-MM-DD" |
Response Body200
Description
| result(string) | The result of the operation: OK or KO in case of error | ||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| error(string) | The error in case of result: KO | ||||||||||||||||||||||||||||||||||||||
| version(string) | The API version | ||||||||||||||||||||||||||||||||||||||
| search(string) | The parameter ascribed as search | ||||||||||||||||||||||||||||||||||||||
| count(int) | Number of current shipments | ||||||||||||||||||||||||||||||||||||||
| shipments(array) |
It is an array that can contain more than one shipment
|
Errors
getCompanyShipment
getCompanyShipment allows you to read the status of a shipment in any of a company's channels through the tracking number, the order reference or the ID.For a total and integrated management of the update cycle of shipments, also evaluate the Webhook.
GEThttps://api.qapla.it/1.3/getCompanyShipment/?apiKey=[API_KEY]&trackingNumber=[TRACKING_NUMBER]
GEThttps://api.qapla.it/1.3/getCompanyShipment/?apiKey=[API_KEY]&reference=[ORDER_REFERENCE]
GEThttps://api.qapla.it/1.3/getCompanyShipment/?apiKey=[API_KEY]&id=[SHIPMENT_ID]
GEThttps://api.qapla.it/1.3/getCompanyShipment/?apiKey=[API_KEY]&custom1=[CUSTOM1]
Parameters
| Parameter | Description | ||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| apiKey*(string) | The API Key of any of the company's channels | Exclusive parameters | |||||||||||||||||||||
| trackingNumber(string) | The interested tracking number | ||||||||||||||||||||||
| reference(string) | The order reference | ||||||||||||||||||||||
| id(int) | Shipment ID | ||||||||||||||||||||||
| custom1, custom2, custom3(string) | The fields custom1, custom2, custom3 | ||||||||||||||||||||||
| Optional parameters | |||||||||||||||||||||||
| lang | The language of the names of the Qapla' status (it, en, es), default: it.
Example: &lang=en |
||||||||||||||||||||||
| data |
The flag data specifies which and how much data we want to receive, by default it returns minimal data on the progress of the shipment.
The parameter can be combined separated by commas, for example &data=consignee,historyin order to get only these data. |
||||||||||||||||||||||
Response Body200
Description
| result | The result of the operation: OK or KO in case of error | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| error | The error in case of result: KO | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| version | The API version | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| lang | The required language / transferred as parameter (default: it) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| count | Number of current shipments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shipments |
It is an array that can contain more than one shipment
|
Errors
In case of error the "result" field will contain "KO" and the "error" field the description of the error.{
"getCompanyShipment": {
"result": "KO",
"error": "[ERROR_MESSAGE]"
}
}
getCompanyShipments
getCompanyShipments allows you to receive the list of shipments imported from Qapla' into any of the company's channels by input date, shipping date, order date.GEThttps://api.qapla.it/1.3/getCompanyShipments/?apiKey=[API_KEY]&[DATE]
Parameters
| Parameter | Description | ||||||
|---|---|---|---|---|---|---|---|
| apiKey | the API Key of any of the company's channels | ||||||
| [DATE]* | |||||||
| shipDate | shipment date in format ISO 8601 "YYYY-MM-DD" | ||||||
| orderDate | order date in format ISO 8601 "YYYY-MM-DD" | ||||||
| dateIns | upload date in format ISO 8601 "YYYY-MM-DD" | ||||||
| Optional parameters | |||||||
| lang | The language of the names of the Qapla' status (it, en, es), default: it.
Example: &lang=en |
||||||
| data |
The flag data specifies which and how much data we want to receive, by default it returns minimal data on imported shipments.
&data=history |
||||||
Response Body200
Description
| result(string) | The result of the operation: OK or KO in case of error | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| error(string) | The error in case of result: KO | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| version(string) | The API version | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| search(string) | The parameter ascribed as search | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| count(int) | Number of current shipments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shipments(array) |
It is an array that can contain more than one shipment
|
Errors
updateShipment
updateShipment allows you to update a shipment.PUThttps://api.qapla.it/1.2/updateShipment/
deleteShipment
deteleShipment allows you to delete a shipment.DELETEhttps://api.qapla.it/1.2/deleteShipment/
Parameters
| Parameter | Description |
|---|---|
| apiKey*(string) | the API Key assigned to the channel we want to query |
| courier*(string) | shipment's courier code |
| trackingNumber*(string) | shipment's tracking number |
Response Body200
undeleteShipment
undeleteShipment allows you to restore a shipment.PATCHhttps://api.qapla.it/1.2/undeleteShipment/
Parameters
| Parameter | Description |
|---|---|
| apiKey*(string) | the API Key assigned to the channel we want to query |
| courier*(string) | shipment's courier code |
| trackingNumber*(string) | shipment's tracking number |
Response Body200
trackingByTimeFrame
trackingByTimeFrame allows you to obtain the list of shipments that have undergone an update of the tracking status included in the dateFrom/dateTo timeframe.GEThttps://api.qapla.it/1.2/trackingByTimeFrame/
Parameters
| Parameter | Description |
|---|---|
| apiKey*(string) | The API Key assigned to the channel we want to query |
| Optional parameters | |
| dateFrom(timestamp) | default: an hour ago. In format ISO 8601 "yyyy-mm-dd hh:mm:ss" |
| dateTo(timestamp) | in format ISO 8601 "yyyy-mm-dd hh:mm:ss" |
| lang |
The language of the names of the Qapla' status (it, en, es), default: it.
Example: &lang=en |
Response Body200
Description
| result | The result of the operation: OK or KO in case of error |
|---|---|
| error | The error in case of result: KO |
| version | The version of API |
| lang | The language requested / passed as a parameter (default: it) |
| count | Number of current shipments |
| shipments | The description of shipment |
Orders
- Channel, represented by API Key
- Order reference, "reference"
- Tracking number, "trackingNumber
An order update occurs if during a pushOrder, the date of update "updatedAt" is greater than the recorded date.
pushOrder
pushOrder allows you to upload one or more orders via a POST of data in JSON format. If an order already present on Qapla' is updated, the order will only be updated if the given update date is more recent than the one already stored on Qapla', and it is recommended to include all fields, even those previously provided.POSThttps://api.qapla.it/1.3/pushOrder/
Parameters
*Mandatory parameter
The maximum number of orders that can be sent for each individual request is 100.
| apiKey*(string) | The API Key assigned to the channel we want to query | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| origin(string) | Origin of order, permitted values:
ahlens, aliexpress, allegro, alltricks, amazon, animalis, anthropologie, asos, atlasformen, auchan, bandq, beerwulf, bestsecret,
bhv, bigcommerce, bild, blackredwhite, blokker, boots, brandalley, bricobravo, bricodepot, bricomarche, bricoprive, bulevip, but, carrefour_es,
carrefour_fr, casadellibro, castorama, cdiscount, commercelayer, conforama, creavea, cultura, darty, debenhams, decathlon, douglas, ebay, ecwid,
elcorteingles, elkjop, ellos, empik, eprice, etsy, fanatics, feelunique, fnac, fonq, freepeople, fressnapf, gifi, greenweez_fr, handm, home24, ibs,
incomedia, lafayette, laredoute, leroyMerlin_it, magento, magento2, maisonDuMonde_es, maisonDuMonde_it, manomano, manomano_de, manomano_es, manomano_fr,
manomano_gb, manomano_it, matalan, mathon, maty, maykers, mediaMarkt_at, mediaMarkt_de, mediaMarkt_es, mediaMarkt_it, mediaMarkt_nl, miravia_es, modivo_pl,
mountainwh, natureetdeco, newcart, nocibe, obelink, pandacola, pccomponentes, perfumesclub, phonehouse, pixmania, placedestend, planetahuerto, pourdebon,
prestashop, printemps, privalia, privalia_es, privalia_it, privsportshop, public, quirumed, redcarepharmacy, rueducommerce, sarenza, shopapotheke, shopify,
shopware6, showroomprive, slood, spartoo, spartoo_be, spartoo_bg, spartoo_cn, spartoo_com, spartoo_comhr, spartoo_couk, spartoo_cz, spartoo_de, spartoo_dk,
spartoo_es, spartoo_fi, spartoo_fr, spartoo_gb, spartoo_gr, spartoo_hu, spartoo_it, spartoo_nl, spartoo_pl, spartoo_pt, spartoo_ro, spartoo_se, spartoo_si, spartoo_sk, sprinter_es,
stadium, storeden¤, superdrug, teamsystemcommerce¤tiendanimal, tradeinn, truffaut, twil, ubaldi, urbanoutfitters, venca, venteunique, vivino, vtex, watchfinder,
winesitting, woocommerce, wook, worten_es, worten_pt, yoox
¤storeden and teamsystemcommerce can be used as synonyms
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| pushOrder(array) |
It is an array of maximum 100 orders to load.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| recipientTin(string) | Recipient's Tax Identification number | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| recipientTinType(string) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shippingCharge(string) |
Indicates to whom the shipping costs will be charged. If different from SENDER, you must also specify shippingChargeAccount. Allowed values: SENDER,RECIPIENT,THIRD_PARTY. Available for FedEx courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shippingChargeAccount(string) |
Account to which the shipping costs will be charged. Available for FedEx courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| pickupType(string) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| signatureRequired | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customCharges(string) |
Indicates to whom the customs charges will be billed. If different from SENDER, you must also specify customChargesAccount. Allowed values: SENDER,RECIPIENT,THIRD_PARTY. Available for FedEx courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customChargesAccount(string) |
Account to which the customs charges will be billed. Available for FedEx courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customsChargesBroker(string) | Reference code of the Broker to whom customs clearance is entrusted. Attention: contact customer support to enter the broker's data and assign the code. Available for FedEx courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customsRecipientIDType(string) | Type of recipient's identification document, useful for customs clearance. Allowed values:
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customsRecipientID(string) |
Identifier of the recipient's document, to be specified if customsRecipientIDType is specified Available for Fedex courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| totalCustomsValue(float) | Total declared value for customs clearance. Available for FedEx courier. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Response Body200
Description
| version(string) | The number version of this API | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| result(string) | It is "OK" if the transmission was successful, "KO" in case of an error | ||||||||||
| error(string) | Possible error message in case of "KO" result | ||||||||||
| count(int) | Number of orders sent in the request | ||||||||||
| orders(array) |
It is an array that corresponds to the number of orders sent in the request.
|
||||||||||
| imported(int) | Counter of imported orders | ||||||||||
| updated(int) | Counter of updated orders | ||||||||||
| deleted(int) | Counter of deleted orders | ||||||||||
| skipped(int) | Counter of skipped orders | ||||||||||
| existing(int) | Counter of existing orders |
Errors
The error message is reported in the "error" field.getOrder
getOrder allows you to recover an order.GEThttps://api.qapla.it/1.3/getOrder/?apiKey=[API_KEY]&reference=[ORDER_REFERENCE]
Parameters
* Mandatory parameter
° At least one of the parameters is mandatory
| Parameter | Description | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| apiKey*(string) | The API Key assigned to the channel we want to query | ||||||||
| reference°(string) | The order reference | ||||||||
| orderID°(string) | Alternative order reference | ||||||||
| data |
The flag data specifies which and how much data we want to receive, by default it returns minimal data on the progress of the shipment.
|
Response Body200
getOrders
getOrders allows you to receive the list of orders imported from Qapla'.GEThttps://api.qapla.it/1.2/getOrders/?apiKey=[API_KEY]&[DATE]
Parameters
| Parameter | Description |
|---|---|
| apiKey*(string) | The API Key assigned to the channel we want to query |
| [DATE] | |
| updatedAt | Order update date in format ISO 8601 "YYYY-MM-DD" |
| createdAt | Order date in format ISO 8601 "YYYY-MM-DD" |
| dateIns | Upload date in format ISO 8601 "YYYY-MM-DD" |
| dateFrom / dateTo | Date range for the value "updatedAt" in format ISO 8601 "yyyy-mm-dd hh:mm:ss" |
Response Body200
deleteOrder
deleteOrder allows you to delete an order.DELETEhttps://api.qapla.it/1.2/deleteOrder/
updateOrder
updateOrder is replaced by the pushOrder setting and the updatedAt parameter is used to determine whether the order should be updated.| updatedAt*(YYYY-MM-DD HH:MM:SS) | Order update date Attention This date is used to determine whether to update the order on Qapla', or if the order has already been imported from Qapla'. A more recent value in this field will cause Qapla' to treat it as an "updated order" and then update all previously imported data. |
|---|
undeleteOrder
undeleteOrder allows you to restore a deleted order.PATCHhttps://api.qapla.it/1.2/undeleteOrder/
markOrderReady
markOrderReady allows you to set an order in the "Create" section as selected, allowing you to specify which user is selecting an order and with which courier. It also allows you to change the tag associated with the order.PATCHhttps://api.qapla.it/1.3/markOrderReady/
Parameters
| Parameter | Description |
|---|---|
| apiKey*(string) | the API Key assigned to the channel we want to query |
| origin*(string) | the platform of origin of the order (e.g. magento2, woocommerce, shopify, etc.) |
| reference*(string) | the unique reference of the order within the origin platform |
| selected*(boolean) | set to true to select the order as ready for shipment, false to deselect it |
| selectingUser(string) | email of the user selecting the order (optional). Ignored if "selected" is false or if "lock orders by user" channel configuration option is disabled. If required, but omitted, the first user with admin role assigned to the channel will be used, if no suitable user will be found, an error will be reported. |
| tag(string) | the tag/color to associate with the order (green,yellow,orange,blue,cyan,red) |
| courier(string) | the courier code to associate with the order (optional). Ignored if "selected" is false. If only one courier is associated with the channel for label generation, it can be omitted and that courier will be automatically used. |
* Mandatory parameter
Parameters
| Parameter | Description |
|---|---|
| result(string) | outcome of the API call. Can be "OK" or "KO" |
| error(string) | if "result" is "KO", contains the description of the error encountered |
checkAddress
checkAddress allows obtaining a verification of an order's address.POSThttps://api.qapla.it/1.3/checkAddress/
Parameters
*Required parameter
| apiKey*(string) | The API Key assigned to the channel to query |
|---|---|
| street*(string) | Street and house number of the address to verify |
| city*(string) | City of the address to verify |
| province(string) | Province of the address to verify (optional) |
| postalCode(string) | Postal code of the address to verify (optional) |
| country*(string) | Country of the address to verify (ISO 3166-1 alpha-2 format, e.g. IT, GB, FR, DE) |
Response Body200
Description
| version(string) | API version |
|---|---|
| result(string) | Call result. Can be OK or KO |
| error(string) | Error message in case of KO result |
| elapsedTime(float) | Time taken to execute the call, in seconds |
| checkAddress(object) | Object containing details of the performed address check |
| formatted(string) | Address formatted according to the destination country's standards |
| components(object) | Object containing the individual address components |
| street(string) | Street and house number |
| city(string) | City |
| province(string) | Province |
| postalCode(string) | Postal code |
| country(string) | Country (ISO 3166-1 alpha-2 format) |
| coordinates(object) | Object containing the address geographic coordinates |
| latitude(float) | Latitude |
| longitude(float) | Longitude |
| match(object) | Object containing details about the address check result |
| partial(boolean) | Indicates whether the address was partially matched |
| status(string) | Match status of the address compared to the one sent. Possible values:
|
| confidence(float) | Match confidence percentage (0.0 - 100.0) |
detectOrderCourier
This API is currently being tested. Ask for activation to Customer Care.
Useful before of a createLabel to identify in advance the courier to use.
The rules identify the courier according to weight, any cash on delivery amount, the destination zip code and — when configured — the product codes (SKU) of the order rows, the order tag and the custom fields.If you have clear rules such as the following:
| weight | COD | CAP | |
|---|---|---|---|
| less than or equal to 3Kg | GLS | ||
| greater than 3 Kg | less than 100 € | BRT | |
| greater than 3 Kg | greater than 100 € | less than 70000 (north) | GLS |
| greater than 3 Kg | greater than 100 € | greater than 70000 (south) | BRT |
it is possible to predetermine and pre-assign the courier to the order before the label is created, for example with the createLabel.
POSThttps://api.qapla.it/1.2/detectOrderCourier/
Request
Parameters
*Mandatory Parameter
| Parameter | Description | ||
|---|---|---|---|
| apiKey*(string) | The channel's API Key | ||
| country*(string) | Recipient country in format ISO 3166-1 alpha-2 (Example: IT) | ||
| weight*(float) | Potential weight of the order | ||
| cod(float) | Amount of the shipment, if the shipment is cash on delivery | ||
| postCode(string) | Recipient postal code | ||
| rows(array) |
The order rows. They are needed only if the channel has rules on the product code (SKU): without them such a rule cannot be satisfied, and the evaluation moves on to the next rule, or to the default one. Same shape as createLabel, so a payload already built for that one can be reused as is: the other row fields are accepted and ignored, only the
How the comparison works: the rule is satisfied when at least one order row matches an included code — case insensitively, and by prefix if the rule is configured that way. An excluded code makes the rule fail instead, even when another row matches an included one. An order carrying no rows matches no rule with a SKU list, not even one made of excluded codes only. |
||
| tag(string) |
The order tag, if the channel has rules on it. One of The tag has to be passed in the very call that creates the order (pushOrder 1.3 or createLabel): rules are evaluated on order creation only, so a tag assigned later on — |
||
| custom1 custom2 custom3(string) |
The three custom order fields, if the channel has rules on them. 255 characters at most each: a longer value is truncated and stops matching the one configured on the rule. The comparison is case insensitive and ignores leading and trailing spaces. A rule can list several accepted values separated by a semicolon (e.g. |
Response Body200
| Parameter | Description |
|---|---|
| courier(json) | Contains id, code and name of the identified courier |
| rule(json) | Contains id, and name of the identified rule |
| request(json) | The parameters of the request |
Errors
In case of error the "result" field will contain "KO" and the "error" field the description of the error.No courier found ("result":"KO", "error":"No courier found") has two possible meanings:
- no channel rule matches the order parameters (or no rule is configured at all);
- the courier of the matching rules is temporarily suspended. From the Control Panel (Channel settings → Couriers → Availability for the automatic rules) a courier can be excluded until a given date (strikes) or after a daily cutoff time (missed pickup). The suspension applies to the default rule as well: while the window is open an order can be left without a courier.
To stay independent from the rules during a suspension, set the courier explicitly in createLabel (courier parameter).
Platforms
fetchPlatformOrders
fetchPlatformOrders allows you to receive the list of orders on a platform.GEThttps://api.qapla.it/1.2/fetchPlatformOrders/?apiKey=[API_KEY]&platform=[PLATFORM]&orderFormat=[ORDERFORMAT]&skip
Parameters
| Parameter | Description |
|---|---|
| apiKey*(string) | The API Key assigned to the channel we want to query |
| platform(string) |
The associated platform. If it is not indicated, the platform (CMS) associated with the channel is considered. If no platform is associated with the channel, the parameter becomes mandatory to indicate a marketplace.
Possible values:
amazon, carrefour, cdiscount, ebay, ecwid, eprice, ibs, magento, magento2, manomano, prestashop, privalia, shopify, spartoo, storeden¤, teamsystemcommerce¤, vtex, woocommerce, worten, leroymerlin, greenweez, maisondumonde, mediamarkt,
bigcommerce, commercelayer, shopware6, aliexpress, allegro, sprinter, decathlon, bricobravo, miravia_es, tiktokshop, temu, redcarepharmacy
¤storeden and teamsystemcommerce can be used as synonyms
|
| dateFrom / dateTo(timestamp) | Date range for the value "updatedAt" in format ISO 8601 "yyyy-mm-dd hh:mm:ss" |
| orderFormat(string) | If the value (platform) is passed, orders will be returned in original format. If no value is passed, the results will be returned in standard format (qapla). |
| latestShipDate / latestDeliveryDate(timestamp) | Currently filled in only for Ebay and Amazon, these are the date values for "lastest shipping date" and lastest delivery date" in format ISO 8601 "yyyy-mm-dd" |
| skip(string) | Skip order statuses. |
Response Body200
Errors
In case of an error the "result" field will contain "KO" and the "error" field the description of the error.{
"fetchPlatformOrders": {
"result": "KO",
"error": "[ERROR_MESSAGE]"
}
}
updatePlatformOrder
updatePlatformOrder allows you to update orders on a platform.PUThttps://api.qapla.it/1.2/updatePlatformOrder/
Authentication
Authentication takes place via the APIKey of the channel, passing Q-API-Key in the request header
| Parameter | Description |
|---|---|
| Q-API-Key*(string) | The channel's API Key |
Parameters
| Parameter | Description |
|---|---|
| platform*(string) | The associated platform, for example a marketplace.
Allowed values:
magento, magento2, prestashop, shopify, woocommerce, amazon, ibs, manomano, spartoo, carrefour, leroymerlin, greenweez, maisondumonde, mediamarkt,
bigcommerce, commercelayer, cdiscount, ecwid, shopware6, storeden¤, teamsystemcommerce¤, vtex, aliexpress, allegro, ebay, eprice, privalia, sprinter, worten, decathlon, bricobravo, miravia_es, tiktokshop, temu, redcarepharmacy
¤storeden and teamsystemcommerce can be used as synonyms
|
| reference(string) | Order alphanumeric reference. To be entered, if required, based on the specific platform used. |
| orderID(int) | Order numeric reference. To be entered, if required, based on the specific platform used. |
| courier*(string) | The Qapla' courier code |
| trackingNumber*(string) | The tracking number of the order to be updated |
| setShipped(bool) | It is true if shipment is set. To be used according to the peculiarities of the platform used. |
| setDelivered(bool) | It is true if delivery is set. To be used according to the peculiarities of the platform used. |
| storeCountry(string) | The country code in ISO 2 format of the marketplace. (if requested) |
| trackingUrl(string) | An URL to view tracking information |
| amazonDirectUpdate(bool) | Updates Amazon directly (new mode). In case of errors reported by Amazon, the "errorDetails" array will be populated in the response. |
Peculiarities
Either setShipped or setDelivered is required.
The update request with setShipped and trackingNumber must be repeated twice with at least a 1-hour interval due to marketplace policy that requires a 1-hour interval between the Ready To Ship and Shipped statuses.
The update request with setDelivered must be made only once at least 12 hours after the second request with setShipped due to marketplace policy that requires a 12-hour interval between the Shipped and Delivered statuses.
Amazon updates are not performed directly but are queued in a batch for subsequent processing. It is possible to update Amazon directly without queuing in the batch by using the "amazonDirectUpdate" option set to "true".
Starting July 1st 2026, shipment confirmations for shipments originating from geographic areas outside the EU and destined for the European Union, where the item price is equal to or less than € 150 (excluding VAT, shipping costs, and promotional discounts), will be validated against the list of carriers authorized by Amazon. Shipments using unsupported carrier names or associated with invalid codes will be rejected.
It is recommended to use "amazonDirectUpdate: true" to immediately obtain the result of the update from Amazon.
Labels
createLabel
createLabel allows you to create a label in PDF or ZPL format (Settings should be configured on the control panel).Version 1.4 of this API is available with per-parcel tracking number support.
POSThttps://api.qapla.it/1.3/createLabel/
Test
It is possible to obtain a test "dummy label" using the courier with GENERIC code.Request
Parameters
*Mandatory Parameters
| Parameter | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| apiKey*(string) | The channel's API Key | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sandbox(boolean) | It is true if using the sandbox (test mode) Attention: this parameter works if the courier has already been set correctly on the channel. Contact Qaplà's Customer Care. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| includeExtShipmentID(boolean) | If true, it adds the additional shipment ID provided by the courier to the response body (e.g. DHL Express booking code). Default: false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| costCenterCode(string) | Allows you to optionally specify a code relating to a specific cost center that will be used when generating labels for the order in question. This parameter is only active for the PTI courier. Attention: if no code is specified, or if the specified code is not among those configured for the channel, the cost center configured as default will automatically be used. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| origin(string) | Shipment origin, permitted values:
ahlens, aliexpress, allegro, alltricks, amazon, animalis, anthropologie, asos, atlasformen, auchan, bandq, beerwulf, bestsecret,
bhv, bigcommerce, bild, blackredwhite, blokker, boots, brandalley, bricobravo, bricodepot, bricomarche, bricoprive, bulevip, but, carrefour_es,
carrefour_fr, casadellibro, castorama, cdiscount, commercelayer, conforama, creavea, cultura, darty, debenhams, decathlon, douglas, ebay, ecwid,
elcorteingles, elkjop, ellos, empik, eprice, etsy, fanatics, feelunique, fnac, fonq, freepeople, fressnapf, gifi, greenweez_fr, handm, home24, ibs,
incomedia, lafayette, laredoute, leroyMerlin_it, magento, magento2, maisonDuMonde_es, maisonDuMonde_it, manomano, manomano_de, manomano_es, manomano_fr,
manomano_gb, manomano_it, matalan, mathon, maty, maykers, mediaMarkt_at, mediaMarkt_de, mediaMarkt_es, mediaMarkt_it, mediaMarkt_nl, miravia_es, modivo_pl,
mountainwh, natureetdeco, newcart, nocibe, obelink, pandacola, pccomponentes, perfumesclub, phonehouse, pixmania, placedestend, planetahuerto, pourdebon,
prestashop, printemps, privalia, privalia_es, privalia_it, privsportshop, public, quirumed, redcarepharmacy, rueducommerce, sarenza, shopapotheke, shopify,
shopware6, showroomprive, slood, spartoo, spartoo_be, spartoo_bg, spartoo_cn, spartoo_com, spartoo_comhr, spartoo_couk, spartoo_cz, spartoo_de, spartoo_dk,
spartoo_es, spartoo_fi, spartoo_fr, spartoo_gb, spartoo_gr, spartoo_hu, spartoo_it, spartoo_nl, spartoo_pl, spartoo_pt, spartoo_ro, spartoo_se, spartoo_si, spartoo_sk, sprinter_es,
stadium, storeden¤, superdrug, teamsystemcommerce¤tiendanimal, tradeinn, truffaut, twil, ubaldi, urbanoutfitters, venca, venteunique, vivino, vtex, watchfinder,
winesitting, woocommerce, wook, worten_es, worten_pt, yoox
¤storeden and teamsystemcommerce can be used as synonyms
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| reference*(string) | Order's alphanumeric reference | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| orderID(string) | Possible order's numeric reference | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| courier*(string) | The Qapla' courier code. Also accepts a courier variant code (e.g. BRT-V1) if configured for the channel with label generation enabled. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| courierService*(string) | Possible kind of courier service; for example it can be the contract code of GLS Italy. If the field is empty or not sent, the default is '0'. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| name*(string) | Recipient name | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| address*(string) | Recipient address | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| city*(string) | Recipient city | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| state*(string) | Recipient province | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| postCode*(string) | Recipient Postal Code | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| country*(string) | Recipient country in format ISO 3166-1 alpha-2 (I.E.: IT) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| email(string) | Recipient email | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| telephone(string) | Recipient telephone | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| amount(float) | Shipment amount. Specify only one separator (the dot) to indicate decimals, and do not use separators to indicate thousands. Give a maximum of two decimal digits. Example: 2340.23 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shippingCost(float) | Shipping Cost. Specify only one separator (the dot) to indicate decimals, and do not use separators to indicate thousands. Give a maximum of two decimal digits. Example: 9.35 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| currencyCode(string) | Currency code ISO 4217 (default: EUR) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| isCOD(boolean) | It is true if payment is cash on delivery | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| payment(string) | Possible order's payment method. Can be set to CONTRASSEGNO only if isCOD is also set to true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| notes(string) | Any order note | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| parcels(int|array) |
Possible parcels of the delivery. Each shipment can be defined through an object composed as follows:
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| weight(float) | Potential weight of the order (not available when "parcels" is an array) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| length(float) | Potential measures: length (not available when "parcels" is an array) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| width(float) | Potential measures: width (not available when "parcels" is an array) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| height(float) | Potential measures: height (not available when "parcels" is an array) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shippingCODPaymentOption(string) | Payment method of cash on delivery if different from default settings (to be agreed) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shippingInsurance(float | string) |
Potential insured amount ALL-IN: insert into "shippingDeliveryOptions" the following string: ALLIN To generate directly with SDA, the value must be passed in the form of a string, specifying one of the following codes:
To generate directly with CRONO PTI, the value must be passed in the form of a string, specifying one of the following codes:
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shippingDeliveryOptions(string | JSON) |
For PTI courier you need to use a JSON structured as follows
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shippingRequiredDeliveryDate(YYYY-MM-DD) | The delivery request date in the format YYYY-MM-DD (mandatory for PAACK courier) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shippingRequiredDeliveryTimeSlot(HS-HE) |
Expected delivery time window for the order in HS-HE string format (currently used only by PAACK courier). This is a mandatory parameter that indicates the expected delivery time window for the order, each value for the start time (HS) and end time (HE) must be between 0 and 23. Example of usage: "shippingRequiredDeliveryDate": "2026-01-20" "shippingRequiredDeliveryTimeSlot": "8-21" In this case, the expected delivery time window will be between 08:00:00 and 21:00:00 on 01/20/2026. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| latestShipDate(string) | To be shipped by this date in the YYYY-MM-DD format | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| latestDeliveryDate(string) | To be delivered by this date in the YYYY-MM-DD format | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| tag(string) | Colored tag, allowed values: green, yellow, orange, blue, cyan, red | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| pickupDate(YYYY-MM-DD) | The collection date requested to the courier in format YYYY-MM-DD
For the SDA courier, if this field is not specified when creating the label, during the transmission of the label it will be automatically assigned the working day following that of transmission. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| printNodePrinterID(int | string) | Possible id or name of the printer to be used with PrintNode (to be agreed) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| forceReprint(int) | If set to 1, it forces the label to be printed again via PrintNode; valid when used with "printNodePrinterID" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| content(string) | The content of the goods that may be present on the label (depends on the courier) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| custom1(string) | A custom field | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| custom2(string) | A custom field | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| custom3(string) | A custom field | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sender |
It is the sender of the shipment if different from the contract holder.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| tradeDocuments |
Electronic documents to be sent to the courier. You can upload more than one file per shipment. The maximum size of each file is 5 MB. For the moment only available for DHL, FedEx and UPS couriers. Passed as an array of objects, with three mandatory elements each:
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| rows(array) |
It is an array of "order rows". It is not mandatory, but if populated it has some mandatory data. When mandatory data is not filled-in, row item can be ignored and not inserted. In order to update or remove all rows from an order use "forceRowsUpdate". Keep in mind that orders are modified only when there labels don't exist for the order.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| assemblyTypes(array) |
Possible list of assembly types, one per product, for couriers who support this information
Available for the "courierService" 20 (HD). One element must be specified for each element of rows. Available values for "code":
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| PUDO(object) |
Allows you to set a Pick-up or Drop-off point for the collection of goods. Each field must be completed according to the courier's need. Refer to the tables below name, address, city, state, country e postalCode are required if you want to include the PUDO address in transactional emails
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| invoice(object) |
It allows you to set information regarding the invoice associated with the shipment, useful for shipments that have to go through customs.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| dangerousGoods(JSON) |
For FEDEX courier you need to use a JSON structured as follows parcel: represents the number of the parcels that contains the dangerous goods (in the example a shipment with 3 parcels and only the first and the third contain dangerous goods)
type: battery
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| forceLabelsOutput(int) | If set to 1, the "createLabel" API will return the generated labels even when printed with PrintNode. Can only be used if "printNodePrinterID" is also set. Default value: 0 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| goodsCode(string) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| forceRowsUpdate(int) | If set to 1, the "createLabel" API will rewrite all items rows in the existing order when trying to update the order itself. Keep in mind that when there already are labels availbale for the order, the order will not be modified. If rows are empty, the order items will be deleted. Default value: 0 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| recipientTin(string) | Recipient's Tax Identification number | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| recipientTinType(string) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shippingCharge(string) |
Indicates to whom the shipping costs will be charged. If different from SENDER, you must also specify shippingChargeAccount. Allowed values: SENDER,RECIPIENT,THIRD_PARTY. Available for FedEx courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shippingChargeAccount(string) |
Account to which the shipping costs will be charged. Available for FedEx courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| pickupType(string) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| signatureRequired | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customCharges(string) |
Indicates to whom the customs charges will be billed. If different from SENDER, you must also specify customChargesAccount. Allowed values: SENDER,RECIPIENT,THIRD_PARTY. Available for FedEx courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customChargesAccount(string) |
Account to which the customs charges will be billed. Available for FedEx courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customsChargesBroker(string) | Reference code of the Broker to whom customs clearance is entrusted. Attention: contact customer support to enter the broker's data and assign the code. Available for FedEx courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customsRecipientIDType(string) | Type of recipient's identification document, useful for customs clearance. Allowed values:
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customsRecipientID(string) |
Identifier of the recipient's document, to be specified if customsRecipientIDType is specified Available for Fedex courier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| totalCustomsValue(float) | Total declared value for customs clearance. Available for FedEx courier. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Response Body200
| Parameter | Description |
|---|---|
| isShipped(boolean) | It istrue if the order has alredy been labeled and returns the label alredy created. |
| id(int) | Shipment ID. Important to invoke other APIs. |
| trackingNumber(string) | Shipment tracking number. |
| returnTrackingNumber(string) | If a returnn label is requested |
| format(string) | Label format:
|
| labels(array) | An array with the base64 of the labels obtained (there may be multiple labels for multiple packages or returns, etc.).
Or The ZPL for printing on Zebra, as configured on the Control Panel. |
| extShipmentID(string) | Optional additional ID provided by the courier. It is added to the body only if "includeExtShipmentID" is true in the request. |
Errors
In case of error the "result" field will contain "KO" and the "error" field will contain the description of the error.deleteLabel
deleteLabel allows you to delete a label created with createLabel.This API is currently being tested. Ask for activation to Customer Care.
DELETEhttps://api.qapla.it/1.2/deleteLabel/
getLabel
getLabel allows you to download a label created on Qapla' in the orignal courier format (PDF, JPG or ZPL).GEThttps://api.qapla.it/1.3/getLabel/?apiKey=[API_KEY]&trackingNumber=[TRACKING_NUMBER]
GEThttps://api.qapla.it/1.3/getLabel/?apiKey=[API_KEY]&reference=[ORDER_REFERENCE]
GEThttps://api.qapla.it/1.3/getLabel/?apiKey=[API_KEY]&id=[SHIPMENT_ID]
Parameters
| Parameter | Description |
|---|---|
| apiKey*(string) | The API Key assigned to the channel we want to query |
| Exclusive parameters | |
| trackingNumber(string) | Concerned tracking number |
| reference(string) | Order reference |
| parcel(int) | The parcel number corresponding to the label (default = 1) - Only for PDF labels |
| id(int) | the shipment id |
| json(string) | if used (eg: &json) force a JSON response |
| getReturnLabel(string) | if used (eg: &getReturnLabel) returns the contextual return label |
Response Body200
The label with the proper content type (JPG, PDF or txt for ZPL)
Otherwise, if the &json param is used
Errori
In caso di errore il campo "result" conterrà "KO" ed il error la descrizione dell'errore.Errors
In case of an error the "result" field will contain "KO" and the "error" field the description of the error.checkLabel
checkLabel allows you to check the status of a previously created label.GEThttps://api.qapla.it/1.2/checkLabel/?apiKey=[API_KEY]&trackingNumber=[TRACKING_NUMBER]
GEThttps://api.qapla.it/1.2/checkLabel/?apiKey=[API_KEY]&reference=[ORDER_REFERENCE]
GEThttps://api.qapla.it/1.2/checkLabel/?apiKey=[API_KEY]&id=[SHIPMENT_ID]
Parameters
| Parameter | Description |
|---|---|
| apiKey*(string) | The API Key assigned to the channel we want to query |
| Exclusive parameters | |
| trackingNumber(string) | Concerned tracking number |
| reference(string) | Order reference |
| id(int) | The label id |
Response Body200
Errori
In case of an error the "result" field will contain "KO" and the "error" field the description of the error.confirmLabel
confirmLabel allows you to confirm and send to the courier labels created with createLabel and to obtain the Loading List (borderò / manifest) in PDF format.Ask for activation to Customer Care.
POSThttps://api.qapla.it/1.3/confirmLabel/
Request
Parameters
Attention Use "labelCreationDate" or "labelID".*Mandatory Parameter
| Parameter | Description |
|---|---|
| apiKey*(string) | The channel's API Key |
| courier*(string) | The Qapla' courier code |
| labelCreationDate*(date) | The label’s date of creation in ISO 8601 format "YYYY-MM-DD" |
| pickupDate(date) | The chosen pickup date in ISO 8601 format "YYYY-MM-DD". Available only for the couriers CRONO-PTI, DHLPARCEL-ES, FEDEX, GLS-SPAIN, PTI, SDA, SEUR, TNT-ITA, TWS. |
| pickupTime(string) | The expected pickup time in "HH:MM" format. Requires the presence of pickupDate and is available only for SDA, CRONO-PTI, and FEDEX couriers. |
| labelID*(array) |
An array of shipments ID obtained with createLabel Parameter not supported for this carrier, use labelCreationDate parameter only |
Response Body200
| Parameter | Description |
|---|---|
| courier(string) | Courier code |
| number(string) | Confirmation number |
| date(string) | Confirmation date |
| shipments(int) | Number of confirmed shipments |
| error(array|string) | Errors found during confirmation |
| manifest(string) | Manifest in Base64 encoded PDF |
Errors
In the event that all dispatches failed, the 'result' field will contain 'KO' and the 'error' field will be a string containing the description of the error.Otherwise, the 'error' field will be an array containing the details of the individual errors.
Couriers
getCouriers
getCouriers allows to request the couriers' list both in total and by individual country/region.GEThttps://api.qapla.it/1.2/getCouriers/?apiKey=[API_KEY]&country=[COUNTRY_LIST]&code=[COURIER_CODE]
Parameters
| Parameter | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| apiKey | the API Key assigned to the channel we want to query | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Optional parameters | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| country | empty for all couriers, or a comma-separated list of country valuescountry=it,fr,globalThe available values are:
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| code | The Qapla' code of the couriercode=BRT |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| hasLabels | Returns couriers who have label generation on Qapla' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Response Body200
The following URL
GEThttps://api.qapla.it/1.2/getCouriers/?apiKey=[API_KEY]&country=globalwill result:
The variants field
Each courier includes a variants array with any variants configured for the channel. Variants are alternative configurations of the same courier (e.g. different contracts) and have their own unique code.
| id(int) | Internal variant ID |
|---|---|
| code(string) | Variant code to use in the courier field of pushShipment, pushOrder and createLabel |
| name(string) | Descriptive name of the variant |
If the channel has no variants configured for a courier, variants is an empty array. Variants do not appear as top-level couriers.
detectCourier
detectCourier tries to determine the courier from the tracking number provided, responding with a list of couriers.GEThttps://api.qapla.it/1.2/detectCourier/?apiKey=[API_KEY]&trackingNumber=[TRACKING_NUMBER]
getPudos
getPudos allows you to request the list of PUDOs (Pick Up Drop Off points) of several couriers at the same time.Ask for activation to Customer Care.
POSThttps://api.qapla.it/1.2/getPudos/
Request
Parameters
*Mandatory Parameters
| Parameter | Description |
|---|---|
| apiKey*(string) | The API Key of the channel. Alternatively, it can be provided as a query parameter in the request URL, always using the http POST method. Example: POSThttps://api.qapla.it/1.2/getPudos/?apiKey=[API_KEY] |
| postCode*(string) | Postal code of the locality you intend to search for PUDOs |
| country*(string) | ISO 3166-2 code of the country where the postcode is located. No quality control of the code is performed |
| couriers(array) | List of Qapla's "Courier Codes" whose PUDOs you want to know. Valid courier codes are UPS, BRT, GLS, GLS-ITA, GLS-SPAIN, GLS-AT, DHL, PTI, INPOST-GROUP, INPOST-GROUP-V3, INPOST (deprecated), INPOST_PL (deprecated), FEDEX, DHLPARCEL-ES, CORREOS, SEUR, TIPSA, MRW-ES, NACEX-ES, CORREOS-EXPRESS, SENDING, DHL-PAKET, SPRING-GDS and TNT-ITA. If this parameter is not specified or left empty, PUDO locations for all valid and configured couriers in Qapla' will be retrieved |
| province(string) | Province of the locality being searched |
| city(string) | Town/city of the location being searched (required for TIPSA) |
| street(string) | Address, complete with house number if applicable |
| radius(number) | Radius, expressed in KM, within which to limit the search for PUDOs. Specifying a value ≤ 0 is equivalent to specifying no radius |
| limit(number) | Number of PUDOs returned per courier. Specifying a value ≤ 0 is equivalent to specifying no limit, in which case the courier will return its default |
| unifiedResults(bool) | If set to true, it changes the structure of the response obtained. In the data field there will be a list of pick-up points found without subdivision into courier blocks. Each item in the list will have the same structure as the items of `servicePointList` plus the `courier` field to identify the courier assigned to the pick-up point. |
Response Body200
| Parameter | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| result(string) | Indicates whether the operation was successful, possible values are 'OK' and 'KO' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| error(string) | Contains the description of the error, if any, that was raised, empty if result = 'OK' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| data(array) |
Array of objects containing the list of PUDOs. Each element of the array corresponds to the response obtained from a courier
|
Business Days
An object of the array businessDays represents a weekly opening day and has several attributes:
| Parameter | Description |
|---|---|
| day(int) | Indicates the number of the day of the week according to ISO 8601 coding ( 1 = Monday...7 = Sunday) |
| dayName(string) | The name of the day of the week in English |
| dayNameIT(string) | The name of the day of the week in Italian |
| businessHours(array) | Array of objects consisting of two attributes, 'open' and 'close', both of type string, representing a time in the format 'hh: mm' |
Response Body with unifiedResults = true200
| Parameter | Description | ||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| result(string) | Indicates whether the operation was successful, possible values are 'OK' and 'KO' | ||||||||||||||||||||||||||||||||||||||
| error(string) | Contains the description of the error, if any, that was raised, empty if result = 'OK' | ||||||||||||||||||||||||||||||||||||||
| data(array) |
Array of objects representing the list of PUDOs.
|
getQuotes
getQuotes allows you to request shipping quotes from multiple couriers for multiple services simultaneously.Request activation from Customer Care.
POSThttps://api.qapla.it/1.3/getQuotes/
Request
Header
*Required parameter
| Parameter | Description |
|---|---|
| x-api-key*(string) | The channel API Key. |
| x-sandbox(string) |
Requests execution in sandbox for testing, the values returned in this mode may not be realistic. Allowed values are "true" or "false". GLS-ITA does not provide a sandbox environment, so requests are sent to production servers. |
Body
*Required parameter
| Parameter | Description | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| reference*(string) | Unique reference code, sent back in the response, accepts only uppercase letters, lowercase letters, numbers, and the symbols "-", "_" and "." | ||||||||||
| senderCode(string) |
Qapla' sender code to use for the quote. If valued, the procedure will use the sender data of the Channel with this code; if the inserted value does not exist, it will return an error; if not valued, the procedure will use the default sender or the Company's address. NOTE: for GLS-ITA it is not possible to specify a senderCode. |
||||||||||
| recipient*(object) | Recipient
|
||||||||||
| currency(string) | Currency used to value monetary fields and in which the quote is requested expressed in a three-character string. If not specified, the value "EUR" is considered. No conversion is performed. The following couriers do not support currency choice and return an error if any currency other than EUR is requested: GLS-ITA, LICCARDI. Additionally, couriers may return quotes in a currency different from the one indicated here. The quote currency is reported in the response. |
||||||||||
| amountShipment*(float) | Shipment value, in the currency specified by the currency field. Float format with 2 decimals without currency symbols (#.##). | ||||||||||
| amountInsurance(float) | Insured value of the shipment, in the currency specified by the currency field or in Euro for couriers that do not support it. Float format with 2 decimals without currency symbols (#.##). Do not value (or value with 0) if the merchandise insurance service is not wanted. |
||||||||||
| amountCash(float) | Cash on delivery value of the shipment, in the currency specified by the currency field or in Euro for couriers that do not support it. Float format with 2 decimals without currency symbols (#.##). Do not value (or value with 0) if the cash on delivery service is not wanted. |
||||||||||
| parcels*(array) | List of packages in the shipment
|
||||||||||
| couriers(array) | List of Qapla' "Couriers Codes" for which you want to get the quote. Valid couriers are all those enabled in the channel/courier configuration. If this parameter is not specified or left empty, quotes will be requested from all valid and configured couriers on Qapla'. |
Response Body200
| Parameter | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| result(string) | Indicates if the operation was successful, possible values are "OK" and "KO". | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| version(string) | Version of the API that generated the response. | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| reference(string) | Repeats the reference field from the request. | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| quotationId(string) | Unique identifier of the request assigned by our system (UUIDv4 format). | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| startTimestamp(string) | Date and time when the request was received (RFC3339 format). | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| endTimestamp(string) | Date and time when the request was completed (RFC3339 format). | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| couriers(array) | Array of objects representing the responses from each queried courier
|
apiVirtual
apiVirtual allows you to update the status of a virtual courier shipment.POSThttps://api.qapla.it/virtual/
Parameters
*Mandatory parameter
| apiKey*(string) | The API Key assigned to the channel we want to query | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| apiVirtual(array) |
It is an array that can hold maximum 100 updates.
|
Response Body200
Errors
In case of error the "result" field will contain "KO" and the "error" field the description of the error.Channels
getChannel
getChannel allows you to obtain information on the channel connected to the API Key and the company who created it.GEThttps://api.qapla.it/1.2/getChannel/?apiKey=[API_KEY]
Parameters
| Parameter | Description |
|---|---|
| apiKey | The API Key assigned to the channel we want to query |
| Optional Parameters | |
| data |
It obtains information on the configuration of the channel with respect to the platform and/or marketplaces.
Possible values (all, platform, marketplaces) |
Response Body200
checkChannel
It allows you to verify the connections with the marketplace platform configured on the channel.GEThttps://api.qapla.it/1.2/checkChannel/?apiKey=[API_KEY]
createChannel
It allows to create a new channel.POSThttps://api.qapla.it/1.2/createChannel/
Request
Parameters
*Mandatory parameter
| Parameter | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| apiKey*(string) | The API Key assigned to the channel we want to query | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| createChannel*(object) |
|
Response Body200
Errors
In the event of an error, the "result" field will contain "KO" and the "error" field will contain the description of the error.updateChannel
It allows to change some channel settings.PATCHhttps://api.qapla.it/1.2/updateChannel/
Request
Parameters
*Mandatory parameter
| Parameter | Description |
|---|---|
| apiKey*(string) | The API Key assigned to the channel we want to query |
| updateChannel*(object) | Like create object |
Response Body200
Errors
In the event of an error, the "result" field will contain "KO" and the "error" field will contain the description of the error.deleteChannel
It allows to delete a specific channel.DELETEhttps://api.qapla.it/1.2/deleteChannel/
Request
Parameters
*Mandatory parameter
| Parameter | Description | ||
|---|---|---|---|
| deleteChannel*(object) |
|
Response Body200
Errors
In the event of an error, the "result" field will contain "KO" and the "error" field will contain the description of the error.Misc
getCredits
getCredits allows you to get the remaining credits on your premium account.GEThttps://api.qapla.it/1.2/getCredits/?apiKey=[API_KEY]
Parameters
| Parameter | Description |
|---|---|
| apiKey | The API Key assigned to the channel we want to query |
Response Body200
Description
| result(string) | The result of the operation: OK or KO in case of error |
|---|---|
| error(string) | The error in case of result: KO |
| credits(int) | Remaining credits |
| date(string) | Count update date |
getQaplaStatus
getQaplaStatus allows you to get the detailed list of Qapla' shipping statusGEThttps://api.qapla.it/1.2/getQaplaStatus/?apiKey=[API_KEY]&lang=[LANG]&id=[ID]
Parameters
| Parameter | Description |
|---|---|
| apiKey(string) | The API Key assigned to the channel we want to query |
| Optional parameters | |
| lang(string) | The language of the names of the Qapla' status (it, en, es), default: it.
Example: &lang=en |
| id(int) | Possible id of which you want to get informations Example: &id=3 |
Response Body200
| result(string) | The result of the operation: OK or KO in case of error | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| error(string) | The error in case of result: KO | ||||||||||||||||
| version(string) | The version of API | ||||||||||||||||
| qaplaStatus(array) |
It is an array of status
|
Script
Tracking Script
By entering and configuring our Tracking Script, you can get tracking anywhere on the site.
<!-- Place this code after <body> tag --> <script type="text/javascript"> let apiKey = "7b1b7235"; // your channel's public API Key let reference = "104"; // your order's reference // let noCSS = true; // let compact = true; // let lang = "en"; </script> <script type="text/javascript" src="https://api.qapla.it/js/1.2/qapla-tracking.min.js"></script> <!-- Place this element where you want to display the Qapla' Tracking --> <div id="qapla-tracking"></div>
Parameters
| Parameter | Description | ||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| apiKey*(string) | The "public" API KEY present in the configuration of the sales channel on the Qapla' Control Panel (CP). | ||||||||||||||||||||||||||||||||||
| reference*/ trackingNumber*(string) | Track by order reference or by tracking number. | ||||||||||||||||||||||||||||||||||
| noCSS(bool) | If true not include the standard css, allowing an override. | ||||||||||||||||||||||||||||||||||
| compact(bool) | If true a compact version is displayed. | ||||||||||||||||||||||||||||||||||
| lang(string) | if set it shows the courier statuses in the selected language. If not set, the default ('it') is used
|
Result
The result is an HTML that will be inserted into the element with id qapla-tracking having the following content.Help
Qapla' Status
It's the interpretation of the status of the shipment with values that Qapla' assigns to each possible state of the courier.
| id | name | Description | |
|---|---|---|---|
| 0 | PROCESSING WAIT | Shipment found but any news yet from courier. | |
| 1 | PENDING | Shipment found but any news yet from courier. | |
| 2 | WAITING FOR PICK-UP | The courier didn’t pick up the shipment yet. | |
| 20 | DEPARTED | Shipment departed. | |
| 3 | IN TRANSIT | The goods are in transit. | |
| 50 | PROCESSING | Processing | |
| 50 | PROCESSING • CUSTOMS | ||
| 4 | OUT FOR DELIVERY | Shipment in delivery. | |
| 5 | FAILED DELIVERY ATTEMPT | Delivery failed. Early warning for potential problems. | |
| 8 | DELAY | Shipment is suffering delay. | |
| 6 | EXCEPTION | There is a problem; generic or explained by additional icons. | |
| 6 | EXCEPTION • STOCK | ||
| 6 | EXCEPTION • RETURN | ||
| 6 | EXCEPTION • DAMAGED | ||
| 6 | EXCEPTION • LOST | ||
| 6 | EXCEPTION • PARTIAL DELIVERY | ||
| 10 | PICKUP POINT | Delivered to a PickUp Point. | |
| 95 | RETURNED | Shipment returned to sender. | |
| 99 | DELIVERED | The shipment has been delivered to the recipient. |
Couriers
List of Qapla's couriers' codes, in alphabetical order.| Default | ||
|---|---|---|
| Default | 0 | |
|
|
||
| Arco standard | 0 | |
| Arco urgente | 1 | |
| Arco espresso | 2 | |
| A.D.R. | 3 | |
| Sponda idraulica | 4 | |
| NON SBANCALARE | 5 | |
|
|
||
| e-PAQ Plus | 31 | |
| e-PAQ Select | 32 | |
|
|
||
| Express | 0 | |
| Priority | 1 | |
| 10:30 | 2 | |
| Circuito DPD | 6 | |
| Circuito Euroexpress | 7 | |
| Circuito Fedex | 8 | |
| DPD Direct Infeed | 9 | |
|
|
||
| Domestic | ||
| PAQ Estándar DOMICILIO | 22 | |
| PAQ Estándar OFICINA | 23 | |
| PAQ RETORNO PREMIUM CON Envío ASOCIADO | 25 | |
| S0148 PAQ RETORNO | 26 | |
| PAQ PREMIUM DOMICILIO | 27 | |
| PAQ PREMIUM EN OFICINA | 28 | |
| PAQ PREMIUM ENTREGA EN CITYPAQ | 32 | |
| PAQ Estándar ENTREGA EN CITYPAQ | 34 | |
| International | ||
| PAQ STANDARD INTERNACIONAL (I) | 24 | |
| PAQ PREMIUM INTERNACIONAL (I) | 29 | |
| PAQ INTERNACIONAL LIGH | 35 | |
|
|
||
| Domestic | ||
| Paq 10 | 20 | |
| Paq 14 | 21 | |
| Paq 24 | 22 | |
| Baleares Express | 23 | |
| Canarias Express | 24 | |
| Canarias Aéreo | 25 | |
| Canarias Marítimo | 26 | |
| Paq Empresa 14 | 29 | |
| ePaq 24 | 30 | |
| 54 Entrega Plus | 31 | |
| Express Islands | 32 | |
| International | ||
| Paq 24 | 22 | |
| Internacional Estándar | 27 | |
| Internacional Express | 28 | |
| Paq Empresa 14 | 29 | |
| ePaq 24 | 30 | |
| 54 Entrega Plus | 31 | |
|
|
||
| Domestic | ||
| CTT 10 | C10 | |
| CTT 14 | C14 | |
| CTT 24 | C24 | |
| CTT 48 | C48 | |
| CTT BALEARES ECONOMY | CBA48 | |
| CTT BALEARES EXPRESS | CBA24 | |
| CTT CANARIAS AEREO | CCA24 | |
| CTT CANARIAS DOCUMENTACIÓN | CCAE | |
| CTT CANARIAS MARÍTIMO | CCAM | |
| International | ||
| CTT INTERNACIONAL ECONOMY | CIES | |
| CTT INTERNACIONAL EXPRESS | CIEX | |
|
|
||
| Domestic | ||
| Express | 2 | |
| Economy | 3 | |
| Crono | 1 | |
| CRONOPLUS | 5 | |
| ROAD EUROPE - EURODIS | 6 | |
| Circuito Euroexpress | 7 | |
| International | ||
| Internazionale | 8 | |
|
|
||
| Domestic | ||
| DHL Parcel Connect | connect | |
| DHL Parcel Connect PLUS | connectPlus | |
| International | ||
| DHL Parcel International | international | |
|
|
||
| Domestic | ||
| Paket | 0 | |
| International | ||
| WeltPaket | 6 | |
|
|
||
| Domestic | ||
| Domestic Express | 0 | |
| Domestic Express 10:30 | 2 | |
| Domestic Express 12:00 | 1 | |
| Domestic Express 9:00 | 4 | |
| Express Easy | 21 | |
| International | ||
| La dicitura "doc" indica i servizi senza dogana, "non-doc" quelli con dogana. Se presenti entrambi la scelta è fatta a livello di codice. |
||
| Economy Select (doc / non-doc) | 8 | |
| Medical Express (doc / non-doc) | 20 | |
| Parcel Product (doc / non-doc) | 22 | |
| Express Worldwide H12 (doc / non-doc) | 7 | |
| International Express Worldwide (doc / non-doc) | 9 | |
| International Express 9:00 (doc / non-doc) | 10 | |
| Air Capacity Sales (doc / non-doc) | 70 | |
| ECONOMY BREAKBULK (doc) | 71 | |
| EXPRESS 10:30 (doc / non-doc) | 72 | |
| EXPRESS BREAKBULK (doc) | 73 | |
| EXPRESS ENVELOPE (doc) | 74 | |
| GLOBALMAIL (doc) | 75 | |
| Placeholder (doc) | 76 | |
| SAME DAY (doc) | 77 | |
| SAMEDAY SPRINTLINE (doc) | 78 | |
| EXPRESS EASY (non doc) | 79 | |
| FREIGHT WORLDWIDE (non doc) | 80 | |
| SAMEDAY JETLINE (non doc) | 81 | |
|
|
||
| BOOK | BOOK | |
| FLEX | 2 | |
| FIX | 1 | |
| SPEED | 3 | |
| Private | 5 | |
| HD (check "assemblyTypes") | 20 | |
|
|
||
| Domestic | ||
| FedEx First | 12 | |
| FedEx Priority Express | 13 | |
| FedEx Priority | 14 | |
| FedEx Economy | 15 | |
| FedEx Priority Express Freight | 16 | |
| FedEx Priority Freight | 17 | |
| International | ||
| Priority | 6 | |
| First | 7 | |
| Economy | 8 | |
| Connect plus | 10 | |
| Regional Economy | 11 | |
|
|
||
| PARCEL | PARCEL | |
| EXPRESS | EXPRESS | |
| FREIGHT | FREIGHT | |
|
|
||
| CO1 - COURIER 14:00 Service | 20 | |
| CO2 - COURIER BusinessParcel | 21 | |
| CO3 - COURIER 10:00 Service | 22 | |
| CO4 - COURIER SaturdayService | 23 | |
| CO5 - COURIER MASIVO | 24 | |
| CO6 - COURIER REC. EN NAVE | 25 | |
| EC1 - EconomyParcel EconomyParcel | 26 | |
| CA1 - CARGA MARITIMO | 27 | |
| CO7 - COURIER ParcelShop | 28 | |
| EC2 - EconomyParcel ParcelShop | 29 | |
| EU1 - EUROBUSINESS PARCEL EBP | 30 | |
| EU2 - EUROBUSINESS SMALL PARCEL EBP | 31 | |
| AS1 - ASM TRAVELLERS ASM TRAVELLERS | 32 | |
| Express 19:00 | 37 | |
|
|
||
| InPost Locker Standard | 1 | |
| A2L - InPost Locker Standard | 4 | |
|
|
||
| Bancale | B | |
| Dedicato | DE | |
| Espresso | E | |
| Reso | R | |
| Store | ZS | |
|
|
||
| Merchant collection to Point Relais® | S01 | |
| Point Relais® collection to Point Relais® | S02 | |
| Merchant collection to Point Relais® | S03 | |
| Point Relais® collection to Point Relais® | S04 | |
| Merchant collection to Home delivery | S05 | |
|
|
||
| Urgente 10 | 0000 | |
| Urgente Hoy - Frecuencia 1 | 0005_1 | |
| Urgente Hoy - Frecuencia 2 | 0005_2 | |
| Promociones | 0010 | |
| Urgente 10 Expedición | 0015 | |
| Urgente 12 | 0100 | |
| Urgente 12 Expedición | 0105 | |
| Urgente 14 | 0110 | |
| Urgente 14 Expedición | 0115 | |
| Urgente 19 | 0200 | |
| Urgente 19 Expedicion | 0205 | |
| Urgente 19 Portugal | 0220 | |
| Bag 19 | 0230 | |
| Bag 14 | 0235 | |
| Economico | 0300 | |
| Economico Interinsular | 0350 | |
| Marítimo Baleares | 0370 | |
| Marítimo Canarias | 0385 | |
| Marítimo Interinsular | 0390 | |
| Express Documentos | 0400 | |
| Express 2 Kilos | 0450 | |
| Caja Express 3 Kilos | 0480 | |
| Documentos 14 | 0490 | |
| Ecommerce | 0800 | |
| Tramo Orario 08-14 | 0800_tramo_1 | |
| Tramo Orario 16-19 | 0800_tramo_2 | |
| Ecommerce Ultrarrápido - Frecuencia 1 | 0800_1 | |
| Ecommerce Ultrarrápido - Frecuencia 2 | 0800_2 | |
| Ecommerce Canje | 810 | |
|
|
||
| Standard | 0 | |
| Premium | 1 | |
|
|
||
| NACEX 10:00H | 20 | |
| NACEX 12:00H | 21 | |
| INTERDIA mañana | 22 | |
| INTERDIA tarde | 23 | |
| INTERDIA aéreo | 24 | |
| PLUS BAG 1 | 25 | |
| PLUS BAG 2 | 26 | |
| VALIJA | 27 | |
| VALIJA IDA Y VUELTA | 28 | |
| NACEX 19:00H | 29 | |
| PUENTE URBANO mañana | 30 | |
| PUENTE URBANO tarde | 31 | |
| PUENTE URBANO nocturno. | 32 | |
| DEVOLUCION ALBARAN CLIENTE | 33 | |
| NACEX 08:30H | 34 | |
| DEVOLUCION TALON | 35 | |
| DEVOLUCION PLUS BAG 1 | 36 | |
| DEVOLUCION PLUS BAG 2 | 37 | |
| DEVOLUCION E-NACEX | 38 | |
| NACEX SABADO | 39 | |
| CANARIAS MARITIMO | 40 | |
| CANARIAS 24H | 41 | |
| PLUS PACK | 42 | |
| E-NACEX | 43 | |
| PREMIUM | 44 | |
| NX-SHOP VERDE | 45 | |
| NX-SHOP NARANJA | 46 | |
| E-NACEX SHOP | 47 | |
| C@MBIO | 48 | |
| CANARIAS 48H | 49 | |
| INMEDIATO | 50 | |
| NACEX.SHOP | 51 | |
| SWAP | 52 | |
| RETORNO SWAP | 53 | |
| DEV. ORIGEN | 54 | |
| EURONACEX TERRESTRE | 55 | |
| SERVICIO AEREO | 56 | |
| EURONACEX ECONOMY | 57 | |
| PLUSPACK EUROPA | 58 | |
| BALEARES MARITIMO | 59 | |
|
|
||
| Sistema Completo | 0 | |
| Sistema Economy | 2 | |
| Sistema Slim | 1 | |
| Sistema Espresso | 3 | |
|
|
||
| ST2 - Same day delivery - Timeslot available - 2 hours | ST2 | |
| PT2 - Precise day delivery - Timeslot available - 2 hours | PT2 | |
| CT2 - Two-day delivery - Timeslot available - 2 hours | CT2 | |
| WT2 - Any day delivery - Timeslot available - 2 hours | WT2 | |
| ST3 - Same day delivery - Timeslot available - 3 hours | ST3 | |
| ST4 - Same day delivery - Timeslot available - 4 hours | ST4 | |
| NT4 - Next day delivery - Timeslot available - 4 hours | NT4 | |
| PT4 - Precise day delivery - Timeslot available - 4 hours | PT4 | |
| CT4 - Two-day delivery - Timeslot available - 4 hours | CT4 | |
| WT4 - Any day delivery - Timeslot available - 4 hours | WT4 | |
| STH - Same day delivery - Timeslot available - morning or evening slots | STH | |
| NTH - Next day delivery - Timeslot available - morning or evening slots | NTH | |
| PTH - Precise day delivery - Timeslot available - morning or evening slots | PTH | |
| CTH - Two-day delivery - Timeslot available - morning or evening slots | CTH | |
| WTH - Any day delivery - Timeslot available - morning or evening slots | WTH | |
| PTA - Precise day delivery - Timeslot available - All day | PTA | |
| STZ - Same day delivery - Timeslot available - Other | STZ | |
| NTZ - Next day delivery - Timeslot available - Other | NTZ | |
| PTZ - Precise day delivery - Timeslot available - Other | PTZ | |
| CTZ - Two-day delivery - Timeslot available - Other | CTZ | |
| WTZ - Any day delivery - Timeslot available - Other | WTZ | |
| XTZ - Same day / express delivery - Timeslot available - Other | XTZ | |
| SF2 - Same day delivery - Fixed timeslot - 2 hours | SF2 | |
| NF2 - Next day delivery - Fixed timeslot - 2 hours | NF2 | |
| PF2 - Precise day delivery - Fixed timeslot - 2 hours | PF2 | |
| CF2 - Two-day delivery - Fixed timeslot - 2 hours | CF2 | |
| WF2 - Any day delivery - Fixed timeslot - 2 hours | WF2 | |
| XF2 - Same day / express delivery - Fixed timeslot - 2 hours | XF2 | |
| SF4 - Same day delivery - Fixed timeslot - 4 hours | SF4 | |
| NF4 - Next day delivery - Fixed timeslot - 4 hours | NF4 | |
| PF4 - Precise day delivery - Fixed timeslot - 4 hours | PF4 | |
| CF4 - Two-day delivery - Fixed timeslot - 4 hours | CF4 | |
| WF4 - Any day delivery - Fixed timeslot - 4 hours | WF4 | |
| XF4 - Same day / express delivery - Fixed timeslot - 4 hours | XF4 | |
| NFA - Next day delivery - Fixed timeslot - All day | NFA | |
| PFA - Precise day delivery - Fixed timeslot - All day | PFA | |
| CFA - Two-day delivery - Fixed timeslot - All day | CFA | |
| WFA - Any day delivery - Fixed timeslot - All day | WFA | |
| NFZ - Next day delivery - Fixed timeslot - Other | NFZ | |
| PFZ - Precise day delivery - Fixed timeslot - Other | PFZ | |
| CFZ - Two-day delivery - Fixed timeslot - Other | CFZ | |
| WFZ - Any day delivery - Fixed timeslot - Other | WFZ | |
| XFZ - Same day / express delivery - Fixed timeslot - Other | XFZ | |
| PS2 - Precise day delivery - Fixed timeslot - 2 hours (custom) | PS2 | |
|
|
||
| Domestic | ||
| Standard nazionale | 0 | |
| Espresso nazionale | 1 | |
| International | ||
| Standard internazionale | APT000904 | |
| Espresso internazionale | APT000903 | |
| International Plus | APT001013 | |
|
|
||
| Extralarge | 0 | |
| Internazionale | 8 | |
| Economy | 3 | |
| Road Europe | 7 | |
| Export Box | 6 | |
| Crono Internazionale | P48 | |
|
|
||
| Domestic | ||
| SEUR 24 | 20 | |
| SEUR 10 | 21 | |
| SEUR 13:30 | 22 | |
| SEUR FRIO 10 | 27 | |
| SEUR FRIO 13:30 | 28 | |
| Seur FRIO 48 (Baleares) | 29 | |
| Seur 13 Saturday | 30 | |
| Seur 24 PICKUP | 31 | |
| International | ||
| Seur Internacional NON EU | 23 | |
| Seur Classic (DPD) Internacional Terrestre | 24 | |
| Seur Classic (DPD) Predict Crossborder | 25 | |
| Seur NetExpress (SEUR) Internacional Terrestre | 26 | |
| Seur Classic 2SHOP | 32 | |
|
|
||
| AT_DPD_PRIME_GEN | 20 | |
| AT_POST_0584 | 21 | |
| AT_POST_B2C | 46 | |
| BE_G3_STA | 22 | |
| BE_TOO_BP | 47 | |
| CH_SWP_PPECO | 23 | |
| DE_490_WINE | 24 | |
| DE_DHL_STA_POST | 25 | |
| DE_DPD_B2C | 26 | |
| DE_HERM_DROPOFF | 27 | |
| DE_HERM_STA | 28 | |
| DE_HERM_WINE | 29 | |
| DE_DHL_PAKET_WEBSERVICE | 43 | |
| ES_CORR_DROPOFF | 30 | |
| ES_CORR_STA | 31 | |
| FR_COL_SFS | 44 | |
| FR_GLS_ADO | 32 | |
| FR_GLS_STA | 33 | |
| FR_GLS_WINE | 34 | |
| FR_LPF_OTH | 35 | |
| FR_MONDIAL_DROPOFF | 36 | |
| INT_DHL_ECO | 37 | |
| INT_DHL_EXPMB | 38 | |
| IT_GLS_LIGHT | 39 | |
| IT_SDA_MULTI | 40 | |
| NL_G3_STA | 41 | |
| PT_CORR_RAN | 42 | |
| ES_PAA_STA | 45 | |
|
|
||
| Domestic | ||
| Domestic Express | 0 | |
| Domestic Express 1/5000 | 1 | |
| Express Documents | 6 | |
| Express Non Documents | 7 | |
| SKYSAVER | 8 | |
| International | ||
| USA Deferred | 9 | |
| USA Economy Service | 10 | |
|
|
||
| TRCK - TRACKED | 20 | |
| SIGN - SIGNATURED | 21 | |
| PPTT - PostNL Packet Tracked | 30 | |
| PPTR - PostNL Packet Registered | 31 | |
| PPNT - PostNL Packet Non Tracked | 32 | |
| CLLCT - Spring Collect Service | 33 | |
| TRPL - Tracked Plus | 34 | |
| SIPL - SIGNATURED | 35 | |
|
|
||
| 20 - DELEGATION | 20 | |
| 48 - ECONOMY | 21 | |
| 25 - FARMA | 22 | |
| 96 - MARITIMA | 23 | |
| 24 - PREMIUM | 24 | |
| 06 - TIPSA 06 | 25 | |
| 10 - TIPSA 10 | 26 | |
| 14 - TIPSA 14 | 27 | |
| MV - TIPSA, | 28 | |
| 50 - YUPICK | 29 | |
|
|
||
| Domestic | ||
| Express | 40 | |
| 10:00 Express | 42 | |
| 12:00 Express | 44 | |
| Express Plus | 46 | |
| International | ||
| Economy Express | 20 | |
| 12:00 Economy Express | 21 | |
| Express | 22 | |
| 9:00 Express | 24 | |
| 10:00 Express | 26 | |
| 12:00 Express | 28 | |
|
|
||
| Domestic | ||
| Nazionale Express | 0 | |
| Nazionale 12:00 Express | 1 | |
| Nazionale 10:00 Express | 2 | |
| Nazionale Economy Express | 3 | |
| International | ||
| Internazionale Express | 6 | |
| Internazionale 12:00 Express | 7 | |
| Internazionale Economy Express | 8 | |
| Internazionale 12:00 Economy Express | 9 | |
|
|
||
| ESPRESSO | ESPRESSO | |
| CAMIONISTICO | CAMIONISTICO | |
| TWSPACKETEXP | TWSPACKETEXP | |
| TWSPACKETCAM | TWSPACKETCAM | |
| TWSPACKETDOC | TWSPACKETDOC | |
| ESPRESSOGLS | ESPRESSOGLS | |
|
|
||
| Domestic | ||
| Nazionale Express Saver | 0 | |
| Nazionale Express | 1 | |
| Nazionale Express Plus | 2 | |
| Nazionale Standard | 3 | |
| International | ||
| Internazionale Express | 6 | |
| Internazionale Express Plus | 7 | |
| Internazionale Standard | 8 | |
| Internazionale Saver | 9 | |
| Expedited | 10 | |
| USA Next day air | 21 | |
| USA 2nd day air | 22 | |
| USA Ground | 23 | |
|
|
|
|---|---|
| Preavviso telefonico | S |
| Sponda idraulica | X |
| A.D.R. | R |
| ALLA CONS.RIT.MERC. | B6 |
| CONS. CON FURGONE | B8 |
| CON. CON TRASPALLET | 65 |
| CONS. CON MEZZO PICC | RK |
| CONS. MEZZO APERTURA LATERALE | Y |
| CONSEGNA AL PIANO | Z|A6 |
| CONSEGNA IN CANTINA | Q|A7 |
| FACCHINAGGIO | 6|A3 |
| FERMO DEPOSITO | F |
| FRAGILE | 28 |
| MERCE SUI BANCALI | C |
| NON SBANCALARE | B |
| NON SOVRAPPORRE | N |
|
|
|
| Economy | ECO |
| Signature | SIG |
| PUDO | PUDO |
| Mailbox | MBX |
| Predict next day | PND |
| Predict two days | P2D |
| Saturday | SAT |
| Evening delivery | ED |
| Timed delivery by 10.00 | 1000 |
| Timed delivery by 12.00 | 1200 |
| Dangerous Goods | DG |
| Address correction | AC |
| POD | POD |
| Flex | FLX |
| Enhanced liability 500 € | EL500 |
| Enhanced liability 45 € | EL45 |
| Enhanced liability 150 € | EL150 |
| Sea | SEA |
| Personal Delivery | PD |
|
|
|
| su appuntamento | A |
| consegna al piano | P |
| servizio fresh | FRESH_YYYY-MM-DD |
|
|
|
| Código Oficina (máximo 7 caracteres) | |
|
|
|
| Entrega el sábado | sabato |
|
|
|
| Al piano | alPiano |
| Sponda | sponda |
| Prenotazione telefonica | appuntamento |
|
|
|
| 08:00 Service | 0800Service |
| 09:00 Service | 0900Service |
| 10:00 Service | 1000Service |
| 12:00 Service | 1200Service |
| Saturday 10:00 Service | Saturday1000Service |
| Saturday 12:00 Service | Saturday1200Service |
| Saturday Service | SaturdayService |
|
|
|
| EXPRESS 12 | 22 |
| FLEX DELIVERY PARCEL | 31 |
| SMART DELIVERY SERVICE | 39 |
| EXCHANGE | 24 |
| CONSEGNA AL PIANO | 05 |
| PREAVVISO TELEFONICO | 25 |
| SERVIZIO AL SABATO | 07 |
| SERVIZIO AL SABATO AFTERNOON | 29 |
| ENTRO ORE 12 | 01 |
| ORA FISSA | 02 |
| SATURDAY EXPRESS | 36 |
| MEZZO IDONEO | 06 |
|
|
|
| Preavviso telefonico | preavvisoTelefonico |
|
|
|
| Entrega el sábado | sabato |
| Entrega urgente 8:30 | entrega830 |
| Entrega Partir De (de 00:00 a 23:00) | ejemplo 10:00 |
| Sin gestión | N_gestion |
| Gestión en origen | O_gestion |
| Gestión en destino | D_gestion |
| Sin retorno | N_retorno |
| Retorno de albarán cobro en destino | D_retorno |
| Retorno de mercancia | S_retorno |
| Sin confirmación inmediata de entrega/recogida | N_confirm |
| Confirmación inmediata de recogida | R_confirm |
| Confirmación inmediata de entrega | E_confirm |
|
|
|
| Al piano | alPiano |
| Sabato | sabato |
| Su appuntamento | appuntamento |
| Poste Delivery Now | PDBnow |
|
|
|
| consegna al piano | alPiano |
| consegna al sabato | sabato |
| consegna alla sera | sera |
| su appuntamento | appuntamento |
| Ore 09:00 | T09 |
| Ore 10:00 | T10 |
| Ore 12:00 | T12 |
|
|
|
| Entrega el sábado | sabato |
|
|
|
| Consegna entro le 09:00 AM - spedizione monocollo | T09 |
| Consegna entro le 10:00 AM | T10 |
| Consegna entro le 12:00 AM | T12 |
| Consegna Al Piano | PIA |
| Consegna Di Sabato | SAB |
| Consegna Su Appuntamento | APP |
| Consegna Di Sera | SER |
| Combinazione Consegna Al Piano/Di Sabato | PSA |
| Combinazione Consegna Al Piano/Su Appuntamento | PAP |
| Combinazione Consegna Al Piano/Di Sera | PSE |
| Combinazione Consegna Al Piano/Ore 9 | PI0 |
| Combinazione Consegna Al Piano/Ore 10 | PI1 |
| Combinazione Consegna Al Piano/Ore 12 | PI2 |
| Combinazione Consegna Di Sabato/Su Appuntamento | SAP |
| Combinazione Consegna Su Appuntamento/Di Sera | ASE |
| Combinazione Consegna Al Piano/Su Appuntamento/Di Sera | APS |
| Combinazione Al Piano/Di Sabato/Su Appuntamento | ASP |
|
|
|
| Direct Delivery Only | directDeliveryOnly |
|
|
|
|---|---|
| CONTANTE | A |
| ASSEGNO BANCARIO INTESTATO AL MITTENTE | 1 |
| ASSEGNO CIRCOLARE INTESTATO AL MITTENTE | 2 |
| ACCETTARE EFFETTO COME EMESSO DA DESTINATARIO | 9 |
|
|
|
| CONTANTE | 12 |
| ASSEGNO INTESTATO AL MITTENTE [BP] | 17 |
| ASSEGNO CIRCOLARE INTESTATO ALLA MITTENTE [CM] | 18 |
| ASSEGNO BANCARIO INTESTATO ALLA MITTENTE [BM] | 15 |
| ASSEGNO CIRCOLARE INTESTATO AL CORRIERE | 6 |
| ASSEGNO CIRCOLARE INTESTATO AL MITTENTE ORIGINALE [OC] | 10 |
| ASSEGNO INTESTATO AL MITTENTE ORIGINALE [OM] | 11 |
| ASSEGNO BANCARIO INTESTATO CORRIERE CON MANLEVA [BB] | 3 |
| ACCETTARE ASSEGNO BANCARIO INTESTATO ALLA MITTENTE COSI COME RILASCIATO [TM] | 19 |
|
|
|
| CASH, POS | YYY |
| CONTANTE | 12 |
| ASSEGNO CIRCOLARE INTESTATO AL MITTENTE ORIGINALE | 10 |
| ASSEGNO BANCARIO INTESTATO AL MITTENTE ORIGINALE | 15 |
| CONTANTI, POS, ASSEGNO O ASSEGNO POSTALE O ASSEGNO CIRCOLARE PAGABILE AL MITTENTE | 0 |
| ASSEGNO BANCARIO O ASSEGNO POSTALE INTESTATO CASA MANDANTE | RRR |
| ASS. CIRC. INT CASA MANDANTE | LLL |
| CASH, POS O ASSEGNO (BANC./POST./CIRCOLARE) INTESTATO CASA MANDANTE | JJJ |
|
|
|
| CONTANTE | 12 |
| ASSEGNO INTESTATO AL MITTENTE ORIGINALE | 15 |
|
|
|
| CONTANTE | CONT |
| ASSEGNO BANCARIO | AB |
| ASSEGNO CIRCOLARE/BANCARIO (NO POSTALE) | ABC |
| ASSEGNO BANCARIO/POSTALE (NO CIRCOLARE) | ABP |
| ASSEGNO CIRCOLARE | AC |
| ASSEGNO POSTALE | AP |
| ASSEGNO CIRCOLARE/BANCARIO/POSTALE | ASS |
| Ass. come rilasciato | ASR |
| Ass. come rilasciato int. Mittente | ARM |
| Ass. come rilasciato - no postale | ASRP |
| Ass. come rilasciato int. Mittente – no postale | ARMP |
|
|
|
| SOLO CONTANTI | CNT |
| ASSEGNO CIRCOLARE INTESTATO AL MITTENTE | ACM |
| ASSEGNO BANCARIO INTESTATO AL MITTENTE | ABM |
| ASSEGNO A MITTENTE COME RILASCIATO | 6 |
| CONTANTI O ASSEGNO A MITTENTE COME RILASCIATO | T |
|
|
|
| CONTANTE | 12 |
| ASSEGNO CIRCOLARE INTESTATO AL MITTENTE | 10 |
| ASSEGNO BANCARIO INTESTATO AL MITTENTE | 11 |
| ASSEGNO INTESTATO AL MITTENTE ORIGINALE | 15 |
|
|
|
| Tutti | VAR |
| Contanti | CON |
| Ass.Banc.Mittente | ABM |
| Ass.Banc.SDA | ABS |
| Ass.Circ.Mittente | ACM |
| Ass.Circ.SDA | ACS |
|
|
|
| CONTANTE | 12 |
| ASSEGNO INTESTATO AL MITTENTE ORIGINALE | 15 |












































































