Boxy API
  1. Pick-ups
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
        POST
      • Request Pick-up Bulk
        POST
      • List Pick-ups
        GET
      • Show Pick-up
        GET
      • Get Pick-up Labels
        GET
      • Cancel Pick-up
        POST
      • Cancel Bulk Pick-ups
        POST
    • Pick-up Locations
      • Create Pick-up Location
      • List Pick-up Locations
      • Show Pick-up Location
      • Show Cash Drop-off Location
      • Update Pick-up Location
      • Delete Pick-up Location
    • Regions
      • List Regions
  1. Pick-ups

Show Pick-up

Production
https://api.tryboxy.com/api/v1/
Production
https://api.tryboxy.com/api/v1/
GET
merchants/pick-ups/{pickup_uid}
Show a single pick-up

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/pick-ups/' \
--header 'api-key: ' \
--header 'api-secret: '

Responses

🟢200Success
application/json
Body

Example
{
    "status": "success",
    "code": 200,
    "message": "Successfully done.",
    "object": {
        "uid": "01JKDQA7YT9N18BEM00MKMX68C",
        "platform_code": "BXPU-253673336",
        "date": "2025-02-07",
        "created_at": "2025-02-06T13:31:13+00:00",
        "updated_at": "2025-02-06T13:31:13+00:00",
        "deleted_at": null,
        "orders_count": 1,
        "shipment_fee": 30000,
        "order_value": 10000,
        "driver": null,
        "total_price": 40000,
        "status": {
            "title": "new",
            "slug": "new"
        },
        "last_statuses": [
            {
                "title": "new",
                "slug": "new",
                "pivot": {
                    "issuer_type": "MERCHANT",
                    "issuer_id": 2,
                    "created_at": "2025-02-06T13:31:13.000000Z",
                    "updated_at": "2025-02-06T13:31:13.000000Z"
                }
            }
        ],
        "task": {
            "uid": "01JKDQA89YXSRC009DTM06XVKK",
            "platform_code": "BXT-253651946",
            "title": null,
            "type": "PICK-UP-ORDERS",
            "lat": "44.390452",
            "lng": "33.291227",
            "address_text": "Karada Street, Baghdad, Baghdad Governorate, Iraq",
            "description": "Main Warehouse",
            "full_name": "John Doe",
            "phone": "9641111111111",
            "email": "info@example.com",
            "created_at": "2025-02-06T13:31:14+00:00",
            "updated_at": "2025-02-06T13:31:14+00:00",
            "deleted_at": null,
            "task_list": null
        }
    }
}
Modified at 2025-02-06 13:39:52
Previous
List Pick-ups
Next
Get Pick-up Labels
Built with