Create account
documentedCreate a new Copper Account resource.
POST /accountsAccountsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.copper.co/platform/portfolios" \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: ApiKey {{COPPER_API_KEY}}" \
-H "X-Signature: {{COPPER_SIGNATURE}}" \
-H "X-Timestamp: {{$timestamp}}" \
-d '{
"portfolioId": "{{$portfolioId}}",
"portfolioName": "{{$portfolioName}}",
"portfolioType": "custody",
"isDefiVault": {{$isDefiVault}},
"organizationId": "{{$organizationId}}",
"parentPortfolioId": "{{$parentPortfolioId}}",
"portfolioDescription": "{{$portfolioDescription}}"
}'