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

      代付订单回调

      Developing
      POST
      /withdrawalxxx
      此接口为商户提供的回调接口
      当订单状态更新为 1: 完成 2: 管理员驳回 3: 商户取消 均会发起回调
      商户端处理完成需要返回小写 success 字符串表示处理成功
      无论成功或失败只会自动回调一次, 之后如需再次回调需要联系管理员手动操作

      Request

      Body Params application/json

      Examples

      Responses

      🟢200Success
      text/plain
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST '/withdrawalxxx' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "username": "string",
          "merchantSerial": "string",
          "platformId": "string",
          "amount": 0,
          "state": 0,
          "extraParams": "string",
          "timestamp": 0,
          "sign": "string"
      }'
      Response Response Example
      success
      Modified at 2025-06-25 03:34:06
      Previous
      代付查询订单 - /gateway-api/withdrawal/get
      Built with