POST
/
merchant
/
invoice
/
mark_wire_transfer_success
curl --request POST \
  --url https://api.unibee.top/merchant/invoice/mark_wire_transfer_success \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "invoiceId": "<string>",
  "reason": "<string>",
  "transferNumber": "<string>"
}'
{
  "code": 123,
  "data": {},
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Mark wire transfer pending invoice as success

invoiceId
string
required

The unique id of invoice

transferNumber
string
required

The transfer number of invoice

reason
string

The reason of mark action

Response

200 - application/json
code
integer
data
object
message
string
redirect
string
requestId
string