PUT
/
managers
/
{id}
Update event manager
curl --request PUT \
  --url https://xbt-mainnet.gomaestro-api.org/v0/eventmanager/managers/{id} \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "chain": "chain_unknown",
  "network": "<string>",
  "webhookUrl": "<string>",
  "status": "<string>",
  "triggers": [
    {
      "id": "<string>",
      "eventManagerId": "<string>",
      "triggerType": "trigger_type_unknown",
      "trackedId": "<string>",
      "filters": [
        {
          "key": "<string>",
          "operator": "<string>",
          "value": "<string>"
        }
      ]
    }
  ]
}'
{
  "id": "<string>",
  "name": "<string>",
  "chain": "chain_unknown",
  "network": "<string>",
  "webhookUrl": "<string>",
  "status": "<string>"
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

id
string
required

Body

application/json

Response

200
application/json

A successful response.

The response is of type object.