FastPOD
  1. Orders
FastPOD
  • Getting Started
  • Orders
    • List Orders
      GET
    • Get Order
      GET
    • Create Order
      POST
    • Cancel Order
      POST
    • Estimate Order Price
      POST
    • Estimate Item Price
      POST
    • Update Order
      PUT
    • Update Status
      PUT
  • Catalog
    • List Catalogs
      GET
  • Webhook
    • List Webhooks
      GET
    • Subscribe
      POST
    • Unsubcribe
      DELETE
  1. Orders

List Orders

GET
/v1/orders
The API responds with a paginated list of orders based on the provided parameters.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Header Params

Body Params application/x-www-form-urlencoded

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-v2.fastpod.net/v1/orders?page=1&limit=25&status=&search=&start_date&end_date&shipping_method&order_type&payment_method&payment_status' \
--header 'Accept: application/json'

Responses

🟢200List Orders
application/json
Body

Example
{
    "current_page": 1,
    "data": [
        {
            "id": "FAS105-111423-000006",
            "reference_id": "20231111",
            "order_status": "draft",
            "test_order": false,
            "item_total": 36,
            "shipping_total": 8,
            "surcharge_total": 0,
            "order_total": 44,
            "payment_method": "cash",
            "payment_status": "unpaid",
            "point_earned": 0,
            "point_used": 0,
            "quantity_total": 0,
            "shipping_method": "1",
            "boost_production": false,
            "gift_message": null,
            "created_at": "2023-11-14T10:17:10.000000Z",
            "updated_at": "2023-11-14T10:17:10.000000Z",
            "rejected_at": null,
            "rejected_status": null,
            "cancelled_at": null,
            "address": {
                "name": "Michael Brown",
                "company": "My company",
                "email": "michaelbrown@demo.com",
                "phone": "(330) 829-0294",
                "street1": "3431 Reeves Street",
                "street2": null,
                "city": "Milwaukee",
                "state": "WI",
                "country": "US",
                "zip": "53202"
            },
            "line_items": [
                {
                    "id": 5207,
                    "item_id": "1",
                    "name": "Item 1",
                    "sku": "UNGT1W00L",
                    "style": "5000",
                    "color": "WHITE",
                    "size": "L",
                    "unit_price": 12,
                    "quantity": 3,
                    "price": 36,
                    "print_areas": {
                        "front": "url",
                        "back": "url"
                    },
                    "preview_areas": {
                        "front": "url",
                        "back": "url"
                    }
                }
            ],
            "shipments": []
        }
    ],
    "next_page_url": "http://api-v2.fastpod.net/v1/orders?page=1&limit=251",
    "path": "http://api-v2.fastpod.net/v1/orders?page=1&limit=25",
    "per_page": 25,
    "prev_page_url": null,
    "to": 25,
    "total": 1
}
Modified at 2024-01-03 16:11:49
Previous
Getting Started
Next
Get Order
Built with