Integrations
Create integration
- API Overview
- API Rate Limiting
Events
Subscribers
Topics
Notification
Workflows
Workflow Overrides
Workflow groups
Integrations
Layouts
Environments
Changes
Execution Details
Feeds
Tenants
Organizations
Messages
Integrations
Create integration
Create an integration for the current environment the user is based on the API key provided
POST
/
v1
/
integrations
Authorization
string
*
Authorization
Required
string
API key authentication. Allowed headers-- "Authorization: ApiKey <api_key>".
object
*
name
string
name
string
identifier
string
identifier
string
_environmentId
string
_environmentId
string
providerId
string
*
providerId
Required
string
channel
enum<string>
*
channel
Required
enum<string>
credentials
object
credentials
object
apiKey
string
apiKey
string
user
string
user
string
secretKey
string
secretKey
string
domain
string
domain
string
password
string
password
string
host
string
host
string
port
string
port
string
secure
boolean
secure
boolean
region
string
region
string
accountSid
string
accountSid
string
messageProfileId
string
messageProfileId
string
token
string
token
string
from
string
from
string
senderName
string
senderName
string
projectName
string
projectName
string
applicationId
string
applicationId
string
clientId
string
clientId
string
requireTls
boolean
requireTls
boolean
ignoreTls
boolean
ignoreTls
boolean
tlsOptions
object
tlsOptions
object
baseUrl
string
baseUrl
string
webhookUrl
string
webhookUrl
string
redirectUrl
string
redirectUrl
string
hmac
boolean
hmac
boolean
serviceAccount
string
serviceAccount
string
ipPoolName
string
ipPoolName
string
apiKeyRequestHeader
string
apiKeyRequestHeader
string
secretKeyRequestHeader
string
secretKeyRequestHeader
string
idPath
string
idPath
string
datePath
string
datePath
string
apiToken
string
apiToken
string
authenticateByToken
boolean
authenticateByToken
boolean
authenticationTokenKey
string
authenticationTokenKey
string
instanceId
string
instanceId
string
alertUid
string
alertUid
string
title
string
title
string
imageUrl
string
imageUrl
string
state
string
state
string
externalLink
string
externalLink
string
channelId
string
channelId
string
phoneNumberIdentification
string
phoneNumberIdentification
string
accessKey
string
accessKey
string
active
boolean
active
boolean
If the integration is active the validation on the credentials field will run
check
boolean
check
boolean
conditions
array
conditions
array
curl --location 'https://api.novu.co/v1/integrations' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: ApiKey <NOVU_SECRET_KEY>' \
--data '{
"name": "SES",
"identifier": "ses-NkIQ5Koy3-123",
"credentials": {
"apiKey": "ACCESS_KEY_ID",
"secretKey": "SECRET_ACCESS_KEY",
"region": "us-east-2",
"from": "FROM_EMAIL_ADDRESS",
"senderName": "SENDER_NAME",
// ... other credentials as per provider
},
"conditions": [],
"active": true,
"check": false,
"providerId": "ses",
"channel": "email"
}'
{
"data": {
"_id": "string",
"_environmentId": "string",
"_organizationId": "string",
"name": "string",
"identifier": "string",
"providerId": "string",
"channel": "in_app",
"credentials": {
"apiKey": "string",
"user": "string",
"secretKey": "string",
"domain": "string",
"password": "string",
"host": "string",
"port": "string",
"secure": true,
"region": "string",
"accountSid": "string",
"messageProfileId": "string",
"token": "string",
"from": "string",
"senderName": "string",
"projectName": "string",
"applicationId": "string",
"clientId": "string",
"requireTls": true,
"ignoreTls": true,
"tlsOptions": {},
"baseUrl": "string",
"webhookUrl": "string",
"redirectUrl": "string",
"hmac": true,
"serviceAccount": "string",
"ipPoolName": "string"
},
"active": true,
"deleted": true,
"deletedAt": "string",
"deletedBy": "string",
"primary": true
}
}
Enter your API key in the Authorization
field like the example shown below:
E.g ApiKey 18d2e625f05d80e
curl --location 'https://api.novu.co/v1/integrations' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: ApiKey <NOVU_SECRET_KEY>' \
--data '{
"name": "SES",
"identifier": "ses-NkIQ5Koy3-123",
"credentials": {
"apiKey": "ACCESS_KEY_ID",
"secretKey": "SECRET_ACCESS_KEY",
"region": "us-east-2",
"from": "FROM_EMAIL_ADDRESS",
"senderName": "SENDER_NAME",
// ... other credentials as per provider
},
"conditions": [],
"active": true,
"check": false,
"providerId": "ses",
"channel": "email"
}'
{
"data": {
"_id": "string",
"_environmentId": "string",
"_organizationId": "string",
"name": "string",
"identifier": "string",
"providerId": "string",
"channel": "in_app",
"credentials": {
"apiKey": "string",
"user": "string",
"secretKey": "string",
"domain": "string",
"password": "string",
"host": "string",
"port": "string",
"secure": true,
"region": "string",
"accountSid": "string",
"messageProfileId": "string",
"token": "string",
"from": "string",
"senderName": "string",
"projectName": "string",
"applicationId": "string",
"clientId": "string",
"requireTls": true,
"ignoreTls": true,
"tlsOptions": {},
"baseUrl": "string",
"webhookUrl": "string",
"redirectUrl": "string",
"hmac": true,
"serviceAccount": "string",
"ipPoolName": "string"
},
"active": true,
"deleted": true,
"deletedAt": "string",
"deletedBy": "string",
"primary": true
}
}
Authorizations
Authorization
string
headerrequiredAPI key authentication. Allowed headers-- "Authorization: ApiKey <api_key>".
Body
application/json
name
string
identifier
string
_environmentId
string
providerId
string
requiredchannel
enum<string>
requiredAvailable options:
in_app
, email
, sms
, chat
, push
credentials
object
credentials.apiKey
string
credentials.user
string
credentials.secretKey
string
credentials.domain
string
credentials.password
string
credentials.host
string
credentials.port
string
credentials.secure
boolean
credentials.region
string
credentials.accountSid
string
credentials.messageProfileId
string
credentials.token
string
credentials.from
string
credentials.senderName
string
credentials.projectName
string
credentials.applicationId
string
credentials.clientId
string
credentials.requireTls
boolean
credentials.ignoreTls
boolean
credentials.tlsOptions
object
credentials.baseUrl
string
credentials.webhookUrl
string
credentials.redirectUrl
string
credentials.hmac
boolean
credentials.serviceAccount
string
credentials.ipPoolName
string
credentials.apiKeyRequestHeader
string
credentials.secretKeyRequestHeader
string
credentials.idPath
string
credentials.datePath
string
credentials.apiToken
string
credentials.authenticateByToken
boolean
credentials.authenticationTokenKey
string
credentials.instanceId
string
credentials.alertUid
string
credentials.title
string
credentials.imageUrl
string
credentials.state
string
credentials.externalLink
string
credentials.channelId
string
credentials.phoneNumberIdentification
string
credentials.accessKey
string
active
boolean
If the integration is active the validation on the credentials field will run
check
boolean
conditions
object[]
conditions.isNegated
boolean
requiredconditions.type
enum<string>
requiredAvailable options:
BOOLEAN
, TEXT
, DATE
, NUMBER
, STATEMENT
, LIST
, MULTI_LIST
, GROUP
conditions.value
enum<string>
requiredAvailable options:
AND
, OR
conditions.children
object[]
requiredconditions.children.field
string
requiredconditions.children.value
string
requiredconditions.children.operator
enum<string>
requiredAvailable options:
LARGER
, SMALLER
, LARGER_EQUAL
, SMALLER_EQUAL
, EQUAL
, NOT_EQUAL
, ALL_IN
, ANY_IN
, NOT_IN
, BETWEEN
, NOT_BETWEEN
, LIKE
, NOT_LIKE
, IN
conditions.children.on
enum<string>
requiredAvailable options:
subscriber
, payload
Response
201 - application/json
data
object
data._id
string
data._environmentId
string
requireddata._organizationId
string
requireddata.name
string
requireddata.identifier
string
requireddata.providerId
string
requireddata.channel
enum<string>
requiredAvailable options:
in_app
, email
, sms
, chat
, push
data.credentials
object
requireddata.credentials.apiKey
string
data.credentials.user
string
data.credentials.secretKey
string
data.credentials.domain
string
data.credentials.password
string
data.credentials.host
string
data.credentials.port
string
data.credentials.secure
boolean
data.credentials.region
string
data.credentials.accountSid
string
data.credentials.messageProfileId
string
data.credentials.token
string
data.credentials.from
string
data.credentials.senderName
string
data.credentials.projectName
string
data.credentials.applicationId
string
data.credentials.clientId
string
data.credentials.requireTls
boolean
data.credentials.ignoreTls
boolean
data.credentials.tlsOptions
object
data.credentials.baseUrl
string
data.credentials.webhookUrl
string
data.credentials.redirectUrl
string
data.credentials.hmac
boolean
data.credentials.serviceAccount
string
data.credentials.ipPoolName
string
data.credentials.apiKeyRequestHeader
string
data.credentials.secretKeyRequestHeader
string
data.credentials.idPath
string
data.credentials.datePath
string
data.credentials.apiToken
string
data.credentials.authenticateByToken
boolean
data.credentials.authenticationTokenKey
string
data.credentials.instanceId
string
data.credentials.alertUid
string
data.credentials.title
string
data.credentials.imageUrl
string
data.credentials.state
string
data.credentials.externalLink
string
data.credentials.channelId
string
data.credentials.phoneNumberIdentification
string
data.credentials.accessKey
string
data.active
boolean
requireddata.deleted
boolean
requireddata.deletedAt
string
requireddata.deletedBy
string
requireddata.primary
boolean
requireddata.conditions
object[]
data.conditions.isNegated
boolean
requireddata.conditions.type
enum<string>
requiredAvailable options:
BOOLEAN
, TEXT
, DATE
, NUMBER
, STATEMENT
, LIST
, MULTI_LIST
, GROUP
data.conditions.value
enum<string>
requiredAvailable options:
AND
, OR
data.conditions.children
object[]
requireddata.conditions.children.field
string
requireddata.conditions.children.value
string
requireddata.conditions.children.operator
enum<string>
requiredAvailable options:
LARGER
, SMALLER
, LARGER_EQUAL
, SMALLER_EQUAL
, EQUAL
, NOT_EQUAL
, ALL_IN
, ANY_IN
, NOT_IN
, BETWEEN
, NOT_BETWEEN
, LIKE
, NOT_LIKE
, IN
data.conditions.children.on
enum<string>
requiredAvailable options:
subscriber
, payload
Was this page helpful?
curl --location 'https://api.novu.co/v1/integrations' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: ApiKey <NOVU_SECRET_KEY>' \
--data '{
"name": "SES",
"identifier": "ses-NkIQ5Koy3-123",
"credentials": {
"apiKey": "ACCESS_KEY_ID",
"secretKey": "SECRET_ACCESS_KEY",
"region": "us-east-2",
"from": "FROM_EMAIL_ADDRESS",
"senderName": "SENDER_NAME",
// ... other credentials as per provider
},
"conditions": [],
"active": true,
"check": false,
"providerId": "ses",
"channel": "email"
}'
{
"data": {
"_id": "string",
"_environmentId": "string",
"_organizationId": "string",
"name": "string",
"identifier": "string",
"providerId": "string",
"channel": "in_app",
"credentials": {
"apiKey": "string",
"user": "string",
"secretKey": "string",
"domain": "string",
"password": "string",
"host": "string",
"port": "string",
"secure": true,
"region": "string",
"accountSid": "string",
"messageProfileId": "string",
"token": "string",
"from": "string",
"senderName": "string",
"projectName": "string",
"applicationId": "string",
"clientId": "string",
"requireTls": true,
"ignoreTls": true,
"tlsOptions": {},
"baseUrl": "string",
"webhookUrl": "string",
"redirectUrl": "string",
"hmac": true,
"serviceAccount": "string",
"ipPoolName": "string"
},
"active": true,
"deleted": true,
"deletedAt": "string",
"deletedBy": "string",
"primary": true
}
}