getCouriersPickupPoints

Operation Id:
couriers/pickupPoints/get [Official Documentaction]
Methods

  • courierId Integer
  • pickupPointId String
  • pickupPointExternalId String
  • resultsPage Integer
  • resultsLimit Integer
Examples

This function retrieves the pickup points associated with courier ID 2270020.

const result = await idosellRequest.getCouriersPickupPoints
	.courierId(2270020)
	.exec()

This function retrieves the external ID of a pickup point with the code "101293B" from the getCouriersPickupPoints collection.

const result = await idosellRequest.getCouriersPickupPoints
	.pickupPointExternalId("101293B")
	.exec()

This function returns the second page of ten couriers' pickup points.

const result = await idosellRequest.getCouriersPickupPoints
	.page(2,10)
	.exec()