Create Accounts

POST /portfolio/{fin}/accounts

Create Accounts

Create accounts for the given user and entity.

Path parameters

  • fin string Required

    The Finplex Identity Number of the user to create the account under

application/json

Body Required

  • accounts array[string] Required

    The display names of the accounts to be created

  • fen string Required
POST /portfolio/{fin}/accounts
curl \
 -X POST http://api.example.com/portfolio/{fin}/accounts \
 -H "Content-Type: application/json" \
 -d '{"accounts":["string"],"fen":"string"}'
Request example
{
  "accounts": [
    "string"
  ],
  "fen": "string"
}
Request examples
{
  "accounts": [
    "string"
  ],
  "fen": "string"
}
Response examples (201)
[
  "string"
]
Response examples (201)
[
  "string"
]