List Transactions
Production
https://api.salla.dev/admin/v2
Production
https://api.salla.dev/admin/v2
GET
https://api.salla.dev/admin/v2
Transactions
Last modified:2025-04-22 11:04:33
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.salla.dev/admin/v2/transactions?keyword=test&last_4_digit=8490&payment_method=credit_card&status=paid&amount=100&order_id=982374933&page=1'
Response Response Example
200 - Success (200)
{
"status": 200,
"success": true,
"data": [
{
"id": 19940416533,
"customer": {
"id": 48447423,
"email": "[email protected]",
"mobile": "+966512345678",
"first_name": "Ahmed",
"last_name": "Adel"
},
"references": {
"order_id": 413420930,
"cart_id": 171420334123,
"transaction": 44556293650
},
"total": {
"amount": 121,
"currency": "SAR"
},
"payment_method": {
"name": "mada",
"slug": "mada",
"icon": "https://cdn.assets.salla.network/prod/admin/cp/assets/images/payment_methods/4.png"
},
"status": {
"name": "مؤكدة",
"slug": "paid"
},
"card": {
"brand": "mada",
"number": "123123xxxxxx6789",
"country": "SA"
},
"available_actions": [
"refund",
"print"
],
"created_at": {
"date": "2024-07-04 03:33:36.000000",
"timezone_type": 3,
"timezone": "Asia/Riyadh"
},
"notes": "Additional Note"
},
{
"id": 7172398767,
"customer": {
"id": 357838499,
"email": "[email protected]",
"mobile": "+966591234567",
"first_name": "Customer",
"last_name": "Name"
},
"references": {
"order_id": 637894790,
"cart_id": 1044130972,
"transaction": 555984480243
},
"total": {
"amount": 121,
"currency": "SAR"
},
"payment_method": {
"name": "mada",
"slug": "mada",
"icon": "https://cdn.assets.salla.network/prod/admin/cp/assets/images/payment_methods/4.png"
},
"status": {
"name": "ملغية",
"slug": "canceled"
},
"card": {
"brand": "mada",
"number": "123123xxxxxx4567",
"country": "SA"
},
"available_actions": [
"refund"
],
"created_at": {
"date": "2024-06-30 05:01:13.000000",
"timezone_type": 3,
"timezone": "Asia/Riyadh"
},
"notes": "تم رفض العملية من قبل البنك يرجى استخدام وسيلة دفع اخرى"
}
],
"pagination": {
"count": 4,
"total": 19,
"perPage": 15,
"currentPage": 2,
"totalPages": 2,
"links": {
"next": "http://api.salla.dev/admin/v2/payment/transactions?page=2"
}
}
}
Request
Query Params
keyword
string
optional
Example:
test
last_4_digit
integer
optional
Example:
8490
payment_method
enum<string>
optional
Allowed values:
credit_cardmadastc_payfreebankcodpaypalapple_paygoogle_pay
Default:
all payment method slug
Example:
credit_card
status
enum<string>
optional
Allowed values:
initiatedpendingpaidcanceledrefundedpartial_refunded
Example:
paid
amount
number
optional
Example:
100
order_id
integer
optional
Example:
982374933
page
integer
optional
Example:
1
Responses
Modified at 2025-04-22 11:04:33