curl --location --request POST '/v1.3/leads_invalid_pay/get' \
--header 'access_token;' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'Content-Type: application/json' \
--data-raw '{
"account_id": 123456,
"month": "2022-01"
}'
{
"code": 0,
"message": "",
"message_cn": "",
"data": {
"list": [
{
"account_id": 123456,
"account_name": "账户名称 1",
"is_real_pay": true,
"pay_total_amount": 103.25,
"pay_details": [
{
"leads_id": 101
},
{
"leads_id": 102
}
]
},
{
"account_id": 223456,
"account_name": "账户名称 2",
"is_real_pay": false,
"pay_total_amount": 0,
"no_pay_reason": "本账号本月未满足无效赔付政策要求 48h 内线索标注率>=50%,导致“确认赔付”标签失效,不进行真实赔付。",
"pay_details": []
}
]
}
}