Endpoint Parameters
-
Request parameters
Name Type Origin Description $skip Integer Query-String The number of entries to skip from the beginning of the collection $top Integer Query-String The number of entries to return from the beginning of the collection ClientKey ClientKey Query-String Client identifier to get events for SortColumn SortColumn Query-String Specify a column to sort on. Default sorting on records is descending by ReceivedDate and ascending by IssuerName. SortType SortType Query-String Specify ascending or descending sort. Default sort type will be Ascending. -
Response Parameters
View Response CodesName Type Description __count Number The total count of items in the feed. __next String The link for the next page of items in the feed. Data ProxyVotingEvent [] The collection of entities for this feed. MaxRows Number The maximum number of rows that can be returned (if applicable). -
Request Example
Request URL
GET /ca/v1/proxyvoting/events?$skip=1&$top=1&ClientKey=W-CgwnsUEpETkiR8MPJalA==&SortColumn=Type&SortType=Asc
-
Response Example
Response body
{ "__count": 1, "Data": [ { "AccountId": "384930295", "ActionUrl": "http://noaction.com", "Cins": "A08010AA5", "Cusip": "123456789", "CutoffDate": "2020-06-30T00:00:00Z", "DeliveryType": { "Code": "ED", "Description": "Sent via email" }, "IsinCode": "US0978731104", "IssuerName": "American International Group, Inc.", "JobNumber": "S75596", "Materials": [ { "MaterialType": { "Code": "10K", "Description": "10-K Report" }, "Url": "http://noaction.com" } ], "ReceivedDate": "2020-06-15T00:00:00Z", "Status": { "Code": "VW", "Description": "Viewed" }, "StatusDate": "2020-06-30T00:00:00Z", "Subtype": { "Code": "S", "Description": "Special meeting" }, "Type": { "Code": "PX", "Description": "Proxy" } } ] }