> ## Documentation Index
> Fetch the complete documentation index at: https://docs.finsei.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How can I create debit payment to another Finsei wallet?

Here are the steps:

1. Execute [`POST /v3/payment`](/api-reference/endpoint/post-v3-payment) with the following parameters in the request body, where:
   * `walletId`: UUID of the debit wallet
   * `targetWalletId`: UUID of the credit wallet

```json theme={null}
{
"status": "new",
"walletId": 0, 
"amount": 0, 
"targetWalletId": 0, 
"reference": "string"					
}
```
