Enhance your customer engagement with our MMS messaging service. This API allows you to send text messages combined with images directly to a phone number. Below is the detailed documentation for using this service.
Endpoint: Send MMS Message
Method: GET
URL: /api/messaging/send/
Parameter | Data Type | Required | Description |
---|---|---|---|
to | string | Yes | Recipient's phone number in E.164 format, e.g., +1234567890 . |
body | string | Yes | The text of the message. |
image | string | Yes | URL of the image to be sent with the message. |
apiKey | string | Yes | API key for authorization. |
Success Response:
{ "status": "success", "message": "Message sent successfully.", "message-id": "unique_message_identifier" }
Error Responses:
{ "status": "error", "message": "Missing required parameters." }
{ "status": "error", "message": "Invalid API key." }
{ "status": "error", "message": "Failed to send message due to a server error." }
http GET /api/messaging/send/?to=%2B1234567890&body=Welcome%20to%20our%20dispensary!&image=https%3A%2F%2Fexample.com%2Fwelcome.jpg&apiKey=yourApiKeyHere
This documentation should provide all necessary details for developers to integrate the MMS messaging capability into your existing systems, enhancing communication with your customers.