Get Fund Split Summary
POST/v1/fund_split/get_summary_list
Get merchant settlement fund split summary list
Request
- application/json
Body
required
merchant_id string
non-empty
Merchant ID
sett_no string
<= 64 characters
Settlement number
transaction_begin_date string
non-empty, Value must match regular expression ^(\d{4})-(\d{2})$
Transaction start date (YYYY-MM)
transaction_end_date string
non-empty, Value must match regular expression ^(\d{4})-(\d{2})$
Transaction end date (YYYY-MM)
Responses
- 200
- default
OK
- application/json
- Response
- Example
Response
Array [
]
merchant_id string
Merchant ID
sett_split_list
object[]
Settlement split status list
sett_no string
Settlement number
pending_num int32
Pending count
cancelled_num int32
Cancelled count
completed_num int32
Complete count
locked_num int32
Locked count
{
"merchant_id": "string",
"sett_split_list": [
{
"sett_no": "string",
"pending_num": 0,
"cancelled_num": 0,
"completed_num": 0,
"locked_num": 0
}
]
}
Error response structure
- application/json
- Response
- Example
Response
Array [
]
Array [
]
name string
message string
details
object[]
@type string
The type of the serialized message.
debug_id string
causes
object[]
cause string
solution string
{
"name": "string",
"message": "string",
"details": [
{
"@type": "string"
}
],
"debug_id": "string",
"causes": [
{
"cause": "string",
"solution": "string"
}
]
}
Loading...