Boxy API
  1. Pick-up Locations
Boxy API
  • Getting Started
    • Introduction
    • Environments
    • Security & Authentication
    • Rate Limit
    • Postman Collections
    • Schemas
    • Webhooks
  • Guides
    • Order Flow (Statuses)
    • Provinces & Regions
  • API Reference
    • Merchant
      • Get Merchant Info
    • Orders
      • Create Order
      • Create Bulk Orders (Sync)
      • Create Bulk Orders (Async)
      • List Orders
      • Show Order By UID
      • Show Order By Custom ID
      • Get Label Single
      • Get Label Bulk
      • Cancel Order
      • Update Order
      • Delete Order
    • Pick-ups
      • Request Pick-up
      • Request Pick-up Bulk
      • List Pick-ups
      • Show Pick-up
      • Get Pick-up Labels
      • Cancel Pick-up
      • Cancel Bulk Pick-ups
    • Pick-up Locations
      • Create Pick-up Location
        POST
      • List Pick-up Locations
        GET
      • Show Pick-up Location
        GET
      • Show Cash Drop-off Location
        GET
      • Update Pick-up Location
        PATCH
      • Delete Pick-up Location
        DELETE
    • Regions
      • List Regions
  1. Pick-up Locations

List Pick-up Locations

Production
https://api.tryboxy.com/api/v1/
Production
https://api.tryboxy.com/api/v1/
GET
merchants/saved-pick-up-addresses
List of Merchants pick-up locations

Request

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.tryboxy.com/api/v1/merchants/saved-pick-up-addresses' \
--header 'api-key: ' \
--header 'api-secret: '

Responses

🟢200Success
application/json
Body

Example
{
    "status": "success",
    "code": 200,
    "message": "Successfully done.",
    "object": {
        "items": [
            {
                "uid": "01JJV7S71VS2RBZ00SBB91QB0A",
                "platform_code": "BXSPUA-252922133",
                "title": "Main Warehouse",
                "type": "WAREHOUSE",
                "default": 1,
                "full_name": "John Doe",
                "phone": "9641111111111",
                "email": "info@example.com",
                "address_text": "Karada Street, Baghdad, Baghdad Governorate, Iraq",
                "lat": "44.390452",
                "lng": "33.291227",
                "description": "Main Warehouse",
                "created_at": "2025-01-30T09:13:27+00:00",
                "updated_at": "2025-01-30T09:13:27+00:00",
                "deleted_at": null
            },
            {
                "uid": "01JETVRKN4EJRYF100BRJQA8AJ",
                "platform_code": "BXSPUA-2434575582",
                "title": "Baghdad",
                "type": "WAREHOUSE",
                "default": 0,
                "full_name": "Warehouse",
                "phone": "9641111111111",
                "email": null,
                "address_text": "Main Warehouse 2",
                "lat": "33.30744882751735",
                "lng": "44.34824721679749",
                "description": null,
                "created_at": "2024-12-11T12:40:37+00:00",
                "updated_at": "2025-01-30T09:13:27+00:00",
                "deleted_at": null
            }
        ],
        "page": 1,
        "total": 2,
        "pages": 1,
        "perPage": 5
    }
Modified at 2025-02-05 16:01:13
Previous
Create Pick-up Location
Next
Show Pick-up Location
Built with