# Create a Withdrawal

## Method and URL

<mark style="color:green;">`POST`</mark> \[<mark style="color:orange;">BASE\_URL</mark>]/v1/withdrawals

## Request

**Request Body**

```json
{
  "referenceId": "TEST-REFORZA-2025-001",
  "withdrawType": "BANK_TRANSFER",
  "balanceType": "PAYOUT_BALANCE",
  "isFullAmount": false,
  "amount": {
    "value": "10000",
    "currency": "IDR"
  },
  "description": "Test Reforza Pivot"
}
```

**Detail Parameter Request**

<table><thead><tr><th width="176">Parameter</th><th>Data Type</th><th>Character limit</th><th width="134.3984375">Requirement</th><th width="283">Description</th></tr></thead><tbody><tr><td>Withdrawal</td><td>Object</td><td>-</td><td>M</td><td><a data-mention href="/pages/a2Xg4hBQFePwe8ub5kXn">/pages/a2Xg4hBQFePwe8ub5kXn</a></td></tr></tbody></table>

## Response

**Response Body**

{% code fullWidth="false" %}

```json
{
  "code": "00",
  "message": "OK",
  "data": {
    "id": "0199130c-f3aa-7024-b547-0ef3216f9602",
    "merchantId": "e485e01b-ff59-4a47-bb7d-9b39064f3388",
    "withdrawal": {
      "referenceId": "TEST-REFORZA-2025-001",
      "withdrawType": "BANK_TRANSFER",
      "balanceType": "PAYOUT_BALANCE",
      "isFullAmount": false,
      "amount": {
        "currency": "IDR",
        "value": "10000"
      },
      "description": "Test Reforza Pivot"
    },
    "status": "SUCCESS",
    "createdAt": "2025-09-04T04:47:20Z",
    "updatedAt": "2025-09-04T04:47:20Z"
  }
}
```

{% endcode %}

**Detail Parameter Response**

<table><thead><tr><th>Parameter</th><th width="121.150390625">Data Type</th><th width="135.8369140625">Requirement</th><th>Description</th></tr></thead><tbody><tr><td>code</td><td>String</td><td>M</td><td>Response Code from Pivot</td></tr><tr><td>message</td><td>String</td><td>M</td><td>Human readable message that represent response from Pivot</td></tr><tr><td>data</td><td>Object</td><td>M</td><td>Response Data from Pivot contains <a data-mention href="/pages/a2Xg4hBQFePwe8ub5kXn">/pages/a2Xg4hBQFePwe8ub5kXn</a></td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://pivot-payment.gitbook.io/pivot-docs/api-references/api-lists/account-and-balance/withdrawal/create-a-withdrawal.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
