API reference
Get a pickup point by ID
Returns one pickup point with its address and opening hours.
GET
/v1/shipping/pickup-points/{id}Returns one pickup point with its address and opening hours.
Authorization
bearerAuth AuthorizationBearer <token>
OAuth2 access token issued by Ecomiq Auth.
In: header
Path Parameters
id*string
Unique identifier of the resource.
Response Body
application/json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
curl -X GET "https://example.com/v1/shipping/pickup-points/string"{ "id": "string", "storeId": "string", "locationId": null, "connectionId": null, "sellerId": null, "isExternal": true, "externalId": null, "name": "string", "description": null, "state": null, "city": null, "neighborhood": null, "postalCode": null, "address": "string", "addressNumber": null, "reference": null, "observations": null, "latitude": null, "longitude": null, "deliveryTimeInMinutes": null, "leadTimeInMinutes": null, "isSellerPickupPoint": true, "contactName": null, "contactPhone": null, "contactEmail": null, "schedule": [ { "day": "monday", "openTime": "14:15:22Z", "closeTime": "14:15:22Z", "duration": "string" } ], "hasCoordinates": true, "status": "inactive", "createdOn": "2019-08-24T14:15:22Z", "updatedOn": null}