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 \ [CHANNEL_NAME]
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
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.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.
|
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 | ||||||||
reference°(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/
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.
It is based on 3 rules to identify the courier according to weight, any cash on delivery amount and the destination zip code.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 |
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.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
¤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). |
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
¤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 |
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.
Response Body200
Labels
createLabel
createLabel allows you to create a label in PDF or ZPL format (Settings should be configured on the control panel).Ask for activation to Customer Care.
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. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
gSpedPrinterID(int) | Possible printer id (user_id) for the Gsped Labeling Machine (to be agreed) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 or GLM. Can only be used if "printNodePrinterID" or "gSpedPrinterID" are also set. Default value: 0 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
goodsCode(string) |
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. |
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).Warning: the getLabel does NOT work with dummy labels created with the GENERIC courier (even with the createLabel API).
GEThttps://api.qapla.it/1.2/getLabel/?apiKey=[API_KEY]&trackingNumber=[TRACKING_NUMBER]
GEThttps://api.qapla.it/1.2/getLabel/?apiKey=[API_KEY]&reference=[ORDER_REFERENCE]
GEThttps://api.qapla.it/1.2/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 is "YYYY-MM-DD" |
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:
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 BRT, DHL, DHL-PAKET, DHLPARCEL-ES, FEDEX, FERMOPOINT, GLS, INPOST, PTI, UPS, CORREOS, TIPSA, CORREOS, CORREOS-EXPRESS, MRW-ES, SEUR, NACEX-ES and SENDING. 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 |
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' |
getQuotes
getQuotes allows you to request shipping quotes from multiple carriers 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 carriers do not support currency choice and return an error if any currency other than EUR is requested: GLS-ITA, LICCARDI. Additionally, carriers 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 carriers 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 carriers 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' "Carrier Codes" for which you want to get the quote. Valid carrier codes are DHL, FEDEX, GLS-ITA, LICCARDI, TNT-ITA, UPS and AMAZON-SHIPPING. If this parameter is not specified or left empty, quotes will be requested from all valid and configured carriers 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). | |||||||||||||||||||||||||||||||||||||||||||||||||||||
finishTimestamp(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]
getChannelMonitor
getChannelMonitor allows to obtain information on the channel connected to the API Key in a specific period.GEThttps://api.qapla.it/1.2/getChannelMonitor/?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 | ||
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 | G | Q |
---|---|---|
Default | 0 | 0 |
ARCO | G | Q |
Arco standard | 0 | 0 |
Arco urgente | 1 | 1 |
Arco espresso | 2 | 2 |
ASENDIA | G | Q |
e-PAQ Plus | 31 | |
e-PAQ Select | 32 | |
BRT | G | Q |
Express | 0 | 0 |
Priority | 1 | E |
10:30 | 2 | H |
Circuito DPD | 6 | 6 |
Circuito Euroexpress | 7 | 7 |
Circuito Fedex | 8 | 8 |
DPD Direct Infeed | 9 | 9 |
CORREOS | G | Q |
Domestic | ||
PAQUETE POSTAL PRIORITARIO (I) | 20 | |
POSTAL EXPRéS (I) | 21 | |
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 | |
PAQUETE POSTAL Económico (I) | 30 | |
PAQ PREMIUM ENTREGA EN HOMEPAQ | 31 | |
PAQ PREMIUM ENTREGA EN CITYPAQ | 32 | |
PAQ Estándar ENTREGA EN HOMEPAQ | 33 | |
PAQ Estándar ENTREGA EN CITYPAQ | 34 | |
International | ||
PAQ STANDARD INTERNACIONAL (I) | 24 | |
PAQ PREMIUM INTERNACIONAL (I) | 29 | |
PAQ INTERNACIONAL LIGH | 35 | |
CORREOS-EXPRESS | G | Q |
Domestic | ||
Paq 10 | 20 | 20 |
Paq 14 | 21 | 21 |
Paq 24 | 22 | 22 |
Baleares Express | 23 | 23 |
Canarias Express | 24 | 24 |
Canarias Aéreo | 25 | 25 |
Canarias Marítimo | 26 | 26 |
Paq Empresa 14 | 29 | |
ePaq 24 | 30 | |
54 Entrega Plus | 31 | 31 |
Express Islands | 32 | |
International | ||
Paq 24 | 22 | |
Internacional Estándar | 27 | 27 |
Internacional Express | 28 | 28 |
Paq Empresa 14 | 29 | 29 |
ePaq 24 | 30 | 30 |
54 Entrega Plus | 31 | |
CTT-EXPRESS | G | Q |
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 | |
Crono | G | Q |
Domestic | ||
Express | 2 | P46 |
Economy | 3 | P49 |
Crono | 1 | P44 |
CRONOPLUS | 5 | |
ROAD EUROPE - EURODIS | 6 | |
Circuito Euroexpress | 7 | |
International | ||
Internazionale | 8 | P48 |
DHL PARCEL CONNECT | G | Q |
Domestic | ||
DHL Parcel Connect | connect | |
DHL Parcel Connect PLUS | connectPlus | |
International | ||
DHL Parcel International | international | |
DHL-PAKET | G | Q |
Domestic | ||
Paket | 0 | 0 |
International | ||
WeltPaket | 6 | 6 |
Dhl | G | Q |
Domestic | ||
Domestic Express | 0 | |
Domestic Express 10:30 | 2 | |
Domestic Express 12:00 | 1 | |
Domestic Express 9:00 | 4 | |
Express Easy | 21 | |
International | ||
Economy Select | 8 | |
Medical Express | 20 | |
Parcel Product | 22 | |
Express Worldwide H12 | 7 | |
International Express Worldwide | 9 | |
International Express 9:00 | 10 | |
FERCAM | G | Q |
BOOK | 0 | |
FLEX | 2 | |
FIX | 1 | |
SPEED | 3 | |
Private | 5 | |
HD (check "assemblyTypes") | 20 | |
FedEx | G | Q |
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 | |
GLS-AT | G | Q |
PARCEL | PARCEL | |
EXPRESS | EXPRESS | |
FREIGHT | FREIGHT | |
GLS-ES | G | Q |
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 | G | Q |
InPost Locker Standard | 1 | |
A2L - InPost Locker Standard | 4 | |
Liccardi | G | Q |
Bancale | B | |
Dedicato | DE | |
Espresso | E | |
Reso | R | |
Store | ZS | |
MRW-ES | G | Q |
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 | |
Milkman | G | Q |
Standard | 0 | |
Premium | 1 | |
NACEX ES | G | Q |
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 | |
NEXIVE | G | Q |
Sistema Completo | 0 | |
Sistema Economy | 2 | |
Sistema Slim | 1 | |
Sistema Espresso | 3 | |
PAACK | G | Q |
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 | |
Poste Delivery Business | G | Q |
Domestic | ||
Standard nazionale | 0 | APT000902 |
Espresso nazionale | 1 | APT000901 |
International | ||
Standard internazionale | APT000904 | |
Espresso internazionale | APT000903 | |
SDA | G | Q |
Extralarge | 0 | S09 |
Internazionale | 8 | S08 |
Economy | 3 | S24 |
Road Europe | 7 | S34 |
Export Box | 6 | S36 |
Crono Internazionale | P48 | |
SEUR | G | Q |
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 | |
SMM-IT | G | Q |
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 | |
SkyNet Worldwide Express | G | Q |
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 | |
Spring GDS | G | Q |
TRCK - TRACKED | 20 | 20 |
SIGN - SIGNATURED | 21 | 21 |
PPTT - PostNL Packet Tracked | 30 | 30 |
PPTR - PostNL Packet Registered | 31 | 31 |
PPNT - PostNL Packet Non Tracked | 32 | 32 |
CLLCT - Spring Collect Service | 33 | |
TRPL - Tracked Plus | 34 | |
SIPL - SIGNATURED | 35 | |
TIPSA | G | Q |
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 | |
TNT ES | G | Q |
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 | |
TNT IT | G | Q |
Domestic | ||
Nazionale Express | 0 | 0 |
Nazionale 12:00 Express | 1 | 1 |
Nazionale 10:00 Express | 2 | 2 |
Nazionale Economy Express | 3 | 3 |
International | ||
Internazionale Express | 6 | 6 |
Internazionale 12:00 Express | 7 | 7 |
Internazionale Economy Express | 8 | 8 |
Internazionale 12:00 Economy Express | 9 | 9 |
TWS | G | Q |
ESPRESSO | ESPRESSO | |
CAMIONISTICO | CAMIONISTICO | |
TWSPACKETEXP | TWSPACKETEXP | |
TWSPACKETCAM | TWSPACKETCAM | |
TWSPACKETDOC | TWSPACKETDOC | |
ESPRESSOGLS | ESPRESSOGLS | |
UPS | G | Q |
Domestic | ||
Nazionale Express Saver | 0 | 0 |
Nazionale Express | 1 | 1 |
Nazionale Express Plus | 2 | 2 |
Nazionale Standard | 3 | 3 |
International | ||
Internazionale Express | 6 | 6 |
Internazionale Express Plus | 7 | 7 |
Internazionale Standard | 8 | 8 |
Internazionale Saver | 9 | 9 |
Expedited | 10 | 10 |
USA Next day air | 21 | 21 |
USA 2nd day air | 22 | 22 |
USA Ground | 23 | 23 |
ARCO | |
---|---|
Preavviso telefonico | S |
Sponda idraulica | X |
ASENDIA | |
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 |
BRT | |
su appuntamento | A |
consegna al piano | P |
servizio fresh | FRESH_YYYY-MM-DD |
CORREOS | |
Código Oficina (máximo 7 caracteres) | |
CORREOS EXPRESS | |
Entrega el sábado | sabato |
FERCAM | |
Al piano | alPiano |
Sponda | sponda |
Prenotazione telefonica | appuntamento |
GLS AT | |
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 |
GLS-ITA | |
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 |
LICCARDI | |
Preavviso telefonico | preavvisoTelefonico |
MRW_ES | |
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 |
PTI | |
Al piano | alPiano |
Sabato | sabato |
Su appuntamento | appuntamento |
Poste Delivery Now | PDBnow |
SDA / CRONO-PTI | |
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 |
SEUR | |
Entrega el sábado | sabato |
TWS | |
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 |
ARCO | G | Q |
---|---|---|
CONTANTE | A | A |
ASSEGNO BANCARIO INTESTATO AL MITTENTE | 1 | 1 |
ASSEGNO CIRCOLARE INTESTATO AL MITTENTE | 2 | 2 |
ACCETTARE EFFETTO COME EMESSO DA DESTINATARIO | 9 | |
BRT - DISK B – WS REST | G | Q |
CONTANTE | 12 | 12 |
ASSEGNO INTESTATO AL MITTENTE [BP] | 17 | 17 |
ASSEGNO CIRCOLARE INTESTATO ALLA MITTENTE [CM] | 18 | 18 |
ASSEGNO BANCARIO INTESTATO ALLA MITTENTE [BM] | 15 | 15 |
ASSEGNO CIRCOLARE INTESTATO AL CORRIERE | 6 | |
ASSEGNO CIRCOLARE INTESTATO AL MITTENTE ORIGINALE [OC] | 10 | 10 |
ASSEGNO INTESTATO AL MITTENTE ORIGINALE [OM] | 11 | 11 |
ASSEGNO BANCARIO INTESTATO CORRIERE CON MANLEVA [BB] | 3 | 3 |
ACCETTARE ASSEGNO BANCARIO INTESTATO ALLA MITTENTE COSI COME RILASCIATO [TM] | 19 | 19 |
DHL | G | Q |
CASH, POS | YYY | |
CONTANTE | 12 | |
ASSEGNO CIRCOLARE INTESTATO AL MITTENTE ORIGINALE | 10 | GGG |
ASSEGNO BANCARIO INTESTATO AL MITTENTE ORIGINALE | 15 | QQQ |
CONTANTI, POS, ASSEGNO O ASSEGNO POSTALE O ASSEGNO CIRCOLARE PAGABILE AL MITTENTE | 0 | KKK |
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 | |
FERCAM | G | Q |
CONTANTE | 12 | |
ASSEGNO INTESTATO AL MITTENTE ORIGINALE | 15 | |
GLS-ITA | G | Q |
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 | |
LICCARDI | G | Q |
SOLO CONTANTI | CNT | 3 |
ASSEGNO CIRCOLARE INTESTATO AL MITTENTE | ACM | 5 |
ASSEGNO BANCARIO INTESTATO AL MITTENTE | ABM | 4 |
ASSEGNO A MITTENTE COME RILASCIATO | 6 | |
CONTANTI O ASSEGNO A MITTENTE COME RILASCIATO | T | 8 |
POSTE DELIVERY BUSINESS | G | Q |
CONTANTE | 12 | 12 |
ASSEGNO CIRCOLARE INTESTATO AL MITTENTE | 10 | |
ASSEGNO BANCARIO INTESTATO AL MITTENTE | 11 | |
ASSEGNO INTESTATO AL MITTENTE ORIGINALE | 15 | |
SDA | G | Q |
Tutti | VAR | VAR |
Contanti | CON | CON |
Ass.Banc.Mittente | ABM | ABM |
Ass.Banc.SDA | ABS | ABS |
Ass.Circ.Mittente | ACM | ACM |
Ass.Circ.SDA | ACS | ACS |
TNT IT | G | Q |
CONTANTE | 12 | 12 |
ASSEGNO INTESTATO AL MITTENTE ORIGINALE | 15 | 15 |