ByteChef LogoByteChef
Components

Contiguity

Contiguity is an SMS service for your needs - quick and simple.

Categories: Productivity and Collaboration

Type: contiguity/v1


Connections

Version: 1

Bearer Token

Properties

NameLabelTypeDescriptionRequired
tokenTokenSTRINGtrue

Actions

Send SMS

Name: sendSms

Send SMS.

Properties

NameLabelTypeDescriptionRequired
toToSTRINGRecipient's phone number in E.164 format (e.g. +1234567890).true
messageMessageSTRINGContent of the message.true

Example JSON Structure

{
  "label" : "Send SMS",
  "name" : "sendSms",
  "parameters" : {
    "to" : "",
    "message" : ""
  },
  "type" : "contiguity/v1/sendSms"
}

Output

Type: OBJECT

Properties

NameTypeDescription
codeINTEGERStatus code of response.
messageSTRINGResponse message.
crumbsOBJECT
Properties {STRING(plan), INTEGER(quota), INTEGER(remaining), STRING(type), BOOLEAN(ad)}
Crumbs of the message that was sent.

Output Example

{
  "code" : 1,
  "message" : "",
  "crumbs" : {
    "plan" : "",
    "quota" : 1,
    "remaining" : 1,
    "type" : "",
    "ad" : false
  }
}

Send Email

Name: sendEmail

Send email.

Properties

NameLabelTypeDescriptionRequired
toToSTRINGRecipient's email address.true
fromFromSTRINGSender's name.true
subjectSubjectSTRINGEmail subject.true
bodyBodySTRINGEmail content.true
contentTypeContent TypeSTRING
Options html, text
Content type of the email.true
ccCCSTRINGCC email address (only 1 is supported as of now).false
replyToReply ToSTRINGReply-to email address.false

Example JSON Structure

{
  "label" : "Send Email",
  "name" : "sendEmail",
  "parameters" : {
    "to" : "",
    "from" : "",
    "subject" : "",
    "body" : "",
    "contentType" : "",
    "cc" : "",
    "replyTo" : ""
  },
  "type" : "contiguity/v1/sendEmail"
}

Output

Type: OBJECT

Properties

NameTypeDescription
codeINTEGERStatus code of response.
messageSTRINGResponse message.
crumbsOBJECT
Properties {STRING(plan), INTEGER(quota), STRING(type), BOOLEAN(ad)}
Crumbs of the message that was sent.

Output Example

{
  "code" : 1,
  "message" : "",
  "crumbs" : {
    "plan" : "",
    "quota" : 1,
    "type" : "",
    "ad" : false
  }
}