--- title: "Transfer funds" source_url: https://dev.digicert.com/certcentral-apis/services-api/finance/transfer-funds.html api_method: POST api_endpoint: "/services/v2/finance/transfer" api_url: "https://www.digicert.com/services/v2/finance/transfer" --- **POST** `https://www.digicert.com/services/v2/finance/transfer` Use this endpoint to transfer funds between CertCentral containers. ## Prerequisites To transfer funds between containers, referred to as divisions in the user interface, you must enable separate division funds in your CertCentral account. **To enable separate division funds:** 1. In CertCentral, go to **Finances > Settings**. 2. On the **Finance Settings** page, under **Division funds**, select **Enable separate division funds**. 3. Select **Save Settings**. ## Example requests and responses ## cURL ```bash curl --request POST 'https://www.digicert.com/services/v2/finance/transfer' \ --header 'X-DC-DEVKEY: {{api_key}}' \ --header 'Content-Type: application/json' \ --data-raw '{ "amount": "1000", "from_container_id": "608272", "to_container_id": "608373" }' ``` ## 204 No Content ```json // empty ``` ## Request parameters
Name Req/Opt Type Description
amount required int Amount of funds to transfer.
from_container_id required int ID for the container to transfer funds from.
to_container_id required int ID for the container to transfer funds to.