"allpersonsearch" MDO List
Provider for selecting a Person, including search on contacts that match as well as persons. this provider will return a mix of contact and person records. The type is indicated in the Type property of the item, and the contact ID is always in the extraInfo.
Searchs contact and person tables for matches, in addition to the contact
search of the base class "contact" search.
Implemented by the
Sample Request
GET /api/v1/MDOList/allpersonsearch
Authorization: Basic dGplMDpUamUw
Accept: application/json; charset=utf-8
Accept-Language: *
Sample Code
var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("allpersonsearch", forceFlatList: true);
foreach (var item in listProvider.RootItems) {
Console.WriteLine("{0} {1} {2} {3}",
item.Id, ResourceManager.ParseInlineResources(item.Name), item.StyleHint, item.ExtraInfo);
}
Sample Output
Id | Name | StyleHint | ExtraInfo |
---|---|---|---|
2 | Example |
Related MDO Lists
- "allpersonsearchheadings"
- "allpersonsearchheadingswithallitem"
- "allpersonsearchheadingswithallitemwithnoselection"
- "allpersonsearchheadingswithnoselection"
- "allpersonsearchwithallitem"
- "allpersonsearchwithallitemwithnoselection"
- "allpersonsearchwithnoselection"