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

Create a Transfer Order

PreviousPreview Transfer Asset OrderNextPreview NFT Drop

Last updated 1 year ago

Was this helpful?

Create a transfer order

post
Path parameters
user_uuidstringRequired

UUID of the user

Body
order_uuidstring ยท uuidOptionalExample: ece0711c-9a33-485e-9864-f516a1483084
Responses
200
Successful operation
application/json
400
Invalid request
application/json
401
Authorization error
application/json
404
User not found
application/json
post
POST /api/v1/user/{user_uuid}/orders/transfer HTTP/1.1
Host: www.developer.metasky.me
Content-Type: application/json
Accept: */*
Content-Length: 53

{
  "order_uuid": "ece0711c-9a33-485e-9864-f516a1483084"
}
{
  "message": "Transfer order created successfully",
  "status": "success",
  "request_id": "7e0c3676-82c9-43dc-8678-61bc4aa7c72c",
  "data": {
    "order_uuid": "123e4567-e89b-12d3-a456-426614174000",
    "order_type": "TRANSFER",
    "order_status": "PENDING",
    "order_note": "test transaction"
  }
}