- Introduction
- Get Started
- Signature
- What is WUSD
- Webhook Service
- Sandbox Environment
- Blockchain Confirmations
- Appendix
- API Keys
- Core Functionality
- Api Reference
- Authentication
- Wallet
- Address
- Remit Info
- Transaction
Delete Whitelist Address
Developing
POST
/openapi/v1/wallet-address/delete
Request
Body Params text/plain
Example
Field | Type | Required | Max Length | Description |
---|---|---|---|---|
id | Number | Y | 2^63 - 1 | whitelist address Id |
requestId | String | Y | 64 | A 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" : {
"id": 123,
"requestId":"af52515a-4779-4b7b-898a-b464283dbc2c"
}
}
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/wallet-address/delete' \
--header 'Content-Type: text/plain' \
--data-raw '{
"query" : {
"id": 123,
"requestId":"af52515a-4779-4b7b-898a-b464283dbc2c"
}
}'
Responses
🟢200成功
application/json
Body
header
object
required
success
boolean
required
result
object
required
id
integer
required
Example
{
"header": {
"success": true
},
"result": {
"id": 1857
}
}