列出所有支付意图
返回一个支付意向列表。
GET https://api.stripe.com/v1/payment_intents
示例
cURL 示例:
cURL
curl -X GET https://api.stripe.com/v1/payment_intents \
-u <YOUR_SECRET_KEY>:
响应
响应返回标准代码。
200: OK
Response
{
"object": "list",
"data": [
{
"id": "pi_1234567890",
"object": "payment_intent",
"amount": 1000,
"currency": "usd",
"status": "requires_confirmation"
}
],
"has_more": false,
"url": "/v1/payment_intents"
}
错误响应
400: Bad Request
Response
{
"error": {
"message": "If passing an array with explicit keys (e.g. foo[0]=a&foo[1]=b) instead of as an array (e.g. foo[]=a&foo[]=b), the keys must be numeric and sequential starting from 0. You passed the keys `1`, we expected to have a key with the value `0`.",
"param": "expand",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_kCeAL5FAly5bkh?t=1734734555",
"type": "invalid_request_error"
}
}
401: Unauthorized
Response
{
"error": {
"type": "invalid_request_error",
"message": "Invalid API Key provided: sk_test_********************1234"
}
}
参数
查询参数
| 参数 | 类型 | 说明 |
|---|---|---|
limit | 整数 | 限制响应中的记录数。请输入 1 到 100 之间的整数(默认值:10)。 |
starting_after | 字符串 | 用于分页操作的光标。starting_after 是一个对象 ID,用于定义您在列表中的位置。 |
ending_before | 字符串 | 用于分页的游标。ending_before 是一个对象 ID,用于定义您在列表中的位置。 |
expand[] | 字符串数组 | 用于标识需要进行数据增强并内联返回的嵌套响应对象。 |