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

Show Pick-up Location

Production
https://api.tryboxy.com/api/v1/
Production
https://api.tryboxy.com/api/v1/
GET
merchants/saved-pick-up-addresses/{saved_pick_up_address_uid}
Show a single Merchants pick-up location

Request

Path Params

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": {
        "uid": "01JJV7S71VS2RBZYWSBB91QB0A",
        "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,
        "region": {
            "uid": "01JBYGPFDV30MY8AZ603N7YVGK",
            "province_code": "BGD",
            "province_en_name": "baghdad",
            "province": "بغداد",
            "area_name": "الشعب",
            "area_name_slug": "BGD1",
            "remote": 0,
            "created_at": "2024-11-05T16:11:58+00:00",
            "updated_at": "2024-11-05T16:11:58+00:00",
            "deleted_at": null
        }
    }
}
Modified at 2025-02-06 12:00:40
Previous
List Pick-up Locations
Next
Show Cash Drop-off Location
Built with