Transfer funds
less than a minute
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:
- In CertCentral, go to Finances > Settings.
- On the Finance Settings page, under Division funds, select Enable separate division funds.
- Select Save Settings.
Example requests and responses
cURL
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
// 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. |
Was this page helpful?
Provide feedback