The Send SMS API gives you access to send SMS messages directly from a Kixie User through a POST request. 

  • You can access your API Key and Business ID in the Kixie Dashboard under Manage > Account Settings > Edit All > Integrations
  • You must be on the Professional Billing Tier in order to access the API
  • You can reach out to your Account Manager or contact Support via the live chat in order for an agent to enable the API for you. 

 

You can send the POST request to this endpoint here: 

https://apig.kixie.com/app/event?apikey=<api-key-here>&businessid:<business-id-here>

*Please make sure that you select JSON as your Content-Type* 

You can also set "Content-Type: JSON" in your Header Values. 

 

Send Team SMS 

Request Body: 

{ 
"businessid": "<business-id-here>",
"target": "xxxxxxxxxx",
"eventname": "sms",
"email": <kixie-user-email-here>,
"message": "Hello world",
"apikey": "<api-key-here>"
}
  • 'target' (required field) - This refers to the phone number that you would to like send the Team SMS message to.
  • 'email' (required field) - This field refers to the email address of the Kixie User, messages will be sent from this User's designated SMS phone number. 
  • 'message' - This is the content of the Team SMS message in which you would like send.