Skip to main content

Get all trades of a user

Outcome

Get all trades of a user

Endpoint

Example Endpoint

  • GET /broker/get_all_trades_by_user_deployments
    • Parameters:
      • user_email: Required. Email address of the registered user (string)
      • page: Optional. Page number that you want to query (default is 1) (integer)
      • size: Optional. Size of the list that you want to receive in the query (default is 50) (integer)
    • Response:
      • 200 OK: A JSON object containing success message
      • 500 Internal Server Error: If an error occurs.

Parameters

Additional required parameter(s)

  • Authorization Header: Required for authentication. Should contain a valid JWT token.
  • Content-Type Header: Should be set to application/json for JSON data.

Example

Curl

curl -X 'GET' \
'https://hub2.trylevel2.com/broker/get_all_trades_by_user_deployments?user_email=shantanu%40mktdynamics.com&page=1&size=50' \
-H 'accept: application/json'