Metasky
  • Welcome!
  • Introduction
    • Our Solutions
    • Web 3.0 Resources
  • Metasky Studio
    • Introduction
    • Easy Steps To Create Your Own Club
    • Studio Modules
      • Messaging
      • Members
      • Utilities
        • Discord Utility
      • Collections
      • Bounties
        • Twitter
        • Custom
      • Marketplace
      • Leaderboard
      • Settings
      • Accounts
  • Skywallet (End User UI)
    • Home
    • Wallet
    • My Clubs
    • Updates
  • Metasky API Collection
    • Metasky API - Swagger Link
    • Authentication
    • Blockchains and Networks
    • ENUMS
    • API List
      • User
        • Register New User
      • Wallet
        • Fetch Wallet Balance Summary
        • Fetch All Wallet NFTs
        • Fetch All Coin Balances
        • Fetch NFT Details
        • Fetch System Health Status
      • Accounts
        • Create Specific Account
        • Fetch All Accounts
      • Orders
        • Fetch Listing Details
        • Preview Transfer Asset Order
        • Create a Transfer Order
        • Preview NFT Drop
        • Claim NFT Order
        • Fetch An Order
        • Fetch All Orders
      • Auth
        • Secure Action
        • Secure Action Verify
Powered by GitBook
On this page

Was this helpful?

  1. Metasky API Collection
  2. API List
  3. Orders

Fetch All Orders

List of all orders and their details

PreviousFetch An OrderNextAuth

Last updated 1 year ago

Was this helpful?

Fetch all client specific orders

get
Path parameters
user_uuidstringRequired

User UUID

Query parameters
pageNumberinteger · min: 1Optional

Page number

pageSizeinteger · min: 1 · max: 100Optional

Page size

Responses
200
Successful response
application/json
400
Invalid request
application/json
401
Authorization error
application/json
404
User not found
application/json
get
GET /api/v1/user/{user_uuid}/orders HTTP/1.1
Host: www.developer.metasky.me
Accept: */*
{
  "message": "all orders fetched",
  "data": {
    "order_uuids": [
      "6498c6a3-4fe5-4303-bf85-9c0ddf509028",
      "7e0c3676-82c9-43dc-8678-61bc4aa7c72c"
    ]
  },
  "status": "success",
  "request_id": "d5de1590-fcc6-452e-b3d0-55f7d0a30aa4"
}