Skip to main content

Update (Delete) a user's strategy

Outcome

Delete or undo delete a user's strategy

Endpoint

Example Endpoint

  • PUT /broker/update_user_strategy
    • Parameters:
      • user_email: Required. Email address of the registered user (string)
      • strategy_id: Required. Strategy id that you want to delete (Strategy id can be fetched from get user's strategy endpoint)
      • should_delete: Required. True if strategy needs to be deleted or False is strategy deletion wants to be undone. (boolean)
    • 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 --location --request PUT 'https://hub.trylevel2.com/broker/update_user_strategy?user_email=abc%40gmail.com&strategy_id=363&should_delete=True' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkb21haW4iOiJhbnRvc3RyYXRlZ3kudHJ5bGV2ZWwyLmNvbSIsInRva2VuX2V4cGlyeSI6MTc0MzE2OTkyMi43MzIzNzR9.LOTUbmvDgGiMqV_hcWM9BJguJkFABRNZu6vlObKmedo'