Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global_Ref.html">Global Unlock Sample for sample code.
http := chilkat.NewHttp()
var success bool
http.SetBasicAuth(true)
http.SetLogin("{{auth_id}}")
http.SetPassword("password")
sbResponseBody := chilkat.NewStringBuilder()
success = http.QuickGetSb("https://api.plivo.com/v1/Account/<auth_id>/Message/{message_uuid}/Media/",sbResponseBody)
if success == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
return
}
fmt.Println("Response status code = ", http.LastStatus())
fmt.Println(*sbResponseBody.GetAsString())
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
Curl Command
curl -X GET
-u '{{auth_id}}:password'
https://api.plivo.com/v1/Account/<auth_id>/Message/{message_uuid}/Media/
Postman Collection Item JSON
{
"name": "List MMS Media",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.plivo.com/v1/Account/{{auth_id}}/Message/{message_uuid}/Media/",
"protocol": "https",
"host": [
"api",
"plivo",
"com"
],
"path": [
"v1",
"Account",
"{{auth_id}}",
"Message",
"{message_uuid}",
"Media",
""
]
},
"description": "Lists the media files sent or received with an MMS message.More information can be found [here](https://www.plivo.com/docs/sms/api/message#list-mms-media)"
},
"response": [
{
"name": "List MMS Media",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.plivo.com/v1/Account/{{auth_id}}/Message/{message_uuid}/Media/",
"protocol": "https",
"host": [
"api",
"plivo",
"com"
],
"path": [
"v1",
"Account",
"{{auth_id}}",
"Message",
"{message_uuid}",
"Media",
""
]
}
},
"_postman_previewlanguage": "json",
"header": [
],
"cookie": [
],
"body": "{\n \"api_id\": \"035eeada-6df1-11e6-b608-06a72a185e87\",\n \"objects\": [\n {\n \"content_type\": \"application/pdf\",\n \"media_id\": \"0178eb8a-461a-4fd1-bc37-13eebfdc0676\",\n \"media_url\": \"https://media.plivo.com/Account/{auth_id}/Message/24d742b9-9b12-4397-93a7-da496bc874d9/Media/0178eb8a-461a-4fd1-bc37-13eebfdc0676\",\n \"message_uuid\": \"24d742b9-9b12-4397-93a7-da496bc874d9\",\n \"size\": 433994\n }\n ]\n}"
}
]
}