ClickCrate
WebsiteSupportTwitter
  • Introduction
  • Overview
  • Quick Start
  • API Reference
    • Point of Sale (ClickCrate)
    • Product Listing
    • Orders
    • Credentials
    • Blinks
  • resources
    • Glossary
    • Common Issues
    • Need Help?
Powered by GitBook
On this page
  1. API Reference

Orders

Work with Orders

PreviousProduct ListingNextCredentials

Last updated 10 months ago

Get all native ClickCrate orders for a specific creator

get
Authorizations
Query parameters
creatorIdstringOptional
Header parameters
authorizationstringRequiredExample: Bearer <YOUR_API_KEY>
Responses
200
200
application/json
400
400
application/json
401
401
application/json
403
403
application/json
500
500
application/json
get
GET /v1/clickcrate/orders HTTP/1.1
Host: api.clickcrate.xyz
Authorization: Bearer API key
authorization: text
Accept: */*
{
  "orders": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "productId": "text",
      "productName": "text",
      "buyerId": "text",
      "sellerId": "text",
      "size": "text",
      "quantity": 1,
      "totalPrice": 1,
      "orderManager": "clickcrate",
      "creatorId": "text",
      "status": "Pending",
      "createdAt": "2025-06-01T03:01:02.314Z",
      "updatedAt": "2025-06-01T03:01:02.314Z",
      "shippingName": "text",
      "shippingEmail": "name@gmail.com",
      "shippingPhone": "text",
      "shippingAddress": "text",
      "shippingCity": "text",
      "shippingStateProvince": "text",
      "shippingCountryRegion": "text",
      "shippingZipCode": "text"
    }
  ]
}

Get a specific Square order

get
Authorizations
Path parameters
orderIdstringRequired
Header parameters
authorizationstringRequiredExample: Bearer <YOUR_API_KEY>
Responses
200
200
application/json
401
401
application/json
500
500
application/json
get
GET /v1/square/order/{orderId} HTTP/1.1
Host: api.clickcrate.xyz
Authorization: Bearer API key
authorization: text
Accept: */*
{
  "order": null
}

Get a specific Shopify order

get
Authorizations
Path parameters
orderIdstringRequired
Header parameters
authorizationstringRequiredExample: Bearer <YOUR_API_KEY>
Responses
200
200
application/json
401
401
application/json
500
500
application/json
get
GET /v1/shopify/order/{orderId} HTTP/1.1
Host: api.clickcrate.xyz
Authorization: Bearer API key
authorization: text
Accept: */*
{
  "order": null
}
  • GETGet all native ClickCrate orders for a specific creator
  • GETGet a specific Square order
  • GETGet a specific Shopify order