API
Payouts
List Payout
1min
You can list your payouts on Moyasar by using the following endpoint. The endpoint also supports pagination by passing the page parameter.
List payouts made using the Moyasar Payouts API.
GET
Request
Query Parameters
page
optional
String
Page number. Default: 1
Curl
1curl 'https://api.moyasar.com/v1/payouts'
Responses
200
1{
2 "payouts": [
3 {
4 "id": "6da068c2-6cbe-4ad3-ab11-2deb61ec2ac9",
5 "status": "initiated",
6 "amount": 20000,
7 "currency": "SAR",
8 "purpose": "personal",
9 "comment": null,
10 "destination": {
11 "city": "Riyadh",
12 "iban": "SA0380000000608010167519",
13 "name": "Abdulaziz",
14 "type": "bank",
15 "mobile": "0544424173",
16 "country": "KSA"
17 },
18 "message": null,
19 "created_at": "2023-08-16T13:45:30.067Z",
20 "updated_at": "2023-08-16T13:45:32.832Z",
21 "source_id": "8292cb17-0ca4-42ce-b8b3-a7eba3af038f"
22 },
23 {
24 "id": "5f896f5f-bb40-4265-8b6d-1eb4fcd4d4d1",
25 "status": "queued",
26 "amount": 20000,
27 "currency": "SAR",
28 "purpose": "personal",
29 "comment": null,
30 "destination": {
31 "city": "Riyadh",
32 "iban": "SA0380000000608010167519",
33 "name": "Abdulaziz",
34 "type": "bank",
35 "mobile": "0544424173",
36 "country": "KSA"
37 },
38 "message": null,
39 "created_at": "2023-08-16T13:51:23.263Z",
40 "updated_at": "2023-08-16T13:51:23.263Z",
41 "source_id": "8292cb17-0ca4-42ce-b8b3-a7eba3af038f"
42 },
43 {
44 "id": "4f912b3d-ec49-4202-a46a-fc8c1aa4cb07",
45 "status": "queued",
46 "amount": 50000,
47 "currency": "SAR",
48 "purpose": "personal",
49 "comment": null,
50 "destination": {
51 "city": "Riyadh",
52 "iban": "SA0380000000608010167519",
53 "name": "Abdulaziz",
54 "type": "bank",
55 "mobile": "0544424173",
56 "country": "KSA"
57 },
58 "message": null,
59 "created_at": "2023-08-16T13:51:23.263Z",
60 "updated_at": "2023-08-16T13:51:23.263Z",
61 "source_id": "8292cb17-0ca4-42ce-b8b3-a7eba3af038f"
62 }
63 ],
64 "meta": {
65 "current_page": 1,
66 "next_page": null,
67 "prev_page": null,
68 "total_pages": 1,
69 "total_count": 3
70 }
71}
Updated 23 Nov 2023
Did this page help you?