Exportpaczka - API

Exportpaczka - API

  • API

›General information

General information

  • Authorization
  • Requests & responses
  • Country routes
  • Global additions
  • Package additions
  • Order object
  • Price checking
  • Creating order
  • Checking order details
  • Downloading order label

Country routes

Base url: https://exportpaczka.pl/api/v1/countryRoute

Description

This resource allows you to get list of all available country routes. Each country route object contains countryFrom, countryTo and parcelType objects.

Example of countryRoute object:

{
    "countryFrom": {
        "name": "Poland",
        "code": "PL"
    },
    "countryTo": {
        "name": "Czech Republic",
        "code": "CZ"
    },
    "parcelType": "dox"
}

Available methods:

List of all available country routes

  • Method GET
  • Url /list
  • Full url https://exportpaczka.pl/api/v1/countryRoute/list
  • Example success response:
{
    "success": true,
    "body": [
        {
            "countryFrom": {
                "name": "Poland",
                "code": "PL"
            },
            "countryTo": {
                "name": "Czech Republic",
                "code": "CZ"
            },
            "parcelType": "dox"
        },
        {
            "countryFrom": {
                "name": "Poland",
                "code": "PL"
            },
            "countryTo": {
                "name": "Slovakia",
                "code": "SK"
            },
            "parcelType": "dox"
        }
    ]
}
← Requests & responsesGlobal additions →
Copyright © 2020 Exportpaczka.pl