post https://apex-crypto/api/v2/accounts
Use this endpoint to create new investor accounts. The client must provide an account ID that uniquely identifies the investor from other investors on the client's platform.
Responses
Use this endpoint to create new investor accounts. The client must provide an account ID that uniquely identifies the investor from other investors on the client's platform.
xxxxxxxxxx
19curl --request POST \
--url https://apex-crypto/api/v2/accounts \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"entity": {
"entityType": "CORPORATE"
},
"investmentProfile": {
"accountGoals": {
"investmentObjective": "BALANCED"
},
"customerProfile": {
"annualIncomeRangeUsd": "UNDER_25K"
}
}
}
'