Messagebird APIs SmsMessaging: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Overview == Meessagebird API 내용 정리 category:messagebird") |
No edit summary |
||
Line 1: | Line 1: | ||
== Overview == | == Overview == | ||
Meessagebird API 내용 정리 | Meessagebird API 내용 정리 | ||
== SMS Messaging == | |||
MessageBird provides an API to send and receive SMS messages to and from any country across the world. | |||
Messages are identified by a unique random ID. And with this ID you can always check the status of the message through the provided endpoint. | |||
* URI | |||
<pre> | |||
https://rest.messagebird.com/messages | |||
</pre> | |||
* AVAILABLE HTTP METHODS | |||
<pre> | |||
POST /messages | |||
GET /messages | |||
GET /messages/{messageId} | |||
DELETE /messages/{messageID} | |||
</pre> | |||
=== List message === | |||
To list all messages sent and received with your account, you can do a GET request on the /messages endpoint. | |||
* URI | |||
<pre> | |||
https://rest.messagebird.com/messages | |||
</pre> | |||
[[category:messagebird]] | [[category:messagebird]] |
Revision as of 09:43, 5 October 2018
Overview
Meessagebird API 내용 정리
SMS Messaging
MessageBird provides an API to send and receive SMS messages to and from any country across the world.
Messages are identified by a unique random ID. And with this ID you can always check the status of the message through the provided endpoint.
- URI
https://rest.messagebird.com/messages
- AVAILABLE HTTP METHODS
POST /messages GET /messages GET /messages/{messageId} DELETE /messages/{messageID}
List message
To list all messages sent and received with your account, you can do a GET request on the /messages endpoint.
- URI
https://rest.messagebird.com/messages