Read Event
Retrieves the details of a Event object that has been previously created.
Parameters
| Path Params | |
|---|---|
| yourCompany: | string The Company name need to passed in the base URL.For eg. if you enter xyzcompany name, the url https://{yourCompany}.agiliron.net/agiliron/api-40.php/Event will change to https://xyzcompany.agiliron.net/agiliron/api-40.php/Event |
| Query Params | |
|---|---|
| filter: | string In this parameter fieldname needs to be provided with condition and value to fetch related details.for eg. Subject,eq,Event subject
List of condition abbrevations to be used: |
| customview: | string https://xyzcompany.agiliron.net/agiliron/api-40/Event?customview=ABC Customview&key=xyzkey |
| page: | int https://xyzcompany.agiliron.net/agiliron/api-40/Event?filter=Subject,eq,New event;Test CheckBox,eq,no&page=10&key=xyzkey |
| pageSize: | int https://xyzcompany.agiliron.net/agiliron/api-40/Event?filter=Subject,eq,New event;Test CheckBox,eq,no&pageSize=10&key=xyzkey |
| Header Params | |
|---|---|
| Accept: | string Response header need to be passed for eg. application/json or application/xml. |
| Query Auth | |
|---|---|
| key: | string API key needs to be passed in this variable.The option to enter API key will appear when you click on Try it button.This will be the first option in AUTHENTICATION block.Default is SET to 0. |
| Header Auth | |
|---|---|
| apiKey: | string Dedicated API key needs to be passed in this variable via header.The option to enter API key will appear when you click on Try it button.This will be the second option in AUTHENTICATION block.Default is SET to 0. |
Sample Code
{
"Events": {
"Event": [{
"EventId": "3422",
"Subject": "Test New Event",
"StartDate": "01-24-2020",
"StartTime": "05:36:00",
"DurationInHours": "1",
"DurationInMinutes": "00",
"RecurringEvents": "",
"RepeatUntil": "01-25-2020",
"AccountName": "Account1",
"ContactName": "Contact1",
"RelatedToType": "Accounts",
"RelatedToValue": "Account1",
"SendReminder": "Yes",
"ReminderDays": "0",
"ReminderHours": "0",
"ReminderMinute": "0",
"Status": "Planned",
"SendNotification": "No",
"ActivityType": "Call",
"Location": "US",
"CreatedTime": "01-24-2020 05:37:21",
"CreatedTimeUTC": "01-24-2020 15:01:35",
"ModifiedTime": "01-24-2020 05:37:21",
"ModifiedTimeUTC": "01-24-2020 15:05:56",
"Description": "The Description Goes here.",
"EventCustomFields": {
"CustomField": [{
"Name": "CustomFied1",
"Value": "Custom info 1"
},
{
"Name": "CustomFied2",
"Value": "Custom info 2"
}
]
}
}],
"TotalRecords": "1",
"CurrentPage": "1",
"TotalPages": "1",
"PageSize": "50"
}
}<Events>
<Event>
<EventId>3422</EventId>
<Subject>Test New Event</Subject>
<StartDate>01-24-2020</StartDate>
<StartTime>05:36:00</StartTime>
<DurationInHours>1</DurationInHours>
<DurationInMinutes>00</DurationInMinutes>
<RecurringEvents></RecurringEvents>
<RepeatUntil>01-25-2020</RepeatUntil>
<AccountName>Account1</AccountName>
<ContactName>Contact1</ContactName>
<RelatedToType>Accounts</RelatedToType>
<RelatedToValue>Account1</RelatedToValue>
<SendReminder>Yes</SendReminder>
<ReminderDays>0</ReminderDays>
<ReminderHours>0</ReminderHours>
<ReminderMinute>0</ReminderMinute>
<Status>Planned</Status>
<SendNotification>No</SendNotification>
<ActivityType>Call</ActivityType>
<Location>US</Location>
<CreatedTime>01-24-2020 05:37:21</CreatedTime>
<CreatedTimeUTC>01-24-2020 15:01:35</CreatedTimeUTC>
<ModifiedTime>01-24-2020 05:37:21</ModifiedTime>
<ModifiedTimeUTC>01-24-2020 15:05:56</ModifiedTimeUTC>
<Description>The Description Goes here.</Description>
<EventCustomFields>
<CustomField>
<Name>CustomFied1</Name>
<Value>Custom info 1</Value>
</CustomField>
<CustomField>
<Name>CustomFied2</Name>
<Value>Custom info 2</Value>
</CustomField>
</EventCustomFields>
</Event>
<TotalRecords>1</TotalRecords>
<CurrentPage>1</CurrentPage>
<TotalPages>1</TotalPages>
<PageSize>50</PageSize>
</Events>WADL
<?xml version="1.0" encoding="utf-8"?>
<application>
<resources base="https://{yourCompany}.agiliron.net/agiliron/api-40/">
<resource path="Event">
<method name="GET">
<resource path="{Subject}">
<request>
<param name="key" type="xsd:string" style="query" required="true"/>
<param name="StartDate" type="xsd:date" style="query"/>
<param name="EndDate" type="xsd:date" style="query"/>
<param name="Filter" type="xsd:string" style="query"/>
</request>
<response status="200">
<representation mediaType="application/xml" element="yn:ResultSet"/>
</response>
<response status="400">
<representation mediaType="application/xml" element="ya:Error"/>
</response>
</method>
</resource>
</resources>
</application>