add_third_party_account
Connect third-party email marketing platforms like Reachinbox or Instantly to Zapmail by adding account credentials for export integration.
Instructions
Add credentials for a third-party export integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app | Yes | Third-party app to connect. | |
Yes | Email address of the account. | ||
password | Yes | Password for the account. |
Input Schema (JSON Schema)
{
"properties": {
"app": {
"description": "Third-party app to connect.",
"enum": [
"REACHINBOX",
"INSTANTLY",
"SMARTLEAD",
"REPLY_IO"
],
"type": "string"
},
"email": {
"description": "Email address of the account.",
"type": "string"
},
"password": {
"description": "Password for the account.",
"type": "string"
}
},
"required": [
"email",
"password",
"app"
],
"type": "object"
}