question

Lev Rakhman avatar image
Lev Rakhman asked Lev Rakhman answered

SMS message status

Should I wait for message status not Queued before sending next message?

private async Task CheckMessageStatus(string messageId)

{

var resp = await _restClient.Restapi().Account().Extension().MessageStore(messageId).Get();

if (resp.messageStatus == "Queued")

{

Thread.Sleep(2000);

await CheckMessageStatus(messageId);

}

}


sending sms
1 |3000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

Phong Vu avatar image
Phong Vu answered

No. You can send next message even if the previous message is still in "Queued" status. You can keep the message Id of each sent message and check them later if you want to know the status of those sent messages.

Just make sure that you don't send more than 40 messages per minute. Otherwise, you will hit the rate limit.

1 |3000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

Lev Rakhman avatar image
Lev Rakhman answered

Thanks

1 |3000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

Developer sandbox tools

Using the RingCentral Phone for Desktop, you can dial or receive test calls, send and receive test SMS or Fax messages in your sandbox environment.

Download RingCentral Phone for Desktop:

Tip: switch to the "sandbox mode" before logging in the app:

  • On MacOS: press "fn + command + f2" keys
  • On Windows: press "Ctrl + F2" keys