Skip to main content

meetingattachments/meetingattachments

Retrieve all meeting attachments for a specified meeting id.

Arguments:

  • api_key (required)
  • per_page (optional - default 10)
  • page (optional - default 1)
  • meetingID (required)

Example request:

http://[domain]/api/meetingattachments/meetingattachments.xml?
api_key=[api_key]&meetingID=4

Example response:

<?xml version="1.0" encoding="utf-8"?>
<meetingAttachments page="1" pages="1" per_page="10" total="3">
<meetingAttachment id="1">
<meetingID>4</meetingID>
<title>Download the asdasd</title>
<typeID>1</typeID>
<contentType>file</contentType>
<content><![CDATA[one.png]]></content>
<size>57.3 KB</size>
<position>1</position>
<dateCreated>1359720800</dateCreated>
</meetingAttachment>
<meetingAttachment id="2">
<meetingID>4</meetingID>
<title>Download the asdasd2</title>
<typeID>1</typeID>
<contentType>file</contentType>
<content><![CDATA[one.png]]></content>
<size>71.62 KB</size>
<position>2</position>
<dateCreated>1359720869</dateCreated>
</meetingAttachment>
<meetingAttachment id="3">
<meetingID>4</meetingID>
<title>Download the asdasd2</title>
<typeID>1</typeID>
<contentType>file</contentType>
<content><![CDATA[one.png]]></content>
<size>71.62 KB</size>
<position>3</position>
<dateCreated>1359721109</dateCreated>
</meetingAttachment>
</meetingAttachments>