---
title: "Withdraw money"
method: POST
path: "/v1/interest/withdrawal"
tags: ["Interest engine"]
---

# Withdraw money

`POST /v1/interest/withdrawal`

Withdraw amount from an account.        

This endpoint generates the following events.
- [Interest withdrawal succeeded](https://developers.pismo.io/events/docs/interest-engine-interest-withdrawal-success-1) when withdrawal operation succeeds
- [Interest withdrawal failed](https://developers.pismo.io/events/docs/interest-engine-interest-withdrawal-failure-1) when withdrawal operation fails

For more information, refer to the [Interest-bearing accounts](https://developers.pismo.io/pismo-docs/docs/interest-bearing-accounts) guide.

## Headers

- `x-program-id` string, required
- `content-type` string, required
- `Authorization` string, required

## Request body

- InterestWithdrawalRequest
  - `tracking_id` string, UUID, required — Tracking ID for the operation to ensure idempotence. Must be an alphanumeric UUID with the alphabetical characters in lowercase.
  - `document_number` string — Cardholder government document number. This can be from any document that identifies the cardholder such as a Tax ID, State ID, or driver's license.
  - `account_id` string, number, required — Account ID
  - `amount` number, double, required — Amount to be deposited
  - `withdrawal_date` string, date, required — Deposit date. Format = YYYY-MM-DD.

## Response `200`

OK

- InterestWithdrawalResponse
  - `tracking_id` string, UUID, required — Tracking ID for the operation to ensure idempotence. Must be an alphanumeric UUID with the alphabetical characters in lowercase.

## Other responses

- `400` — Bad request
- `401` — Access token is missing or invalid
- `404` — Not Found
- `500` — Internal server error

---

[API](https://skmtc.net/pismo/apis/platform-authentication.md) · [All operations](https://skmtc.net/pismo/apis/platform-authentication/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pismo/platform-authentication/revisions/935b62e16de4/schema)
