Withdrawal

Get Withdrawals

GET /dashboard/finances/withdraw

Query Parameters

Name
Type
Description

status

String

Options: requested, onprocess, rejected, paid

per_page

Integer

Limit data per page

page

Integer

Change page

q

String

Limit data withdrawal based on string

channel

String

Limit data withdrawal based on payment channel, (can be multiple channel)

Headers

Name
Type
Description

Client-Key*

String

Your client key

Authorization*

String

Your bearer token admin

{
    "data": [
        {
            "id": "f7fd2cdf-6c64-4596-a849-a8fff985074d",
            "note": "Ambil duit buat event lalala",
            "amount": 10000,
            "net_amount": 10000,
            "transaction_fee": 0,
            "payment_status": "paid",
            "bank_code": "MANDIRI",
            "bank_account_name": "Khalid",
            "bank_account_number": "13100595266",
            "created_at": "2024-02-07 14:17:08"
        }
    ],
    "meta": {
        "pagination": {
            "total": 1,
            "count": 1,
            "per_page": 15,
            "current_page": 1,
            "total_pages": 1,
            "links": {}
        }
    }
}

Withdraw

POST /dashboard/finances/withdraw

Headers

Name
Type
Description

Client-Key*

String

Your client key

Authorization*

String

Your bearer token admin

Request Body

Name
Type
Description

amount*

Double

bank_code*

String

bank_account_name*

String

bank_account_number*

String

note

String

Example Request Body for Withdrawal

Get Detail Withdrawal

GET /dashboard/finances/withdraw/{id}

Path Parameters

Name
Type
Description

id

String

Headers

Name
Type
Description

Client-Key*

String

Your client key

Authorization*

String

Your bearer token admin

Get Recent Withdrawal

GET /dashboard/finances/withdraw/recent

Headers

Name
Type
Description

Client-Key*

String

Your client key

Authorization*

String

Your bearer token admin

Finances Withdrawals Export

GET /dashboard/finances/exports/withdrawals

Query Parameters

Name
Type
Description

channel

String

status

String

Headers

Name
Type
Description

Client-Key*

String

Your client key

Authorization*

String

Your bearer token admin

Last updated