Skip to main content
POST
https://api-oms.verolabs.co
/
api
/
v1
/
util
/
firms
/
traders
Add a firm trader mapping
curl --request POST \
  --url https://api-oms.verolabs.co/api/v1/util/firms/traders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "firm_id": "<string>",
  "trader_id": "<string>"
}
'
{
  "firm_id": "<string>",
  "trader_id": "<string>",
  "created_by": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Firm to trader mapping payload.

FirmTraderPayload schema.

firm_id
string
required

Firm identifier.

trader_id
string
required

Trader identifier.

Response

200 - application/json

OK

FirmTrader schema.

firm_id
string

Firm identifier.

trader_id
string

Trader identifier.

created_by
string

User that created the record.

created_at
string<date-time>

Timestamp when the record was created.