ContactId
required
The ID of the contact to return the fields from.
Returns an Index of all Contacts (Contains a maximum of 100 entries)
QUERY PARAMETERS
top
required
Top is an integer with a range of 1-100 (At this Time Numbers larger then 100 can be entered but it will only return 100 results.)
skip
required
This is the number of records it skips
Note:
The first call you probably want to make would look something like this
/contacts?$skip=0&$top=100
And then in the TotalRecordAvailable is more then 100 you would want to make additional requests like this
/contacts?$skip=100&$top=100
/contacts?$skip=200&$top=100
etc...
/contacts?$skip=0&$top=100
And then in the TotalRecordAvailable is more then 100 you would want to make additional requests like this
/contacts?$skip=100&$top=100
/contacts?$skip=200&$top=100
etc...
Note:
This can also be done as a Post to filter the results more, see the sidebar for more information