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 An Order

Details of order

PreviousClaim NFT OrderNextFetch All Orders

Last updated 1 year ago

Was this helpful?

Fetch an order

get
Path parameters
user_uuidstringRequired

User UUID

order_uuidstringRequired

Order UUID

Responses
200
Successful response
application/json
400
Invalid request
application/json
401
Authorization error
application/json
404
User not found
application/json
405
Order not found
application/json
get
GET /api/v1/user/{user_uuid}/orders/{order_uuid} HTTP/1.1
Host: www.developer.metasky.me
Accept: */*
{
  "message": "Order fetched",
  "data": {
    "order_uuid": "2202e60a-a7a4-405c-9635-cfd50e2e68a3",
    "nft_uuid": "7e0c3676-82c9-43dc-8678-61bc4aa7c72c",
    "token_uuid": "f1f5c6ce-836a-425d-a30d-5c0669bb4200",
    "quantity": 1,
    "from_address": "0xD0A34eFa38E1dDF6BE88e012D115F35Ecd19b523",
    "to_address": "0xP0334eFa38E1dDF6BE88e012D115F35Ecd19b523",
    "order_note": "test_note",
    "created_at": "2023-05-24T17:35:00.250Z",
    "order_type": "TRANSFER",
    "order_status": "PENDING",
    "payment_mode": "FIAT",
    "payment_reference_id": "8034780eu238e38383",
    "onchain_transaction_hashes": [
      "hash1",
      "hash2",
      "hash3"
    ],
    "payment_asset_symbol": "INR",
    "payment_asset_quantity": "100"
  },
  "status": "success",
  "request_id": "29d80826-6261-4963-a2c4-3d7667e4516d"
}