POST
/
modules
/
integration
curl --request POST \
  --url http://sandbox.mintlify.com/modules/integration \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "salesforce",
  "settings": {
    "webhook_method": "GET",
    "url": "<string>",
    "headers": {},
    "timeout": 123,
    "retry_limit": 123
  }
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "<string>",
  "status": "active",
  "settings": {
    "webhook_method": "GET",
    "url": "<string>",
    "headers": {},
    "timeout": 123,
    "retry_limit": 123
  }
}

The Integration module allows you to connect your campaigns with third-party systems and services to enhance functionality and streamline workflows.

Authorizations

Authorization
string
header
required

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

Body

application/json
type
enum<string>
required
Available options:
salesforce,
hubspot,
zoho,
dynamics,
slack,
teams,
email,
sheets,
zapier,
custom
settings
object
required

Response

200 - application/json
Integration created successfully
id
string
type
string
status
enum<string>
Available options:
active,
paused,
error
settings
any