Skip to main content

SmsService

A list of all methods in the SmsService service. Click on the method name to view detailed information about that method.

MethodsDescription
SmsMessagesSendSmsToPhoneNumbersAsyncSend an SMS to one or multiple phone numbers. Phone numbers must be prefixed with a + and country code (e.g. +4670xxxxxxx for a Swedish mobile phone number).

SmsMessagesSendSmsToPhoneNumbersAsync

Send an SMS to one or multiple phone numbers. Phone numbers must be prefixed with a + and country code (e.g. +4670xxxxxxx for a Swedish mobile phone number).

  • HTTP Method: POST
  • Endpoint: /api/v2/sms/sendToPhoneNumbers

Parameters

NameTypeRequiredDescription
inputSendSmsRequestThe request body.

Return Type

SendSmsResponse

Example Usage Code Snippet

using VoyadoEngage;
using VoyadoEngage.Models;

var client = new VoyadoEngageClient();

var input = new SendSmsRequest();

var response = await client.Sms.SmsMessagesSendSmsToPhoneNumbersAsync(input);

Console.WriteLine(response);

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →