POST
/
v1
/
integrations
/
{integration}
/
activate
cURL
curl --request POST \
  --url https://api.comm.com/api/v1/integrations/{integration}/activate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "events": [
    {
      "type": "<string>",
      "is_active": true
    }
  ],
  "required_fields": [
    {
      "name": "<string>",
      "value": "<string>"
    }
  ]
}'
{
  "success": true,
  "message": "Integration activated"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

integration
string<uuid>
required

The integration ID

Body

application/json

IntegrationTeamMetaDataRequest

The body is of type object.

Response

200
application/json

The response is of type object.