Hello,
I believe meeting is appointment so you can use following FetchXml query to get your data:
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true">
<entity name="appointment">
<attribute name="subject" />
<attribute name="statecode" />
<attribute name="scheduledstart" />
<attribute name="scheduledend" />
<attribute name="createdby" />
<attribute name="regardingobjectid" />
<attribute name="activityid" />
<attribute name="instancetypecode" />
<order attribute="subject" descending="false" />
<link-entity name="activityparty" from="activityid" to="activityid" alias="ac">
<filter type="and">
<condition attribute="partyid" operator="eq-userid" />
</filter>
</link-entity>
</entity>
</fetch>
Using provided query and FetchExpression you can get results you need -
https://msdn.microsoft.com/ru-ru/library/gg328117.aspx
Dynamics CRM MVP
My blog