curl --request PUT \
--url https://api.example.com/v2/integrations/active/{id}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"integration": 123,
"data": "<unknown>",
"enabled": true
}
'{
"id": 123,
"integration": 123,
"data": "<unknown>",
"enabled": true
}curl --request PUT \
--url https://api.example.com/v2/integrations/active/{id}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"integration": 123,
"data": "<unknown>",
"enabled": true
}
'{
"id": 123,
"integration": 123,
"data": "<unknown>",
"enabled": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A unique integer value identifying this integration.
Was this page helpful?