Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Warning!

The resource is available only in the following countries: PL

Dispatch points define addresses from which shipments can be picked up by the courier. which have been specified in the dispatch order.



On this page

 

Structure

Dispatch points resource has the following attributes:

AttributeTypeDescriptionValid values
Availability
idIntegerDispatch point identifier
PL
nameStringDispatch point name
PL
office_hoursStringDispatch point operating hours
PL
phoneStringDispatch point phone number
PL
emailStringDispatch point email address
PL
commentsString
Additional informations

PL
addressObjectDispatch point address
PL
statusStringDispatch point statuscreated, activated, suspended PL

Dispatch Point example in JSON:

{
  "href": "https://api-shipx-pl.easypack24.net/v1/dispatch_points/1",
  "id": 1,
  "name": "My dispatch point",
  "office_hours": "8-16",
  "phone": "777888999",
  "email": null,
  "comments": null,
  "status": "created",
  "address": {
    "id": 230,
    "street": "Long",
    "building_number": "24",
    "city": "Cracow",
    "post_code": "30-624",
    "country_code": "PL"
  }
}



Authentication

Access to the resource requires a valid access token.



List of dispatch points

List of dispatch points within a specific organization.

(info) To get a dispatch point list for a specific organization, the user must be a member of it.

GET /v1/organizations/:organization_id/dispatch_points

Request example

curl -X GET https://api-shipx-pl.easypack24.net/v1/organizations/1/dispatch_points -H 'Authorization: Bearer token' -H 'Content-Type: application/json'

Response

HTTP/1.1 200 OK
Content-Type: application/json
{
    "href": "https://api-shipx-pl.easypack24.net/v1/organizations/1/dispatch_points",
    "count": 15,
    "per_page": 30,
    "page": 1,
    "items": [
        {
			"href": "https://test.api.shipx.pl.easypack24.net/v1/dispatch_points/1",
			"id": 1,
			"name": "My dispatch point",
			"office_hours": "8-16",
			"phone": "777888999",
			"email": null,
			"comments": null,
			"status": "created",
			"address": {
				"id": 230,
				"street": "Długa",
				"building_number": "24",
				"city": "Krakow",
				"post_code": "30-624",
				"country_code": "PL"
			}
		}
    ]
}

Errors

Errors that may occur while getting the list of dispatch points:

  • resource_not_found - the organization for which the user wants to get the dispatch point list does not exist.

  • forbidden - the specific access token does not entitle you to get the dispatch point list for the selected organization.



Dispatch point details

GET /v1/dispatch_points/:id

Request example

curl -X GET https://api-shipx-pl.easypack24.net/v1/dispatch_points/1 -H 'Authorization: Bearer token' -H 'Content-Type: application/json'

Response

HTTP/1.1 200 OK
Content-Type: application/json
 {
  "href": "https://test.api.shipx.pl.easypack24.net/v1/dispatch_points/1",
  "id": 1,
  "name": "My dispatch point",
  "office_hours": "8-16",
  "phone": "777888999",
  "email": null,
  "comments": null,
  "status": "created",
  "address": {
    "id": 230,
    "street": "Długa",
    "building_number": "24",
    "city": "Krakow",
    "post_code": "30-624",
    "country_code": "PL"
  }
}

Errors

  • resource_not_found - dispatch point with given ID does not exist.



  • No labels