I am trying to get around the deprecation of the "*" wildcard, and so am now entering all of the fields in the fields query parameter instead of simply using an asterisk to select all fields.
When sending the following request:
Code: Select all
/query/Appointment?BhRestToken=REDACTED&start=0&count=100&fields=id,appointmentUUID,candidateReference,childAppointments,clientContactReference,communicationMethod,dateAdded,dateBegin,dateEnd,dateLastModified,editHistory,guests,isAllDay,isDeleted,isPrivate,jobOrder,jobSubmission,lead,location,notificationMinutes,owner,parentAppointment,placement,recurrenceDayBits,recurrenceFrequency,recurrenceMax,recurrenceMonthBits,recurrenceStyle,recurrenceType,showTimeAs,subject,timeZoneID,type&where=dateLastModified > 0 and dateAdded < 0
Code: Select all
"messages":[{"detailMessage":"The requested number of to-many field queries exceeds the maximum of 200. The number of queries equals the count value times the number of to-many fields requested in the fields query parameter.","severity":"WARNING","type":"TOO_MUCH_DATA_REQUESTED"}]}
Thanks,
Patrick