Skip to content

Instantly share code, notes, and snippets.

@grokify
Created May 5, 2017 23:25
Show Gist options
  • Save grokify/f62fc35c324e26bb67d762a472ad0004 to your computer and use it in GitHub Desktop.
Save grokify/f62fc35c324e26bb67d762a472ad0004 to your computer and use it in GitHub Desktop.
RingCentral MMS Example Request
POST /restapi/v1.0/account/14542946004/extension/14542946004/sms HTTP/1.1
Content-Type: multipart/mixed; boundary=PLA_BOUNDARY_123456
Accept: application/json
--PLA_BOUNDARY_123456
Content-Disposition: form-data; name="json"
Content-Type: application/json
{
"to": [{"phoneNumber": "+14085505499"}],
"from": {"phoneNumber": "+18002001018"},
"text": "Profile Image"
}
--PLA_BOUNDARY_123456
Content-Disposition: form-data; name="image.jpg"; filename="image.jpg"
Content-Type: image/jpeg
<...binary...>
--PLA_BOUNDARY_123456--
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment