Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To use the Base CRM connector, add the <basecrm.init> element in your configuration before carrying out any other operations. The API requires authentication, which is performed by passing in the user email and password. The API will then return a token to authenticate its functionality. For more information on authentication, see http://dev.futuresimple.com/api/authentication

Code Block
languagexml
titleinit
<basecrm.init>
	<email>{$ctx:email}</email>
    <responseType>{$ctx:responseType}</responseType>
    <apiUrl>{$ctx:apiUrl}</apiUrl>
    <password>{$ctx:password}</password>
</basecrm.init>
Properties 
  • email: The user account email.
  • responseType: The format of the response, XML or JSON.
  • apiUrl: The base URL of the Base API.
  • password: The user account password.

...