Get Contacts by Tag ID
GET {{baseUrl}}/api/Contact/ByTag/:tagId?filter=<string>&sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
filter | string | The filter. If provided will filter by Id, Name or Email address. | |
sortBy | string | The field to be sorted. Supported: Id, Name, CreatedDateTime. | |
descending | string | The direction to be sorted. | |
skip | string | The number of records to skip. Default = 0. | |
take | string | The number of records to take. Default = 10. |
RESPONSES
status: OK
{"list":[{"id":"\u003cinteger\u003e","name":"\u003cstring\u003e","contactType":"\u003cstring\u003e","contactName":"\u003cstring\u003e","address":"\u003cstring\u003e","email":"\u003cstring\u003e","phone":"\u003cstring\u003e","contactViewUrl":"\u003cstring\u003e"},{"id":"\u003cinteger\u003e","name":"\u003cstring\u003e","contactType":"\u003cstring\u003e","contactName":"\u003cstring\u003e","address":"\u003cstring\u003e","email":"\u003cstring\u003e","phone":"\u003cstring\u003e","contactViewUrl":"\u003cstring\u003e"}],"total":"\u003cinteger\u003e"}