Правила та умови розсилки

Сервіс мультиканальною розсилки заснований на розмаїтті технологій телекомунікації та Інтернету. В описі сервісу ми часто використовуємо абревіатури, з якими знайомі не всі. Тут представлений глосарій термінів і роз'яснень, що застосовуються в галузі.
Ви можете створити обліковий запис і надсилати SMS своїм клієнтам через особистий кабінет, плагін або інтеграцію API.

REST

Representational state transfer. An architectural pattern for interacting with resources via HTTP methods. It is a form of software architecture that is primarily used for web service design. The World Wide Web is based on REST.

Web resources were first defined on the World Wide Web as documents or files identified by their URLs. However, today they have a much more generic and abstract definition that encompasses every thing or entity that can be identified, named, addressed, or handled, in any way whatsoever, on the Web. In a RESTful Web service, requests made to a resource’s URI will elicit a response with a payload formatted in HTML, XML, JSON, or some other format. The response can confirm that some alteration has been made to the stored resource, and the response can provide hypertext links to other related resources or collections of resources. When HTTP is used, as is most common, the operations (HTTP methods) available are GET, HEAD, POST, PUT, PATCH, DELETE, CONNECT, OPTIONS and TRACE.