Veetro Web Service Methods


Click here for a complete list of operations.

GetCalendarViewDataPagedDateSummaries

[Permission: Any Authenticated]
Provides a list of CalendarViewData dates, Types, IDs and (optionally) names. This method may be useful for reducing bandwidth for client applications who need a smaller summary of results. For results which normally contain multiple RRulePeriod dates, these are flattened so that duplicate rows are returned, one for each RRule occurrence.

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /xml HTTP/1.1
Host: admin.worketc.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://schema.veetro.com/GetCalendarViewDataPagedDateSummaries"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetCalendarViewDataPagedDateSummaries xmlns="http://schema.veetro.com">
      <e>
        <IncludeNames>boolean</IncludeNames>
      </e>
    </GetCalendarViewDataPagedDateSummaries>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetCalendarViewDataPagedDateSummariesResponse xmlns="http://schema.veetro.com">
      <GetCalendarViewDataPagedDateSummariesResult>
        <DateSummary>
          <StartUtc>dateTime</StartUtc>
          <EndUtc>dateTime</EndUtc>
          <ModifiedUtc>dateTime</ModifiedUtc>
          <Type>Unknown or Event or ToDo or Journal or Invoice or Project or Support_Case or Disbursement or Notation or Message or Subscription or Product or Document or Quote or Credit_Invoice or IM or Withdrawal or Deposit or Refund or Lead or Proposal or MailQueue or Discussion</Type>
          <PrimaryKey>int</PrimaryKey>
          <Name>string</Name>
        </DateSummary>
        <DateSummary>
          <StartUtc>dateTime</StartUtc>
          <EndUtc>dateTime</EndUtc>
          <ModifiedUtc>dateTime</ModifiedUtc>
          <Type>Unknown or Event or ToDo or Journal or Invoice or Project or Support_Case or Disbursement or Notation or Message or Subscription or Product or Document or Quote or Credit_Invoice or IM or Withdrawal or Deposit or Refund or Lead or Proposal or MailQueue or Discussion</Type>
          <PrimaryKey>int</PrimaryKey>
          <Name>string</Name>
        </DateSummary>
      </GetCalendarViewDataPagedDateSummariesResult>
    </GetCalendarViewDataPagedDateSummariesResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /xml HTTP/1.1
Host: admin.worketc.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetCalendarViewDataPagedDateSummaries xmlns="http://schema.veetro.com">
      <e>
        <IncludeNames>boolean</IncludeNames>
      </e>
    </GetCalendarViewDataPagedDateSummaries>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetCalendarViewDataPagedDateSummariesResponse xmlns="http://schema.veetro.com">
      <GetCalendarViewDataPagedDateSummariesResult>
        <DateSummary>
          <StartUtc>dateTime</StartUtc>
          <EndUtc>dateTime</EndUtc>
          <ModifiedUtc>dateTime</ModifiedUtc>
          <Type>Unknown or Event or ToDo or Journal or Invoice or Project or Support_Case or Disbursement or Notation or Message or Subscription or Product or Document or Quote or Credit_Invoice or IM or Withdrawal or Deposit or Refund or Lead or Proposal or MailQueue or Discussion</Type>
          <PrimaryKey>int</PrimaryKey>
          <Name>string</Name>
        </DateSummary>
        <DateSummary>
          <StartUtc>dateTime</StartUtc>
          <EndUtc>dateTime</EndUtc>
          <ModifiedUtc>dateTime</ModifiedUtc>
          <Type>Unknown or Event or ToDo or Journal or Invoice or Project or Support_Case or Disbursement or Notation or Message or Subscription or Product or Document or Quote or Credit_Invoice or IM or Withdrawal or Deposit or Refund or Lead or Proposal or MailQueue or Discussion</Type>
          <PrimaryKey>int</PrimaryKey>
          <Name>string</Name>
        </DateSummary>
      </GetCalendarViewDataPagedDateSummariesResult>
    </GetCalendarViewDataPagedDateSummariesResponse>
  </soap12:Body>
</soap12:Envelope>