go back Home

CRMService

This service provides methods for retrieving and updating prospects and prospect actions. In addition it provides a mechanism for managing a saleperson's call list.

Operations

name description
GET /crm/callListProfiles
GET /crm/callListProfiles/{id}
GET /crm/prospectActions/new Creates a prospect action object with all configured defaults set. This doesn't create a record in the database. Instead, callers of this method can edit the returned object and then pass it back to the create method to actually insert the record in the database.
GET /crm/prospectActions/{id} Retrieves the specified ProspectAction
GET /crm/prospects Retrieves a List of prospects/customers with a full or partial match to the given value.
GET /crm/prospects/new Creates a customer object with all configured defaults set. This doesn't create a record in the database. Instead, callers of this method can edit the returned object and then pass it back to the create method to actually insert the record in the database.
GET /crm/prospects/search Searches the database for customers matching the given request parameters.
GET /crm/prospects/userSavedSearch Retrieves a List of RowCustomer objects based on an existing saved search.
GET /crm/prospects/{id} Retrieves the customer for the given customer/prospect ID.
GET /crm/prospects/{id}/history Retrieves upcoming ProspectAction records for the given customer.
GET /crm/prospects/{id}/upcoming Retrieves upcoming ProspectAction records for the given customer.
PUT /crm/prospectActions/create Adds a RowProspectAction.
PUT /crm/prospectActions/update Updates a RowProspectAction record if it already exists, otherwise creates a new one.
PUT /crm/prospects/create Creates a new RowCustomer record for the given Customer data.
PUT /crm/prospects/update Updates a RowCustomer record for the given Customer/Prospect data.