Skip to main content
PATCH
/
brokerage-firms
/
{brokerageFirmId}
/
brokers
/
{brokerUserId}
Update broker
curl --request PATCH \
  --url https://api.example.com/brokerage-firms/{brokerageFirmId}/brokers/{brokerUserId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "<string>",
  "lastName": "<string>",
  "brokerRole": "<string>"
}
'
{}

Path Parameters

brokerUserId
string
required

Broker user id

brokerageFirmId
string
required

Brokerage firm id

Body

application/json

Fields to update for the broker

firstName
string

First name

lastName
string

Last name

brokerRole
string

Response

Broker updated successfully.

The response is of type object.