Skip to main content

Update a deployment

Outcome

Deploy or undeploy a strategy created by a user.

Endpoint

Example Endpoint

  • PUT /broker/update_user_deployment
    • Parameters:
      • deployment_id: Required. Deployment id of the deployment that you need to update (Deployment id can be fetched from get user deployments endpoint)
      • user_email: Required. Email address of the registered user (string)
      • should_delete: Required. True if you want to delete(undeploy) and False if you want to deploy (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://hub2.trylevel2.com/broker/update_user_deployment?user_email=abc%40gmail.com&deployment_id=2015&should_delete=True' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkb21haW4iOiJhbnRvc3RyYXRlZ3kudHJ5bGV2ZWwyLmNvbSIsInRva2VuX2V4cGlyeSI6MTc0MzE2OTkyMi43MzIzNzR9.LOTUbmvDgGiMqV_hcWM9BJguJkFABRNZu6vlObKmedo'