# 关闭代付

{% hint style="info" %}
说明

用于用户手动取消代付或商家取消代付
{% endhint %}

## **接口地址**

```
POST https://api.tokenpay.me/v1/payanother/close
```

## **接口参数**

<table><thead><tr><th>名称	</th><th width="119">位置</th><th>类型	</th><th>必选</th><th>说明</th></tr></thead><tbody><tr><td>app_id</td><td>header</td><td>string</td><td>是</td><td>应用 ID，示例值：<code>8e4b8c2e7cxxxxxxxx1a1cbd3d59e0bd</code></td></tr><tr><td>mch_id</td><td>body</td><td>string</td><td>是</td><td>商户 ID，示例值：<code>12345678</code></td></tr><tr><td>payanother_id</td><td>body</td><td>string</td><td>否</td><td>平台订单号，示例值：<code>2a1cfa6568xxxxxxxx3050957024c559</code></td></tr></tbody></table>

**参数示例**

```
{
  "app_id": "8e4b8c2e7cxxxxxxxx1a1cbd3d59e0bd",
  "mch_id": "12345678",
  "payanother_id": "2a1cfa6568xxxxxxxx3050957024c559"
}
```

## **接口返回**

| 名称          | 类型      | 说明                                                                  | 说明   |
| ----------- | ------- | ------------------------------------------------------------------- | ---- |
| code        | integer | [业务状态码](https://ttpay.gitbook.io/api/cuo-wu-ma/ye-wu-zhuang-tai-ma) | none |
| msg         | string  | 状态描述                                                                | none |
| request\_id | string  | 请求 ID                                                               | none |

## **返回示例** <a href="#fan-hui-shi-li" id="fan-hui-shi-li"></a>

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

## **代码示例**

{% tabs %}
{% tab title="Shell" %}

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

{% endtab %}

{% tab title="Go" %}

```go
package main

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

func main() {

   url := "https://api.tokenpay.me/v1/payanother/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))
}
```

{% endtab %}

{% tab title="PHP" %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
   CURLOPT_URL => 'https://api.tokenpay.me/v1/payanother/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: tokenpay API (https://tokenpay.me)',
      'Content-Type: application/json'
   ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
```

{% endtab %}

{% tab title="Python" %}

```python
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/payanother/close", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
```

{% endtab %}

{% tab title="Java" %}

```java
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/payanother/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();
```

{% endtab %}
{% endtabs %}

\ <br>

<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://apidoc.tokenpay.me/chinese/dai-fu/guan-bi-dai-fu.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
