curl --request POST \
--url https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit \
--header 'Content-Type: application/json' \
--header 'x-auth-token: <api-key>' \
--header 'x-idempotency-key: <x-idempotency-key>' \
--data '
{
"limit_amount": 80000,
"duration_in_days": 14
}
'import requests
url = "https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit"
payload = {
"limit_amount": 80000,
"duration_in_days": 14
}
headers = {
"x-idempotency-key": "<x-idempotency-key>",
"x-auth-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-idempotency-key': '<x-idempotency-key>',
'x-auth-token': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({limit_amount: 80000, duration_in_days: 14})
};
fetch('https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'limit_amount' => 80000,
'duration_in_days' => 14
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-auth-token: <api-key>",
"x-idempotency-key: <x-idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit"
payload := strings.NewReader("{\n \"limit_amount\": 80000,\n \"duration_in_days\": 14\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-idempotency-key", "<x-idempotency-key>")
req.Header.Add("x-auth-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit")
.header("x-idempotency-key", "<x-idempotency-key>")
.header("x-auth-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"limit_amount\": 80000,\n \"duration_in_days\": 14\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-idempotency-key"] = '<x-idempotency-key>'
request["x-auth-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"limit_amount\": 80000,\n \"duration_in_days\": 14\n}"
response = http.request(request)
puts response.read_body{
"card_id": "c0cef051-29c5-4796-b86a-cd5b684bfad7",
"card_order_id": "c0cef051-29c5-4796-b86a-cd5ee34bfad7",
"order_status": "PENDING"
}Elevate Per-Transaction Limit
在不走审批流程的情况下,临时提升某张 ACTIVE 卡片的单笔限额。提升后的限额在本次提升过期后自动恢复为卡片的标准单笔限额;卡片的长期限额设置保持不变。
各币种上限
| 币种 | 提升后的单笔限额上限 |
|---|---|
| USD / XUSD | 80,000 |
| SGD | 100,000 |
并发
一张卡片同一时间只能有一笔处于 processing 或 active 状态的提升。若在一笔提升仍生效时再次提交请求,将返回 400。
由服务端管理的字段(请勿在请求体中发送)
| 字段 | 原因 |
|---|---|
currency | 由卡片币种解析得出。 |
intent | 由服务端固定为内部枚举。 |
reason | 不接受。 |
异步结果
同步响应仅确认请求已收到,并返回 order_status: PENDING。最终结果通过 card.elevate_limit.succeeded 或 card.elevate_limit.failed webhook 送达。通过 card_id 将 webhook 与请求匹配——一张卡片同一时间只能有一笔进行中的提升。
curl --request POST \
--url https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit \
--header 'Content-Type: application/json' \
--header 'x-auth-token: <api-key>' \
--header 'x-idempotency-key: <x-idempotency-key>' \
--data '
{
"limit_amount": 80000,
"duration_in_days": 14
}
'import requests
url = "https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit"
payload = {
"limit_amount": 80000,
"duration_in_days": 14
}
headers = {
"x-idempotency-key": "<x-idempotency-key>",
"x-auth-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-idempotency-key': '<x-idempotency-key>',
'x-auth-token': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({limit_amount: 80000, duration_in_days: 14})
};
fetch('https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'limit_amount' => 80000,
'duration_in_days' => 14
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-auth-token: <api-key>",
"x-idempotency-key: <x-idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit"
payload := strings.NewReader("{\n \"limit_amount\": 80000,\n \"duration_in_days\": 14\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-idempotency-key", "<x-idempotency-key>")
req.Header.Add("x-auth-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit")
.header("x-idempotency-key", "<x-idempotency-key>")
.header("x-auth-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"limit_amount\": 80000,\n \"duration_in_days\": 14\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.uqpaytech.com/api/v1/issuing/cards/{id}/elevate_limit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-idempotency-key"] = '<x-idempotency-key>'
request["x-auth-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"limit_amount\": 80000,\n \"duration_in_days\": 14\n}"
response = http.request(request)
puts response.read_body{
"card_id": "c0cef051-29c5-4796-b86a-cd5b684bfad7",
"card_order_id": "c0cef051-29c5-4796-b86a-cd5ee34bfad7",
"order_status": "PENDING"
}授权
由 UQPAY 提供的登录 API Token。
请求头
指定代表哪个子账户发起请求。应设置为 account_id,该值可通过 List Connected Accounts 接口获取。若省略或为空,则请求以主账户身份执行。
更多信息参见 关联账户。
用于维持操作幂等性的唯一标识符(UUID),确保同一操作的重复执行不会产生意外影响或重复。它有助于在网络错误、重试或失败的情况下保持数据一致性。
路径参数
资源的全局唯一标识符(UUID v4)。
"71fdb0fe-9682-457a-9361-e8868694f12f"
请求体
响应
提升请求已受理。请监听 webhook 获取最终结果。
卡片的唯一标识符。
"c0cef051-29c5-4796-b86a-cd5b684bfad7"
卡订单的 ID。
"c0cef051-29c5-4796-b86a-cd5ee34bfad7"
在刚受理的提升请求上始终为 PENDING。请监听 card.elevate_limit.succeeded 或 card.elevate_limit.failed webhook 获取最终结果。
PENDING "PENDING"

