FieldMetadataInfoArrayPluginResponse GetConfigData() | Asks the connector what fields are needed to set up a new connection (database, username and password) |
PluginResponseInfo TestConfigData ( Dictionary < string , string > connectionInfo) | Asks the connector to verify that a given set of connection configuration data is valid, without saving it as a new connection. |
PluginResponseInfo SaveConnection (Guid connectionID, Dictionary < string , string > connectionInfo) | Creates a new connection, or updates an existing one |
PluginResponseInfo TestConnection (Guid connectionID) | Checks if the given connection ID is valid (is the connection up, is the configuration data correct, etc.) |
PluginResponseInfo DeleteConnection (Guid connectionID) | Tells the Connector that a connection has been deleted from Erp Sync, in case the Connector needs to know and take some action |
StringArrayPluginResponse GetSupportedActorTypes``(Guid connectionID) | Gets the supported actor types for a given connection |
FieldMetadataInfoArrayPluginResponse GetSupportedActorTypeFields``(Guid connectionID, string actorType) | Gets a list of fields that are available for a given connection and a given actor type |
ActorArrayPluginResponse GetActors (Guid connectionID, string actorType, string [] erpKeys, string [] fieldKeys) | Retrieves actors based on primary key and actor type |
ActorArrayPluginResponse SearchActors``(Guid connectionID, string actorType, string searchText, string [] fieldKeys) | Searches for one or more actors given a simple search string |
ActorArrayPluginResponse SearchActorByParent``(Guid connectionID, string actorType, string searchText, string parentActorType, string parentActorErpKey, string [] fieldKeys) | Searches for one or more actors given a simple search string, and only searches for actors with a specified parent actor |
ActorPluginResponse CreateActor``(Guid connectionID, ErpActor actorFromSuperOffice) | Creates a new actor in the ERP system, based on information from SuperOffice entity |
ActorArrayPluginResponse SaveActors``(Guid connectionID, ErpActor [] actors) | Saves (updates) existing actors in ERP with information from SuperOffice |
ListItemArrayPluginResponse GetList (Guid connectionID, string listName) | Retrieves a list from the connector, using the name specified by the connector itself |
ListItemArrayPluginResponse GetListItems (Guid connectionID, string listName, string [] listItemKeys) | Retrieves one or more specific list items from the connector, using the list name specified by the connector. |
ActorArrayPluginResponse GetActorsByTimestamp``(Guid connectionID, string lastModified , string actorType, string [] fieldKeys ) | Retrieves all actors of a specified actor type updated on or after a given date and time * |
StringArrayPluginResponse GetSearchableFields (Guid connectionId, string actorType) | Obtain a list of fields (a subset of previously declared fields from GetSupportedActorTypeFields, that should be shown as criteria in the “Advanced Search” |
ActorArrayPluginResponse SearchActorsAdvanced (Guid connectionID, string actorType, SearchRestrictionInfo [] restrictions, string [] returnFields) | Performs a criteria-driven search (Advanced Search) and returns an array of rows |