# Move funds

## Move balance between accounts

> Transfers funds between your Proprietary (Owner) account and your Transactional account.

```json
{"openapi":"3.0.0","info":{"title":"Transactional Account API","version":"1.0.0"},"servers":[{"url":"https://api-stg.onekeypayments.com","description":"Staging Environment"}],"paths":{"/v1/wallet/transaction":{"post":{"summary":"Move balance between accounts","description":"Transfers funds between your Proprietary (Owner) account and your Transactional account.","operationId":"moveBalance","tags":["Internal Liquidity"],"parameters":[{"in":"header","name":"Content-Type","schema":{"type":"string","default":"application/json"},"required":true},{"in":"header","name":"X-Date","description":"ISO8601 Datetime with Timezone: yyyy-MM-dd'T'HH:mm:ssZ","schema":{"type":"string"},"required":true},{"in":"header","name":"X-Login","description":"Merchant X-Login API Key","schema":{"type":"string"},"required":true},{"in":"header","name":"Authorization","description":"Authorization control hash (Signature)","schema":{"type":"string"},"required":true},{"in":"header","name":"X-Idempotency-Key","description":"Unique key to prevent duplicate transactions","schema":{"type":"string","format":"uuid"},"required":true}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["source","destination","currency","amount"],"properties":{"source":{"type":"string","description":"The account funds are being taken from.","enum":["PROPRIETARY","TRANSACTIONAL"]},"destination":{"type":"string","description":"The account funds are being sent to.","enum":["PROPRIETARY","TRANSACTIONAL"]},"currency":{"type":"string","description":"3-letter ISO currency code."},"amount":{"type":"number","format":"float","description":"The value to transfer."}}}}}},"responses":{"200":{"description":"Successful Transfer","content":{"application/json":{"schema":{"type":"object","properties":{"currency":{"type":"string"},"proprietary_balance":{"type":"number","format":"float","description":"The new total balance of the Proprietary account."},"transactional_balance":{"type":"number","format":"float","description":"The new total balance of the Transactional account."}}}}}}}}}}}
```
