"quoteconnections" MDO List
Some tooltip text!
• 1 minute to read
• 1 minute to read
Retrieve the list of all defined Quote Connections - i.e. not the connectors (DLLs). ExtraInfo: "connectorname=Name-of-connector" - restricts results to connections defined by one particular connector.
Implementation relies on the
Implemented by the
Additional Attributes
Description | Name | Example Value |
---|---|---|
Name of the connector to get connections for | connectorname | Custom Quote Connector Name |
Sample Request
GET /api/v1/MDOList/quoteconnections
Authorization: Basic dGplMDpUamUw
Accept: application/json; charset=utf-8
Accept-Language: *
Sample Code
var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("quoteconnections", 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 | Built-in | SuperOffice Standalone | |
3 | TestClient SuperOffice test/debug connector A | Test.QuoteConnector | |
4 | TestClient SuperOffice test/Debug connector B | Test.QuoteConnector | |
5 | TestClient SuperOffice manipulating connector | Test.QuoteConnector |
Related MDO Lists
- "quoteconnectionsheadings"
- "quoteconnectionsheadingswithallitem"
- "quoteconnectionsheadingswithallitemwithnoselection"
- "quoteconnectionsheadingswithnoselection"
- "quoteconnectionswithallitem"
- "quoteconnectionswithallitemwithnoselection"
- "quoteconnectionswithnoselection"