OhayoShikin
    OhayoShikin
    • 接口说明
    • 代收余额查询 - /gateway-api/deposit/balance
      POST
    • 代收查询可用通道 - /gateway-api/deposit/channels
      POST
    • 代收创建订单 - /gateway-api/deposit/create
      POST
    • 代收查询订单 - /gateway-api/deposit/get
      POST
    • 代收订单回调
      POST
    • 代付余额查询 - /gateway-api/withdrawal/balance
      POST
    • 代付创建订单 - /gateway-api/withdrawal/create
      POST
    • 代付查询订单 - /gateway-api/withdrawal/get
      POST
    • 代付订单回调
      POST

      代收查询可用通道 - /gateway-api/deposit/channels

      POST
      /gateway-api/deposit/channels
      此接口非必须调用, 主要用于获取当前可用通道列表名称及编码, 也可以从商户后台查看可用通道获取编码, 或者从我方人员处索取相应通道编码

      Request

      Body Params application/json

      Examples

      Responses

      🟢200result
      application/json
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST '/gateway-api/deposit/channels' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "username": "merchant1",
          "timestamp": "1750520481407",
          "sign": "0DF58241B967D7EEB0C97D8D1547548C"
      }'
      Response Response Example
      {
          "code": 200,
          "msg": "OK",
          "data": [
              {
                  "code": "MVola-100-5000",
                  "name": "MVola小额",
                  "min": 100,
                  "max": 5000
              },
              {
                  "code": "MVola-5000-10000",
                  "name": "MVola大额",
                  "min": 5000,
                  "max": 10000
              }
          ]
      }
      Modified at 2025-06-24 07:12:33
      Previous
      代收余额查询 - /gateway-api/deposit/balance
      Next
      代收创建订单 - /gateway-api/deposit/create
      Built with