List Payments
GET
/admin/payments
Payments
id
. The payments can also be sorted or paginated.Request Request Example
JavaScript
Shell
Java
Swift
curl --location -g --request GET '{{BASE_URL}}/admin/payments'
Response Response Example
200 - Example 1
{
"limit": 0,
"offset": 0,
"count": 0,
"payments": [
{
"payment_session": {
"payment": {
"id": "string",
"amount": 0,
"authorized_amount": 0,
"currency_code": "string",
"provider_id": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"captured_at": "2019-08-24T14:15:22Z",
"canceled_at": "2019-08-24T14:15:22Z",
"captured_amount": 0,
"refunded_amount": 0,
"captures": [
{
"id": "string",
"amount": 0,
"created_at": "2019-08-24T14:15:22Z",
"created_by": "string",
"payment": {}
}
],
"refunds": [
{
"refund_reason": {
"id": "string",
"label": "string",
"description": "string",
"metadata": {},
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
},
"id": "string",
"amount": 0,
"refund_reason_id": "string",
"note": "string",
"created_at": "2019-08-24T14:15:22Z",
"created_by": "string",
"payment": {}
}
],
"payment_collection": {},
"payment_session": {},
"data": {}
},
"id": "string",
"amount": 0,
"currency_code": "usd",
"provider_id": "string",
"authorized_at": "2019-08-24T14:15:22Z",
"payment_collection": {},
"data": {},
"status": "authorized",
"context": {
"customer": {
"id": "cus_123"
}
}
},
"id": "string",
"amount": 0,
"authorized_amount": 0,
"currency_code": "string",
"provider_id": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"captured_at": "2019-08-24T14:15:22Z",
"canceled_at": "2019-08-24T14:15:22Z",
"captured_amount": 0,
"refunded_amount": 0,
"captures": [
{
"id": "string",
"amount": 0,
"created_at": "2019-08-24T14:15:22Z",
"created_by": "string",
"payment": {}
}
],
"refunds": [
{
"payment": {
"id": "string",
"amount": 0,
"authorized_amount": 0,
"currency_code": "string",
"provider_id": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"captured_at": "2019-08-24T14:15:22Z",
"canceled_at": "2019-08-24T14:15:22Z",
"captured_amount": 0,
"refunded_amount": 0,
"captures": [
{
"id": "string",
"amount": 0,
"created_at": "2019-08-24T14:15:22Z",
"created_by": "string",
"payment": {}
}
],
"refunds": [
{
"refund_reason": {
"id": "string",
"label": "string",
"description": "string",
"metadata": {},
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
},
"id": "string",
"amount": 0,
"refund_reason_id": "string",
"note": "string",
"created_at": "2019-08-24T14:15:22Z",
"created_by": "string",
"payment": {}
}
],
"payment_collection": {},
"payment_session": {},
"data": {}
},
"refund_reason": {
"id": "string",
"label": "string",
"description": "string",
"metadata": {},
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
},
"id": "string",
"amount": 0,
"refund_reason_id": "string",
"note": "string",
"created_at": "2019-08-24T14:15:22Z",
"created_by": "string"
}
],
"payment_collection": {},
"data": {}
}
]
}
Request
Query Params
fields
stringÂ
fields
+
it will be added to the default fields, using -
will remove it from the default fields. without prefix it will replace the entire default fields.offset
numberÂ
offset
limit
numberÂ
limit
order
stringÂ
order
-
.q
stringÂ
q
id
optional
One of
payment_session_id
optional
One of
$ne
array[string]
optional
Example:
["","",""]
$gt
array[string]
optional
Example:
["","",""]
$gte
array[string]
optional
Example:
["","",""]
$lt
array[string]
optional
Example:
["","",""]
$lte
array[string]
optional
Example:
["","",""]
$like
array[string]
optional
like
filter. Useful for strings only.Example:
["","",""]
$re
array[string]
optional
Example:
["","",""]
$ilike
array[string]
optional
like
filter. Useful for strings only.Example:
["","",""]
$fulltext
array[string]
optional
Example:
["","",""]
$exists
array[string]
optional
null
).Example:
["","",""]
$and
array [object]Â
$and
Example:
["","",""]
$or
array [object]Â
$or
Example:
["","",""]
$in
array[string]
optional
Example:
["","",""]
$nin
array[string]
optional
Example:
["","",""]
$overlap
array[string]
optional
Example:
["","",""]
$contains
array[string]
optional
Example:
["","",""]
$contained
array[string]
optional
Example:
["","",""]
$eq
array[string]
optional
Example:
["","",""]
$not
array[string]
optional
Example:
["","",""]
Responses
Modified at 2025-06-17 04:10:32