Broker Me
GET
/api/v1/broker/me
const url = 'https://example.com/api/v1/broker/me';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/broker/meResponses
Section titled “Responses”Successful Response
Media typeapplication/json
BrokerMeRead
object
id
required
Id
string format: uuid
email
required
Email
string
role
required
Role
string
brokerage
required
active_states
Any of:
Array<string>
null
Example
{ "role": "admin"}