支付API
Chinese
Chinese
  • 欢迎 👏
  • 说明
    • 接入须知
    • 安全须知
    • 支付方式
    • 签名生成
    • 签名验证
    • 解密回调
    • 数据结构
  • 货币
    • 查询币种信息
    • 余额查询
  • 支付订单
    • 创建订单
    • 查询订单
    • 回调通知
    • 关闭订单
  • 代付
    • 查询代付订单
    • 发起代付
    • 回调通知
    • 关闭代付
  • 钱包
    • 添加监听钱包
    • 更新监听钱包
    • 删除监听钱包
    • 查询监听钱包
    • 回调通知
  • 错误码
    • 业务状态码
Powered by GitBook
On this page
  • 接口地址
  • 接口参数
  • 接口返回
  • 返回示例
  • 代码示例
  1. 支付订单

关闭订单

说明

用于用户手动取消订单或商家取消订单

接口地址

POST https://api.tokenpay.me/v1/transaction/close

接口参数

名称
位置
类型
必选
说明

app_id

header

string

是

应用 ID,示例值:8e4b8c2e7cxxxxxxxx1a1cbd3d59e0bd

mch_id

body

string

是

商户 ID,示例值:1234567890

transaction_id

body

string

否

平台订单号,示例值:2a1cfa6568xxxxxxxx3050957024c559

参数示例

{
  "app_id": "8e4b8c2e7cxxxxxxxx1a1cbd3d59e0bd",
  "mch_id": "1234567890",
  "transaction_id": "2a1cfa6568xxxxxxxx3050957024c559"
}

接口返回

名称
类型
说明
说明

code

integer

none

msg

string

状态描述

none

request_id

string

请求 ID

none

返回示例

{
  "code": 0,
  "msg": "成功",
  "request_id": "f23ade4a-e5ca-48f4-a4bb-59114ac360ba",
}

代码示例

curl --location --request POST 'https://api.tokenpay.me/v1/transaction/close' \
--header 'Authorization: <Authorization>' \
--header 'User-Agent: tokenpay API (https://tokenpay.me)' \
--header 'Content-Type: application/json' \
--data-raw '<body data here>'

package main

import (
   "fmt"
   "strings"
   "net/http"
   "io/ioutil"
)

func main() {

   url := "https://api.tokenpay.me/v1/transaction/close"
   method := "POST"

   payload := strings.NewReader(`<body data here>`)

   client := &http.Client {
   }
   req, err := http.NewRequest(method, url, payload)

   if err != nil {
      fmt.Println(err)
      return
   }
   req.Header.Add("Authorization", "<Authorization>")
   req.Header.Add("User-Agent", "tokenpay API (https://tokenpay.me)")
   req.Header.Add("Content-Type", "application/json")

   res, err := client.Do(req)
   if err != nil {
      fmt.Println(err)
      return
   }
   defer res.Body.Close()

   body, err := ioutil.ReadAll(res.Body)
   if err != nil {
      fmt.Println(err)
      return
   }
   fmt.Println(string(body))
}

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
   CURLOPT_URL => 'https://api.tokenpay.me/v1/transaction/close',
   CURLOPT_RETURNTRANSFER => true,
   CURLOPT_ENCODING => '',
   CURLOPT_MAXREDIRS => 10,
   CURLOPT_TIMEOUT => 0,
   CURLOPT_FOLLOWLOCATION => true,
   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
   CURLOPT_CUSTOMREQUEST => 'POST',
   CURLOPT_POSTFIELDS =>'<body data here>',
   CURLOPT_HTTPHEADER => array(
      'Authorization: <Authorization>',
      'User-Agent: token API (https://tokenpay.me)',
      'Content-Type: application/json'
   ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

import http.client
import json

conn = http.client.HTTPSConnection("https://api.tokenpay.me")
payload = "<body data here>"
headers = {
   'Authorization': '<Authorization>',
   'User-Agent': 'tokenpay API (https://tokenpay.me)',
   'Content-Type': 'application/json'
}
conn.request("POST", "/v1/transaction/close", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))

OkHttpClient client = new OkHttpClient().newBuilder()
   .build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "<body data here>");
Request request = new Request.Builder()
   .url("https://api.tokenpay.me/v1/transaction/close")
   .method("POST", body)
   .addHeader("Authorization", "<Authorization>")
   .addHeader("User-Agent", "tokenpay API (https://tokenpay.me)")
   .addHeader("Content-Type", "application/json")
   .build();
Response response = client.newCall(request).execute();
Previous回调通知Next代付

Last updated 2 months ago

业务状态码