GetAbroadPayoutBill

GET /payout/bill/abroad/{merchant}

Download the payout bill

Path parameters

  • merchant string Required

    Merchant name to payment company, e.g. wechat.sh_smk

Query parameters

  • bill_date string Required

    Bill date. Query format YYYY-MM-DD, for example, 2021-01-01

  • Merchant ID of merchant.

  • Must be wechatpay or alipay

    Values are wechatpay or alipay.

Responses

  • 200 string(binary)

    Download the payout bill successfully.

  • 400 object

    Request validation failure

  • 401 object

    Not Authenticated.

  • 500 object

    Something wrong when download the payout bill.

GET /payout/bill/abroad/{merchant}
curl \
 -X GET https://nomad.samarkand-global.cn/broker/v1/payout/bill/abroad/{merchant}?bill_date=string \
 -H "app-api-key: $API_KEY"
Response example (200)
"@file"
Response example (400)
{
  "code": 200,
  "message": "success"
}
Response example (401)
{
  "code": 200,
  "message": "success"
}
Response example (500)
{
  "code": 200,
  "message": "success",
  "errors": "Something wrong when making the service."
}