SwiftPOD
  1. Api
SwiftPOD
  • Api
    • Webhook
      • List Webhooks
      • Subscribe to Webhook
      • Unsubcribe to webhook
      • Webhook Notification - Order Status Change Example
      • Webhook Notification - Tracking Number Example
      • Webhook Notification - In Transit and Delivered Status Example
      • Webhook Notification - Stock Status Change Example
    • Orders
      GET
    • Create Order
      POST
    • Create Multiple Orders
      POST
    • Get Order
      GET
    • Update Order
      PUT
    • Update Order Status
      PUT
    • Cancel Order
      POST
    • Catalogs
      GET
  • Changelog
  1. Api

Get Order

GET
/v1/orders/{id}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
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.swiftpod.com/v1/orders/' \
--header 'id: Order-00699'

Responses

🟢200Get Order
application/json
Body

Example
{
    "id": "06lz3a11",
    "order_id": "Example-042",
    "test_order": false,
    "sample_order": false,
    "reprint_order": false,
    "created_at": "2023-05-11T02:24:48.000000Z",
    "updated_at": "2023-05-11T02:24:48.000000Z",
    "status": "new_order",
    "rejected_at": null,
    "rejected_status": null,
    "cancelled_at": null,
    "line_items": [
        {
            "id": 795657,
            "sku": "WORB3H00L",
            "quantity": 2,
            "order_item_id": "Example-042",
            "print_files": [
                {
                    "key": "front",
                    "url": "https://via.placeholder.com/2400/09f/fff.png"
                },
                {
                    "key": "pocket",
                    "url": "https://via.placeholder.com/2400/09f/fff.png"
                },
                {
                    "key": "rightsleeve",
                    "url": "https://via.placeholder.com/2400/09f/fff.png"
                },
                {
                    "key": "outernecklabel",
                    "url": "https://via.placeholder.com/2400/09f/fff.png"
                }
            ]
        }
    ],
    "trackings": [
        {
            "tracking_number": "IGAY0CX...U8K",
            "tracking_url": "https://a1.asendiausa.com/tracking/?trackingnumber=xxxx",
            "carrier": "AsendiaUsa",
            "created_at": "2023-04-27T11:39:34.000000Z",
            "status": "unknown",
            "label_url": "https://easypost-files.s3.us-west-2.amazonaws.com/files/postage_label/20240312/e8ab4953a913e64c769e8bd3857943029af9.png",
            "shipped_items": [
                {
                    "order_item_id": "Example-042-001",
                    "quantity": 3
                }
            ],
            "primary": false
        },
        {
            "tracking_number": "LM334....8US",
            "tracking_url": "https://tools.usps.com/go/TrackConfirmAction.action?tLabels=xxx",
            "carrier": "USPS",
            "created_at": "2023-04-27T11:40:08.000000Z",
            "status": "pre_transit",
            "label_url": "https://easypost-files.s3.us-west-2.amazonaws.com/files/postage_label/20240312/e8ab4953a913e64c769e8bd3857943029af9.png",
            "shipped_items": [
                {
                    "order_item_id": "Example-042-002",
                    "quantity": 3
                },
                {
                    "order_item_id": "Example-042-003",
                    "quantity": 1
                }
            ],
            "primary": true
        }
    ],
    "shipping_method": "standard",
    "ioss_number": "IM84cbd25",
    "address": {
        "name": "Lynda Adner",
        "company": null,
        "phone": "(+1) 415-419-8616 ext. 60877",
        "street1": "5 N CLARKSON AVE",
        "street2": null,
        "city": "MASSENA",
        "state": "NY",
        "country": "FR",
        "zip": "21364"
    },
    "return_address": null,
    "insert": [
        {
            "name": "packing_slip",
            "url": "https://via.placeholder.com/2400/09f/fff.png",
            "size": "8.5x11"
        },
        {
            "name": "gift_message",
            "url": "https://swiftpod.s3.us-west-1.amazonaws.com/demo/gift-card.jpg",
            "size": "4x6"
        }
    ]
}
Modified at 2025-08-04 03:29:47
Previous
Create Multiple Orders
Next
Update Order
Built with