PUT
/
v1
/
integrations
curl --request PUT \
  --url https://api.getmaxim.ai/v1/integrations \
  --header 'Content-Type: application/json' \
  --header 'x-maxim-api-key: <api-key>' \
  --data '{
  "workspaceId": "<string>",
  "id": "<string>",
  "type": "SLACK",
  "name": "<string>",
  "config": {
    "name": "<string>",
    "routingKey": "<string>",
    "webhookName": "<string>",
    "webhookUrl": "<string>",
    "dedupKey": "<string>"
  }
}'
{
  "data": {
    "id": "<string>",
    "type": "SLACK",
    "name": "<string>",
    "config": {}
  }
}

Authorizations

x-maxim-api-key
string
header
required

API key for authentication

Body

application/json

Response

200
application/json

Integration updated successfully

The response is of type object.