Getting Started
Capabilities
Payout Report
Charge
Banking
Subaccount
Create a Subaccount
Create a Subaccount which can be used to reconcile orders, refunds and payouts more easily.
POST
/
api
/
service
/
subaccount
/
create
Copy
Ask AI
curl --request POST \
--url https://api.sand.getivy.de/api/service/subaccount/create \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"legalName": "<string>",
"mcc": "<string>",
"websiteUrl": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"legalName": "<string>",
"status": "active",
"mcc": "<string>",
"ownerId": "<any>",
"websiteUrl": "<string>",
"createdAt": "<any>",
"updatedAt": "<any>",
"themeName": "default"
}
Authorizations
API key for authentication
Body
application/json
Response
200 - application/json
Returns a new Subaccount
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.sand.getivy.de/api/service/subaccount/create \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"legalName": "<string>",
"mcc": "<string>",
"websiteUrl": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"legalName": "<string>",
"status": "active",
"mcc": "<string>",
"ownerId": "<any>",
"websiteUrl": "<string>",
"createdAt": "<any>",
"updatedAt": "<any>",
"themeName": "default"
}
Assistant
Responses are generated using AI and may contain mistakes.