Back to Collection Items
<?php
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Http')
$http = new COM("Chilkat.Http");
$http->BasicAuth = 1;
$http->Login = '{{auth_id}}';
$http->Password = 'password';
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.StringBuilder')
$sbResponseBody = new COM("Chilkat.StringBuilder");
$success = $http->QuickGetSb('https://api.plivo.com/v1/Account/<auth_id>/Message/{message_uuid}/Media/',$sbResponseBody);
if ($success == 0) {
print $http->LastErrorText . "\n";
exit;
}
print 'Response status code = ' . $http->LastStatus . "\n";
print $sbResponseBody->getAsString() . "\n";
?>
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}"
}
]
}