Publish (unpublish) a user's strategy
Outcome
Publish (unpublish) a user's strategy to the marketplace
Endpoint
Example Endpoint
- PUT /broker/update_marketplace_strategy
- Parameters:
strategy_id
: Required. Strategy id of the strategy that you want to publish/unpublishuser_email
: Required. Email address of the registered user (string)should_publish
: Required. True if you want to publish and False if you want to un-publish (boolean)
- 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 --location --request PUT 'https://hub2.trylevel2.com/broker/update_marketplace_strategy?user_email=abc%40gmail.com&strategy_id=363&should_publish=False' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkb21haW4iOiJhbnRvc3RyYXRlZ3kudHJ5bGV2ZWwyLmNvbSIsInRva2VuX2V4cGlyeSI6MTc0MzE2OTkyMi43MzIzNzR9.LOTUbmvDgGiMqV_hcWM9BJguJkFABRNZu6vlObKmedo'