Payee Delete
API Information
- Path:
/api/v1/beneficiary/remove - Method: POST
- Content-Type: application/json
Business Description
- Used to delete payee information that is no longer in use.
Request Parameters
Headers
Request Headers
| Parameter | Value | Required | Description |
|---|---|---|---|
| Content-Type | application/json | Yes | Request body type |
Request Body
Main Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| merchantNo | string | Merchant Number (provided by oneway) | M |
| beneficiaryId | integer | Payee ID | M |
| sign | string | Signature | M |
Request Example
json
{
"merchantNo": "800181",
"beneficiaryId": 1899696430844878848,
"sign": "12312sdfadsf"
}Response Result
Response Headers
| Parameter | Value | Required | Description |
|---|---|---|---|
| content-type | application/json;charset=UTF-8 | Yes | Response body type |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| respCode | string | Response Code |
| respMsg | string | Response Message |
| data | object | Response Data |
| └─beneficiaryId | integer | Payee ID |
| └─status | string | Deletion Status |
Response Example
json
{
"respCode": "20000",
"respMsg": "Success",
"data": {
"beneficiaryId": 1899696430844878848,
"status": "DELETED"
}
}Important Notes
- Deletion operation cannot be reversed
- Please ensure the Payee ID is correct
- It is recommended to query and confirm payee information before deletion