Skip to content

Create a brokerage.

POST
/api/brokerages
curl --request POST \
--url https://api.tradr.cloud/api/brokerages \
--header 'Content-Type: application/json' \
--data '{ "name": "example", "notes": "example" }'

Authed. Names are unique per user. The new brokerage starts with a zeroed fee schedule; set the rates with a follow-up PUT.

Media typeapplication/json
object
name
required
string
>= 1 characters <= 100 characters
notes
string
nullable <= 10000 characters
Examplegenerated
{
"name": "example",
"notes": "example"
}

The created brokerage.

Validation error.

A brokerage with this name already exists.