WSPN
Language
  • English
Version
  • V1.0
HomeWallet
Language
  • English
Version
  • V1.0
HomeWallet
Twitter
Telegram
Linkedin
  1. Remit Info
  • Introduction
  • Get Started
  • Signature
  • What is WUSD
  • Webhook Service
  • Sandbox Environment
  • Blockchain Confirmations
  • Appendix
  • API Keys
  • Core Functionality
    • Core Functionality
    • Quickstart: Deposit via Blockchain Wallet
    • Quickstart: Withdraw via Blockchain Wallet
    • Quickstart: Deposit via Funds Transfer
    • Quickstart: Withdraw to Bank
  • Api Reference
    • Authentication
      • Get Access Token
      • Refresh Access Token
    • Wallet
      • Address
        • Get Deposit Address
        • Add Whitelist Address
        • Get Whitelist Address
        • Delete Whitelist Address
      • Remit Info
        • Get Deposit Remit Info
          GET
        • Add Remit Info
          POST
        • Edit Remit Info
          POST
        • Get Remit Info
          POST
        • Delete Remit Info
          POST
      • Transaction
        • Get Balance
        • Create Fiat Deposit
        • Create Fiat Withdraw
        • Create Crypto Withdraw
        • Get Fiat Transaction
        • Get Exchange Rate
        • Create Mint/Redeem
        • Mint/Redeem History
        • Get Mint Redeem Receipt
        • Get Fiat Transaction Receipt
        • Get Crypto Transaction Receipt
  1. Remit Info

Delete Remit Info

Developing
POST
/openapi/v1/remit-info/delete
API to delete the bank account for withdrawals.

Request

Body Params text/plain
Example
FieldTypeRequiredMax LengthDescription
idNumberY2^63 - 1
requestIdStringY64A unique identifier for the request. If the same request is sent again with the same requestId, it will be rejected to prevent duplicate processing.
Example:{ "query" : { "requestId":"af52515a-4779-4b7b-898a-b46f283dbc2c", "id": 1 } }

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://wallet.test.wspn.io/openapi/v1/remit-info/delete' \
--header 'Content-Type: text/plain' \
--data-raw '{
  "query" : {
      "requestId":"af52515a-4779-4b7b-898a-b46f283dbc2c",
       "id": 1
    }
 }'

Responses

🟢200成功
application/json
Body
header
object 
required
success
boolean 
required
result
object 
required
id
integer 
required
Example
{
  "header": {
    "success": true
  },
  "result": {
    "id": 1217
  }
}
Previous
Get Remit Info
Next
Get Balance
Built with