Firstbase API
  • INTRODUCTION
    • REST API
    • Use Cases
      • User Management
      • Asset Management
      • Catalog and Ordering
  • GETTING STARTED
    • Generating your API Key
    • Authentication
    • Making requests
    • Pagination
    • Rate Limiting
    • Deprecations - WIP
    • Filtering - WIP
  • API Reference
    • Catalog
      • Skus
    • Inventory
      • Tags
      • Assignment
      • Archive
    • Orders
    • Shipments
    • Packages
    • Users
    • Specification
Powered by GitBook
On this page
  1. API Reference

Packages

PreviousShipmentsNextUsers

List all packages

get
Authorizations
Query parameters
pageinteger · int32Optional

The page number to request (1 based)

Default: 1Example: 1
sizeinteger · int32Optional

The number of results to return in a page

Default: 100Example: 10
Responses
200
OK
application/json
400
Bad Request
*/*
403
Forbidden
*/*
404
Not Found
*/*
get
GET /api/packages HTTP/1.1
Host: apipub.firstbasehq.com
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "id": "3a68a467-8733-4c8d-a942-16ed7ec33018",
    "name": "The works",
    "automaticOrder": false,
    "approvalRequired": false,
    "active": true,
    "skuIds": "[3cf416c1-1b0f-4344-9cec-ba9c9fe615c9]",
    "assignedTo": {
      "people": "[3cf416c1-1b0f-4344-9cec-ba9c9fe615c9]"
    }
  }
]