Search PaymentIntents
GET
/v1/payment_intents/searchReturns:
A dictionary with a data property that contains an array of up to limit PaymentIntents. If no objects match the query, the resulting array will be empty.
请求参数
Query Params
query
string
required
The search query string.
Example:
merchant_order_id:'order1234'
limit
integer
optional
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
Example:
10
示例代码
Responses
OK(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
Data Schema
object
string
optional
url
string
optional
has_more
boolean
optional
data
array [object]
optional
Example
{
"object": "string",
"url": "string",
"has_more": true,
"data": [
{}
]
}
Last modified: 9 个月前