Get all stragies of a user
Outcome
Get all stragies of a particular user
Endpoint
Example Endpoint
- GET /broker/get_user_strategies
- 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:
Parameters
Additional required parameter(s)
Authorization
Header: Required for authentication. Should contain a valid JWT token.Content-Type
Header: Should be set toapplication/json
for JSON data.
Example
Curl
curl -X 'GET' \
'https://hub2.trylevel2.com/broker/get_user_strategies?user_email=shantanu%40mktdynamics.com&page=1&size=50' \
-H 'accept: application/json'