{"info":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","description":"<html><head></head><body><p>Sugar Market provides a self-serve RESTful API. The SugarMarket API exposes the core entities of the Sugar Market automated marketing platform to allow integrators, partners, and customers the opportunity to manipulate and retrieve backend state.</p>\n<h3 id=\"base-url\">Base URL</h3>\n<p>The base URL for connecting to the SugarMarket API is follows:</p>\n<p><a href=\"https://developer.salesfusion.com/api/2.0/\">https://developer.salesfusion.com/api/2.0/</a></p>\n<h3 id=\"authentication\">Authentication</h3>\n<p>The SugarMarket API utilizes two authentication methods:</p>\n<ul>\n<li><p>HTTP Basic Authentication through TLS/SSL</p>\n</li>\n<li><p>Token-based Authentication</p>\n</li>\n</ul>\n<h4 id=\"http-basic-authentication\">HTTP Basic Authentication</h4>\n<p>To authenticate an HTTP request, the request must contain a properly formatted Authorization field in the HTTP headers. This requires that the user credentials be formatted correctly, encoded as a base64 string, and included in the Authorization field.</p>\n<p>The sample code below demonstrates this process:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>// The Basic Authentication format expected is user@domain:password\n// (i.e. john@domain:password, or john@email.tld@domain:password)\nprivate static string user_credentials = string.Format(\n    \"{0}@{1}:{2}\", api_username, api_domain, api_password);\nprivate static string base64_user_credentials = Convert.ToBase64String(\n    Encoding.ASCII.GetBytes(user_credentials));\npublic static string AuthorizationHeader = string.Format(\n    \"Basic {0}\", base64_user_credentials);\n\n</code></pre><p>The resulting AuthorizationHeader string looks as follows:</p>\n<p><code>{{vault:basic-auth}}</code></p>\n<p>This string should subsequently be set as the Authorization field in the HTTP headers for all requests sent to the API as shown below:</p>\n<p><code>Authorization: {{vault:basic-auth}}</code></p>\n<p>As mentioned before, for security, all requests made against the API must be made through TLS/SSL over port 443 (the default port for HTTPS).</p>\n<p>Note: the format of the username within the authorization header should be [username]@[login domain] where the login domain is the domain you configured during the creation of your SugarMarket account.</p>\n<p>A unique API username and user account should be created and authorized to interact with the API. This user account should be separate from any user account associated with the marketing or sales process and requires API Access permissions in order to access the API. In order to authorize a user account for API Access, please follow these steps:</p>\n<ol>\n<li><p>Contact your Sugar Market consultant or CSM so they can add the 'Customer-Wide' and 'Customer-Wide - API Access' features.</p>\n</li>\n<li><p>Log into the SugarMarket application using an admin user account.</p>\n</li>\n<li><p>Navigate to Account Configuration and select Roles under the Administrator navigation tree.</p>\n</li>\n<li><p>Create a new role named API Access and check Data Access and Navigation Access.</p>\n</li>\n<li><p>Under the Navigation Access tab, select \"Customer-Wide\" and \"Customer-Wide - API Access\" and add it to the Access Provided list.</p>\n</li>\n<li><p>Click Save and Return.</p>\n</li>\n<li><p>Navigate to User administration and open the target user account for editing.</p>\n</li>\n<li><p>In the user preferences view, select the Roles tab.</p>\n</li>\n<li><p>Click Add New Role and select the previously configured API Access role from the drop-down menu.</p>\n</li>\n<li><p>Click Save.</p>\n</li>\n</ol>\n<p>Alternatively, you can authorize a user account directly to access the API without creating an API Access user role. To do so, follow these steps:</p>\n<ol>\n<li><p>Log into the SugarMarket application using an admin user account.</p>\n</li>\n<li><p>Navigate to User administration and open the target user account for editing.</p>\n</li>\n<li><p>Under the Navigation tab, select \"Customer-Wide - API Access\" and add it to the Access Provided list.</p>\n</li>\n</ol>\n<h4 id=\"token-based-authentication\">Token-Based Authentication</h4>\n<p>To obtain a token, make a request against the following endpoint providing your username, domain, and password as a JSON blob:<br>POST <a href=\"https://developer.salesfusion.com/api/2.0/users/request-token/\">https://developer.salesfusion.com/api/2.0/users/request-token/</a></p>\n<p>Here’s a CURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location --request POST 'https://developer.salesfusion.com/api/2.0/users/request-token/' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{\n    \"username\": \"robparker@axiomfire.com\",\n    \"password\": \"XXXXXXXXXXXXXXX\"\n}'\n\n</code></pre><p>Response will look as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>200\n{\n   \"token\": \"8ffa19e5b03874a543dda1f97d5acb813a236675\"\n}\n\n</code></pre><p>You can then make requests to the API by providing the following HTTP Authorization header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Token 8ffa19e5b03874a543dda1f97d5acb813a236675\n\n</code></pre><p>Here’s a CURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location --request GET 'https://developer.salesfusion.com/api/2.0/contacts' \\\n--header 'Authorization: Token 8ffa19e5b03874a543dda1f97d5acb813a236675\n\n</code></pre><p>Tokens will expire after 8 hours. When a token is expired, a request to the API will return the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>401\n{\n   \"detail\": \"Expired token\"\n}\n\n</code></pre><p>Subsequent requests to the API will return the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>401\n{\n   \"Msg\": \"[Invalid token.]\"\n}\n\n</code></pre><p>At this point, a new token must be requested.</p>\n<h4 id=\"date-time-formats\">Date Time Formats</h4>\n<p>All date/timestamp values passed to and received from the API will be in ISO 8601 format. Timestamp values will reflect Coordinated Universal Time (UTC).</p>\n<h4 id=\"integrating-the-sugarmarket-iframe-feature\">Integrating the SugarMarket iFrame feature</h4>\n<p>The SugarMarket iframe component provides an easy way to integrate marketing automation data and features into your own application. The iframe is contact-specific and requires the following three query string parameters in order to load properly:</p>\n<ol>\n<li><p>orgid = A unique ID assigned to your SugarMarket instance. This value can be retrieved using the /tenant/info endpoint. The returned crm_org_id field reflects your orgid.</p>\n</li>\n<li><p>userid = Your user id as recorded within the CRM. This value can be retrieved using the /tenant/info endpoint. The returned crm_id field reflects your userid.</p>\n</li>\n<li><p>recordid = The contact ID of interest as reflected by the crm_id field returned from the /contacts/ endpoint</p>\n</li>\n</ol>\n<p>The iframe URL is constructed as follows:</p>\n<p><a href=\"https://iframe.salesfusion.com/?userId=\">https://iframe.salesfusion.com/?userId=</a>&amp;orgId=&amp;recordId=</p>\n<p>Of course, it will be important to populate the crm_id fields for users and contacts within your SugarMarket instance in order to utilize the iframe feature. If your CRM doesn’t automatically populate these fields we recommend either GUIDs or hashes in lieu of IDs.</p>\n<h4 id=\"using-postman-and-making-test-calls\">Using Postman and Making Test Calls</h4>\n<ol>\n<li><p>Download and install postman from here: <a href=\"https://www.getpostman.com/downloads\">https://www.getpostman.com/downloads</a></p>\n</li>\n<li><p>Ensure you have completed the steps above to setup your User and API access role to authenticate to the API.</p>\n</li>\n</ol>\n<p>Open Postman on your machine and get familiar with the layout. For this example we will be querying the contacts table within Sugar Market, formerly known as Salesfusion.</p>\n<ol>\n<li>Within the Postman app, first we will focus on the bar that says \"Enter Request URL\". In this space we need to put the URL of the RESTFUL API endpoint we would like to call. In this example the URL is:</li>\n</ol>\n<p><a href=\"https://developer.salesfusion.com/api/2.0/contacts/\">https://developer.salesfusion.com/api/2.0/contacts/</a></p>\n<ol>\n<li>We now need to setup Authentication. Click into the \"Authorization\" menu (this menu is opened by default in most cases). In the dropdown menu that states \"Inherit auth from parent\" select the \"Basic Auth\" option. You should now see a Username and Password field on the right side of the screen.</li>\n</ol>\n<p>Enter your username and password into the corresponding fields. Your API username is actually the username of the user you created plus the domain name:</p>\n<p><a href=\"https://mailto:USERNAME@DOMAIN.COM\">USERNAME@DOMAIN.COM</a></p>\n<p>NOTE: Some users may default to having an emailaddress as the username in which case you will need to use the following. It might look a little funny but should work just fine.</p>\n<p><a href=\"https://mailto:USERNAME@EMAILADDRESS.COM\">USERNAME@EMAILADDRESS.COM</a>@DOMAIN.COM</p>\n<ol>\n<li>Now that we have authentication setup we can simply make our API call. Just hit the send button! If everything has been done correctly, you should receive a JSON object of your top 100 contacts back! If anything is done incorrectly, you may receive an error. If you are unsure of what this error means please file a case with the Sugar Support team with a screenshot of the error and help will be on the way!</li>\n</ol>\n<h4 id=\"using-the-search-feature\">Using the Search feature</h4>\n<p>Searching via the Sugar Marke RESTFUL API is as simple as including a URL parameter in your API call. It does require a specific table be specified(Such as contacts) and cannot be called on the base route. The query is appended to the end of the route. You can perform searches on the all tables presented by the RESTUL API to find relevant information. It is also not limited to a singular field and will search all fields for relevant values (first_name, email, last_name, etc.)</p>\n<p>Example below</p>\n<p>Base Route:</p>\n<p><a href=\"https://developer.salesfusion.com/api/2.0/contacts/\">https://developer.salesfusion.com/api/2.0/contacts/</a></p>\n<p>Query:</p>\n<p>?search=tj.southern</p>\n<p>Combined:</p>\n<p><a href=\"https://developer.salesfusion.com/api/2.0/contacts/\">https://developer.salesfusion.com/api/2.0/contacts/</a> ?search=tj.southern</p>\n<h4 id=\"fetching-records-by-date-range\">Fetching Records by Date Range</h4>\n<p>For some scenarios when getting data from the Sugar Market RESTUL API you may want to query a certain entity to only fetch records that fall within a certain date range.</p>\n<p>An example of this would be wanting to fetch all contacts that have been updated in the month of October.</p>\n<p>To do this we can append UTM paramters to our base route like the example below:</p>\n<p>Base Route: <a href=\"https://developer.salesfusion.com/api/2.0/contacts\">https://developer.salesfusion.com/api/2.0/contacts</a></p>\n<p>UTM Parameters: ?date_field=updated_date&amp;start_date=2018-20-01&amp;end_date=2018-10-31</p>\n<p>Combined: <a href=\"https://developer.salesfusion.com/api/2.0/contacts?date_field=updated_date&amp;start_date=2018-09-01T00:01&amp;end_date=2018-09-30T23:59\">https://developer.salesfusion.com/api/2.0/contacts?date_field=updated_date&amp;start_date=2018-09-01T00:01&amp;end_date=2018-09-30T23:59</a></p>\n<p>Within the appended UTM Parameters the \"date_field\" section can be any date field presented on the given route such as \"Created_date\".</p>\n<h4 id=\"sorting-data-with-the-restful-api\">Sorting data with the RESTFUL API</h4>\n<p>Sorting data with the Sugar Market RESTFUL API is as simple as adding an additional parameter to your base route. The sorting function can be called on all tables but can ONLY be used on standard fields as custom fields are not preset in paginated views at this time.</p>\n<p>Example:<br>Base URL:</p>\n<p><a href=\"https://developer.salesfusion.com/api/2.0/contacts/\">https://developer.salesfusion.com/api/2.0/contacts/</a></p>\n<p>Query:<br>?ordering=contact_id</p>\n<p>Combined:<br><a href=\"https://developer.salesfusion.com/api/2.0/contacts/?ordering=-contact_id\">https://developer.salesfusion.com/api/2.0/contacts/?ordering=-contact_id</a></p>\n<p>Operator = Sorts Ascending<br>Operator =- Sorts Descending</p>\n<h4 id=\"api-throttle-rates\">API Throttle Rates</h4>\n<p>The REST API throttle rates are 90 calls per minute or 2000 calls per day, whichever happens first.</p>\n<h4 id=\"available-functionality\">Available Functionality</h4>\n<p>At current, the API supports CRUD operations for core CRM entities and a suite of core marketing automation functions.</p>\n<h4 id=\"how-to-get-help\">How to Get Help</h4>\n<p>For technical support, please contact us at the following: <a href=\"https://mailto:support@sugarcrm.com\">support@sugarcrm.com</a></p>\n<p>Please include a detailed description of what you are trying to accomplish and a code snippet or request and response objects if possible.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"16759889","collectionId":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","publishedId":"2s83zjt3js","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-10-24T19:43:25.000Z"},"item":[{"name":"Accounts","item":[{"name":"/api/2.0/accounts/","id":"2361d590-2420-40e9-90d3-3a256fe6855d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/accounts/","description":"<h5 id=\"description\">Description:</h5>\n<p>Get accounts in a paginated list of 100 with limited columns.</p>\n<h5 id=\"account-level---ordering\">Account Level - Ordering</h5>\n<p>The following fields on the Accounts level are available for ordering via ascending or descending. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Account_ID - Ascending/Descending\nACcount_Name - Ascending/Descending\nBilling_City - Ascending/Descending\nCreated_Date - Ascending/Descending\nUpdated_Date - Ascending/Descending\nPhone - Ascending/Descending\nCustom_Score_Field - Ascending/Descending\nScore - Ascending/Descending\nAccount_Score - Ascending/Descending\nKey_Account - Ascending/Descending\nSalesfusion_Last_Activity - Ascending/Descending\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-{\">    \"count\": 1,\n    \"total_count\": 1,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/accounts/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"account_id\": 1,\n            \"account\": \"https://developer.salesfusion.com/api/2.0/accounts/1/\",\n            \"account_name\": \"No Company\",\n            \"owner_id\": 3,\n            \"owner\": \"https://developer.salesfusion.com/api/2.0/users/3/\",\n            \"phone\": \"\",\n            \"created_date\": \"2018-05-16T07:31:00Z\",\n            \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/1/\",\n            \"updated_date\": \"2018-05-18T15:27:00Z\",\n            \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n            \"billing_city\": \"\",\n            \"contacts\": \"https://developer.salesfusion.com/api/2.0/accounts/1/contacts/\",\n            \"created_by_id\": 1,\n            \"updated_by_id\": 2,\n            \"custom_score_field\": \"0\",\n            \"key_account\": false,\n            \"account_score\": 0\n        }\n    }\n</code></pre>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","accounts",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2361d590-2420-40e9-90d3-3a256fe6855d"},{"name":"/api/2.0/accounts/","id":"9f23a9f1-51db-434c-a5cd-4a7fbfba3b3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"account_name\":\"TJs Test Account!\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/accounts/","description":"<h5 id=\"description\">Description:</h5>\n<p>Creates a new account in the Salesfusion database.</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"account_id\": 119490,\n    \"account\": \"https://developer.salesfusion.com/api/2.0/accounts/119490/\",\n    \"account_name\": \"TJs Test Account!\",\n    \"owner_id\": 2,\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"phone\": \"\",\n    \"created_date\": \"2018-12-17T19:41:58.909335\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_date\": \"2018-12-17T19:41:58.909346\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"billing_city\": \"\",\n    \"contacts\": \"https://developer.salesfusion.com/api/2.0/accounts/119490/contacts/\",\n    \"created_by_id\": 2,\n    \"updated_by_id\": 2,\n    \"account_score\": null,\n    \"key_account\": false\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","accounts",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f23a9f1-51db-434c-a5cd-4a7fbfba3b3e"},{"name":"/api/2.0/accounts/{PK}/","id":"a0564505-de6c-4ba9-967e-39b8e0231849","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/accounts/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a specific account. Contains all standard and custom fields. </p>\n<p>PK → Account_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"account_name\": \"TJs Test Account!\",\n    \"owner_id\": 2,\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"phone\": \"\",\n    \"fax\": \"\",\n    \"created_date\": \"2018-12-17T19:42:00Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_date\": \"2018-12-17T19:42:00Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"created_by_id\": 2,\n    \"updated_by_id\": 2,\n    \"billing_street\": \"\",\n    \"billing_country\": \"\",\n    \"billing_city\": \"\",\n    \"billing_state\": \"\",\n    \"billing_zip\": \"\",\n    \"shipping_street\": \"\",\n    \"shipping_country\": \"\",\n    \"shipping_city\": \"\",\n    \"shipping_state\": \"\",\n    \"shipping_zip\": \"\",\n    \"account_number\": \"\",\n    \"description\": \"\",\n    \"crm_id\": \"\",\n    \"type\": \"\",\n    \"currency_iso_code\": \"\",\n    \"url\": \"\",\n    \"rating\": \"\",\n    \"campaign_id\": \"\",\n    \"sic\": \"\",\n    \"short_description\": \"\",\n    \"industry\": \"\",\n    \"custom_fields\": {               \n        \"School_Name__c\": null,\n        \"AnnualRevenue\": null,\n        \"ShippingLatitude\": null\n    },\n    \"account_score\": null,\n    \"key_account\": false,\n    \"salesfusion_last_activity\": null\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","accounts","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0564505-de6c-4ba9-967e-39b8e0231849"},{"name":"/api/2.0/accounts/{PK}/","id":"46eb0213-a4fd-4da3-a1ad-abb23bbe7055","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"account_name\": \"This is a new account name!\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/accounts/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies a specific account. If the specified account does not exist a new account will be provided. </p>\n<p>PK → Account_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"account_name\": \"This is a new account name!\",\n    \"owner_id\": 2,\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"phone\": \"\",\n    \"fax\": \"\",\n    \"created_date\": \"2018-12-17T19:42:00Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_date\": \"2018-12-17T19:46:22.906458Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"created_by_id\": 2,\n    \"updated_by_id\": 2,\n    \"billing_street\": \"\",\n    \"billing_country\": \"\",\n    \"billing_city\": \"\",\n    \"billing_state\": \"\",\n    \"billing_zip\": \"\",\n    \"shipping_street\": \"\",\n    \"shipping_country\": \"\",\n    \"shipping_city\": \"\",\n    \"shipping_state\": \"\",\n    \"shipping_zip\": \"\",\n    \"account_number\": \"\",\n    \"description\": \"\",\n    \"crm_id\": \"\",\n    \"type\": \"\",\n    \"currency_iso_code\": \"\",\n    \"url\": \"\",\n    \"rating\": \"\",\n    \"campaign_id\": \"\",\n    \"sic\": \"\",\n    \"short_description\": \"\",\n    \"industry\": \"\",\n    \"custom_fields\": {\n        \"School_Name__c\": null,\n        \"AnnualRevenue\": null,\n        \"ShippingLatitude\": null\n    },\n    \"account_score\": null,\n    \"key_account\": false,\n    \"salesfusion_last_activity\": null\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","accounts","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"46eb0213-a4fd-4da3-a1ad-abb23bbe7055"},{"name":"/api/2.0/accounts/{PK}/","id":"ce99c7d7-febe-474b-b843-a8ec74591190","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"account_name\": \"This is a new account name!\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/accounts/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies a specific account. If the account_id provided does not exist \"Not Found\" will be returned.</p>\n<p>PK → Account_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"account_name\": \"This is a new account name!\",\n    \"owner_id\": 2,\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"phone\": \"\",\n    \"fax\": \"\",\n    \"created_date\": \"2018-12-17T19:42:00Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_date\": \"2018-12-17T19:46:22.906458Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"created_by_id\": 2,\n    \"updated_by_id\": 2,\n    \"billing_street\": \"\",\n    \"billing_country\": \"\",\n    \"billing_city\": \"\",\n    \"billing_state\": \"\",\n    \"billing_zip\": \"\",\n    \"shipping_street\": \"\",\n    \"shipping_country\": \"\",\n    \"shipping_city\": \"\",\n    \"shipping_state\": \"\",\n    \"shipping_zip\": \"\",\n    \"account_number\": \"\",\n    \"description\": \"\",\n    \"crm_id\": \"\",\n    \"type\": \"\",\n    \"currency_iso_code\": \"\",\n    \"url\": \"\",\n    \"rating\": \"\",\n    \"campaign_id\": \"\",\n    \"sic\": \"\",\n    \"short_description\": \"\",\n    \"industry\": \"\",\n    \"custom_fields\": {\n        \"School_Name__c\": null,\n        \"AnnualRevenue\": null,\n        \"ShippingLatitude\": null\n    },\n    \"account_score\": null,\n    \"key_account\": false,\n    \"salesfusion_last_activity\": null\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","accounts","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce99c7d7-febe-474b-b843-a8ec74591190"},{"name":"/api/2.0/accounts/{PK}/","id":"ba966d76-036d-4e39-8825-03f57518e709","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://developer.salesfusion.com/api/2.0/accounts/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Delete a specified account. </p>\n<p>PK →  Account_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","accounts","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba966d76-036d-4e39-8825-03f57518e709"},{"name":"/api/2.0/accounts/{PK}/contacts/","id":"99f573d4-c808-4cb9-9770-a273d21ea1c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/accounts/{PK}/contacts/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a list of contacts for a specific account. Contains all standard and custom fields.</p>\n<p>PK → account_id</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"count\": 1775,\n    \"total_count\": 1775,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/accounts/1/contacts/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"contact_id\": 2,\n            \"contact\": \"https://developer.salesfusion.com/api/2.0/contacts/2/\",\n            \"first_name\": \"Siri\",\n            \"last_name\": \"Keeton\",\n            \"phone\": null,\n            \"email\": \"blindsight@example.com\",\n            \"account_id\": 1,\n            \"account_name\": \"Theseus\",\n            \"account\": \"https://developer.salesfusion.com/api/2.0/accounts/1/\",\n            \"owner_name\": \"John Wick\",\n            \"owner\": \"https://developer.salesfusion.com/api/2.0/users/123/\",\n            \"created_date\": \"2026-01-14T11:50:04Z\",\n            \"created_by\": \"John Wick\",\n            \"updated_date\": \"2026-02-25T17:57:00Z\",\n            \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/123/\",\n            \"created_by_id\": 123,\n            \"updated_by_id\": 123,\n            \"crm_id\": \"se45v677-9546-dbfs-8658-0etr546547e\",\n            \"opt_out\": \"N\",\n            \"opt_out_date\": null,\n            \"crm_type\": \"Lead\",\n            \"status\": \"Open\",\n            \"title\": \"Purchasing Manager\",\n            \"custom_score_field\": \"0\",\n            \"deliverability_status\": 1,\n            \"deliverability_message\": \"Delivered\",\n            \"delivered_date\": \"2026-03-14T02:51:45Z\",\n            \"del_date\": \"2026-04-14T02:51:45Z\",\n            \"deleted_date\": \"2026-04-19T23:13:14.017000Z\"\n        },\n...\n]\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","accounts","{PK}","contacts",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"99f573d4-c808-4cb9-9770-a273d21ea1c9"}],"id":"b0aeb0cd-80ea-4688-8474-54e4873f32f3","_postman_id":"b0aeb0cd-80ea-4688-8474-54e4873f32f3","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Alerts","item":[{"name":"/api/2.0/alerts/","id":"58c05cb8-2250-41bb-af3f-50859840bf10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/alerts/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of alerts in batches of 100 with a limited number of columns with basic information.</p>\n<h5 id=\"alerts-level---ordering\">Alerts Level - Ordering</h5>\n<p>The following fields on the Alerts level are available for ordering via ascending or descending. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>ID - Ascending/Descending\nDate - Ascending/Descending\nUser_ID - Ascending/Descending\nAlert_Type - Ascending/Descending\nAlert_Score - Ascending/Descending\nEmail_Address - Ascending/Descending\nStatus - Ascending/Descending\n\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"count\": 22344,\n    \"total_count\": 22344,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/alerts/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"url\": \"https://developer.salesfusion.com/api/2.0/alerts/1/\",\n            \"id\": 1,\n            \"date\": \"2013-03-04T09:34:03.460000Z\",\n            \"user_id\": 1,\n            \"alert_type\": null,\n            \"alert_score\": null,\n            \"email_address\": \"michael.north@sandbox.salesforce.com\",\n            \"status\": 1\n        }\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","alerts",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"58c05cb8-2250-41bb-af3f-50859840bf10"},{"name":"/api/2.0/alerts/{PK}/","id":"7fb04b05-9708-4353-a299-cd2167c892ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/alerts/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a specific alert. Returns all detailed information regarding the specific alert.</p>\n<p>PK → ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"date\": \"2013-03-04T09:34:03.460000Z\",\n    \"user_id\": 1,\n    \"alert_type\": null,\n    \"alert_score\": null,\n    \"email_address\": \"michael.north@sandbox.salesforce.com\",\n    \"status\": 1,\n    \"contact_email\": \"\",\n    \"from_email\": \"noreply@msgapp.com\",\n    \"subject\": \"Weekly Web Analytics Report\",\n    \"body\": null,\n    \"cc_email\": \"\",\n    \"bcc_email\": \"\",\n    \"account_name\": null\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","alerts","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7fb04b05-9708-4353-a299-cd2167c892ec"}],"id":"df4ca5fe-aaa4-407d-9d0b-355cf7b38829","_postman_id":"df4ca5fe-aaa4-407d-9d0b-355cf7b38829","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Campaigns","item":[{"name":"Sending Functions","item":[{"name":"/api/2.0/cmapaigns/email/{PK}/schedule/","id":"933a5b14-d3fd-421d-b3c4-54506e71acc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"post_date\": \"2019-01-22T00:00:00.000000Z\"\r\n}"},"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/schedule/","description":"<h5 id=\"description\">Description:</h5>\n<p>Schedules and email for a future send date. If you wish to send the email immediately, use the \"/campaigns/send/\" route.</p>\n<p>PK → Campaign ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","schedule",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"933a5b14-d3fd-421d-b3c4-54506e71acc3"},{"name":"/api/2.0/campaigns/email/{PK}/send/","id":"c591abcb-a904-4f10-8a41-2f128428b172","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/send/","description":"<h5 id=\"description\">Description:</h5>\n<p>Sends a specified campaign immediately. </p>\n<p>PK → Campaign_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","send",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c591abcb-a904-4f10-8a41-2f128428b172"},{"name":"/api/2.0/campaigns/email/{PK}/recall/","id":"5b45b592-5c39-4b4c-9326-5614d53e16d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/recall/","description":"<h5 id=\"description\">Description:</h5>\n<p>Recalls a specified scheduled campaign. This will place the campaign back into \"Draft\" mode. This only works for campaigns that are scheduled. Sent campaigns can not be recalled.</p>\n<p>PK → Campaign_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","recall",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b45b592-5c39-4b4c-9326-5614d53e16d9"}],"id":"5e45fb09-dde4-4e79-b47a-874392f0984f","_postman_id":"5e45fb09-dde4-4e79-b47a-874392f0984f","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Campaign Lists","item":[{"name":"/api/2.0/campaigns/email/{PK}/lists/","id":"22381056-e7d3-4dfc-a971-e52d9475dd8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/lists/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads lists that are associated to a specific campaign.</p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"count\": 1,\n    \"total_count\": 1,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": 7260,\n            \"campaign\": 8791,\n            \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n            \"created_date\": \"2018-12-14T22:40:28.593000Z\",\n            \"action\": \"Include\",\n            \"type\": \"C\",\n            \"name\": \"8764\"\n        }\n    ]\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","lists",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"22381056-e7d3-4dfc-a971-e52d9475dd8a"},{"name":"/api/2.0/campaigns/email/{PK}/lists/","id":"b1511930-ecba-4695-9093-6fa1b5721cf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"type\": \"D\",\r\n\"name\": \"Opt out list\",\r\n\"action\": \"Exclude\"\r\n}"},"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/lists/","description":"<h5 id=\"description\">Description:</h5>\n<p>Adds a list to campaign for inclusion or exclusion. </p>\n<p>PK → Campaign_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","lists",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1511930-ecba-4695-9093-6fa1b5721cf5"},{"name":"/api/2.0/campaigns/email/{PK}/lists/","id":"71ae8faf-ecec-4b07-b617-441fbf52f0fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"type\": \"D\",\r\n\"name\": \"Opt out list\",\r\n\"action\": \"Exclude\"\r\n}"},"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/lists/?archive=0","description":"<h5 id=\"description\">Description:</h5>\n<p>Adds a list to a campaign for inclusion or exclusion. The following value must be appended to the endpoint URL:</p>\n<p>?archive=0</p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"id\": 7266\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","lists",""],"host":["developer","salesfusion","com"],"query":[{"key":"archive","value":"0"}],"variable":[]}},"response":[],"_postman_id":"71ae8faf-ecec-4b07-b617-441fbf52f0fe"}],"id":"4ccc78cb-a720-445a-8112-2e1e61c7893e","_postman_id":"4ccc78cb-a720-445a-8112-2e1e61c7893e","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Schema","item":[{"name":"/api/2.0/campaigns/email/schema/","id":"ea24e41c-811f-44a9-a35e-1275f849fad3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/schema/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads the schema of the campaigner table and displays data regarding field types/length.</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"campaign_editor_body\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"view_data\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"total_clicks\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"recurring_frequency\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 20\n    },\n    \"from_email\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 150\n    },\n    \"activated_date\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true\n    },\n    \"trigger_minute\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"created_by_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"body\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"parent_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"total_opens\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"post_date\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true\n    },\n    \"crm_id\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 100\n    },\n    \"webinar_master_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"campaigner_list\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 200\n    },\n    \"recurring_stop\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true\n    },\n    \"total_delivered\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"refresh\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"header\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 200\n    },\n    \"throttle_drip_days\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"design_type_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"created_by_name\": {\n        \"type\": \"CharField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"throttle_trigger_days\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"campaign_editor_body_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"from_email_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 150\n    },\n    \"campaign_editor_body_text_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"create_date\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"campaign_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"advanced_ab\": {\n        \"type\": \"BooleanField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"display_name\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 100\n    },\n    \"subject\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 500\n    },\n    \"campaigner_type\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 50\n    },\n    \"updated_by_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"post_date_b\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true\n    },\n    \"rss_feed_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"subject_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 500\n    },\n    \"display_name_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 100\n    },\n    \"body_text_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"body_text\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"last_update_date\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"campaign_editor_body_text\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"campaign_name\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 100\n    },\n    \"trigger_days\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"updated_by_name\": {\n        \"type\": \"CharField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"dialog_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"body_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"trigger_hour\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"folder_name\": {\n        \"type\": \"CharField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"sender\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": true,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 150\n    },\n    \"recurring\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"dynamic_type\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 50\n    },\n    \"folder_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"activated\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"notification_list\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 500\n    },\n    \"asset_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    }\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","schema",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ea24e41c-811f-44a9-a35e-1275f849fad3"},{"name":"/api/campaigns/email/{PK}/schema/","id":"15668001-ab48-4fd4-ad81-bb59cb220585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/schema/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads the schema of a specific campaign and displays data regarding the field types/length. </p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"folder_name\": {\n        \"type\": \"CharField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"activated_date\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true\n    },\n    \"created_by_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"notification_list\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 500\n    },\n    \"campaign_name\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 100\n    },\n    \"subject_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 500\n    },\n    \"recurring_frequency\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 20\n    },\n    \"crm_id\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 100\n    },\n    \"campaigner_type\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 50\n    },\n    \"rss_feed_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"dynamic_type\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 50\n    },\n    \"throttle_trigger_days\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"header\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 200\n    },\n    \"body\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"advanced_ab\": {\n        \"type\": \"BooleanField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"body_text\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"campaign_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"campaign_editor_body_text\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"design_type_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"recurring\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"post_date_b\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true\n    },\n    \"body_text_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"trigger_hour\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"sender\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 150\n    },\n    \"parent_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"body_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"refresh\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"view_data\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"campaigner_list\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 200\n    },\n    \"created_by_name\": {\n        \"type\": \"CharField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"asset_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"from_email\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 150\n    },\n    \"trigger_minute\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"webinar_master_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"folder_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"campaign_editor_body_text_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"throttle_drip_days\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"last_update_date\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true\n    },\n    \"updated_by_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"activated\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"recurring_stop\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true\n    },\n    \"campaign_editor_body_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"display_name_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 100\n    },\n    \"total_delivered\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"dialog_id\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"post_date\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true\n    },\n    \"campaign_editor_body\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"trigger_days\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true,\n        \"max_value\": 2147483647,\n        \"min_value\": -2147483648\n    },\n    \"create_date\": {\n        \"type\": \"DateTimeField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": true\n    },\n    \"updated_by_name\": {\n        \"type\": \"CharField\",\n        \"read_only\": true,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"display_name\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 100\n    },\n    \"from_email_b\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 150\n    },\n    \"total_recipients\": {\n        \"type\": \"IntegerField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false\n    },\n    \"subject\": {\n        \"type\": \"CharField\",\n        \"read_only\": false,\n        \"write_only\": false,\n        \"required\": false,\n        \"allow_null\": false,\n        \"max_length\": 500\n    }\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","schema",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"15668001-ab48-4fd4-ad81-bb59cb220585"}],"id":"32bc0385-ded2-4a5a-b0bf-828742605833","_postman_id":"32bc0385-ded2-4a5a-b0bf-828742605833","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Statistics","item":[{"name":"/api/2.0/campaigns/email/{PK}/statistics/","id":"6bcc18f4-a1e2-4843-8017-2edeb9099522","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/statistics/","description":"<h5 id=\"description\">Description:</h5>\n<p>Returns a count of the records that the email was sent to and provides a deliverability information about the overall send.</p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"opens\": 0,\n    \"bounced\": 0,\n    \"cancelled\": 0,\n    \"unsubscribes\": 0,\n    \"sent\": 0,\n    \"delivered\": 0,\n    \"unconfirmed\": 0,\n    \"clicks\": 0,\n    \"rejected\": 0,\n    \"excluded_domains\": 0,\n    \"recipients\": 0\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","statistics",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6bcc18f4-a1e2-4843-8017-2edeb9099522"},{"name":"/api/2.0/campaigns/email/{PK}/recipients/","id":"15b6840d-76aa-4da3-bbf4-8606650f9d98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/clicks/","description":"<h5 id=\"description\">Description:</h5>\n<p>Retrieves a paginated list of campaign recipients for a deployed campaign in batches of 100.</p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"filtering-by-fileds\">Filtering by fileds:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>body_source\nstatus\ndelivery_status\ncampaigner_list_id\nfinal_population\n\n</code></pre><h5 id=\"fetching-records-by-date-range\">Fetching Records by Date Range:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>create_date\npost_date\n\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"count\": 1,\n    \"total_count\": 1,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"campaign_name\": \"Pre-populating emailaddress\",\n            \"click_date\": \"2018-05-17T15:53:21.737000Z\",\n            \"contact_id\": 755093,\n            \"email_address\": \"tj.southern@salesfusion.com\",\n            \"email_id\": 256120,\n            \"first_name\": \"STuart\",\n            \"id\": 36955,\n            \"last_name\": \"Stabler\",\n            \"link_id\": 0,\n            \"redirect_url\": \"https://sandbox-salesforce.pages.salesfusion.com/Banks-of-the-northshore?email=tj.southern@salesfusion.com\"\n        }\n    ]\n}\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","clicks",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"15b6840d-76aa-4da3-bbf4-8606650f9d98"},{"name":"/api/2.0/campaigns/email/{PK}/delivered/","id":"2cf861c1-e55d-4145-b0ad-746264e74563","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/delivered/","description":"<h5 id=\"description\">Description:</h5>\n<p>Retrieves a paginated list of campaign recipients for a deployed campaign in batches of 100.</p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"filtering-by-fileds\">Filtering by fileds:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>body_source\ncampaigner_list_id\nfinal_population\n\n</code></pre><h5 id=\"fetching-records-by-date-range\">Fetching Records by Date Range:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>create_date\npost_date\n\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"count\": 1,\n    \"total_count\": 1,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"header\": \"The Expanse\",\n            \"campaigner_list\": null,\n            \"from_email\": \"Bobbie.Draper@example.com\",\n            \"email_address\": \"James.Holden@example.com\",\n            \"recipient_id\": 16,\n            \"campaign\": 251,\n            \"unsubscribes\": 0,\n            \"opens\": 5,\n            \"asset_id\": 0,\n            \"alert_crm\": 0,\n            \"id_open\": \"00000000-0000-0000-0000-000000000000\",\n            \"create_date\": \"2025-10-22T10:28:20.780000Z\",\n            \"create_by\": 21,\n            \"id_click\": null,\n            \"body_source\": \"A\",\n            \"contact\": \"https://developer.salesfusion.com/api/2.0/contacts/27/\",\n            \"archived\": 1,\n            \"clicks\": 0,\n            \"webinar_id\": 0,\n            \"subject\": \"Inhuman figure on Ganymede\",\n            \"friend_forward\": 0,\n            \"display_name\": \"Bobbie Draper\",\n            \"pending_refresh\": 1,\n            \"delivery_status\": 1,\n            \"final_population\": false,\n            \"crm_id\": \"123\",\n            \"post_date\": \"2025-10-22T10:31:59.817000Z\",\n            \"dynamic_content_id\": 0,\n            \"sender\": \"Bobbie.Draper@example.com\",\n            \"status\": 1,\n            \"thread_number\": 5,\n            \"forms\": 0,\n            \"campaigner_actual_id\": 266,\n            \"delivery_message\": \"Delivered\",\n            \"campaign_name\": \"The Expanse\",\n            \"campaign_id\": 251,\n            \"contact_id\": 27,\n            \"contact_first_name\": \"James\",\n            \"contact_last_name\": \"Holden\",\n            \"contact_owner\": \"Chrisjen Avasarala\",\n            \"contact_account\": \"Earth\",\n            \"account_id\": 13898,\n            \"created_by_name\": \"Bobbie Draper\"\n        },\n        ...\n    ]\n}\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","delivered",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2cf861c1-e55d-4145-b0ad-746264e74563"},{"name":"/api/2.0/campaigns/email/{PK}/clicks/","id":"b9572b5b-9f9b-49df-8649-7b5676840b2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/clicks/","description":"<p>#####Description:<br />Reads a paginated list of recipients that click on a specified email.</p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"filtering-by-fileds\">Filtering by fileds:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>contact_id\nbody_source (CampaignerActual.body_source - str)\ncampaigner_list_id (CampaignerActual.campaigner_list_id - int)\nr_url\nlink_order\nfinal_population\n\n</code></pre><h5 id=\"fetching-records-by-date-range\">Fetching Records by Date Range:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>click_date\n\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"count\": 1,\n    \"total_count\": 1,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"campaign_name\": \"Pre-populating emailaddress\",\n            \"click_date\": \"2018-05-17T15:53:21.737000Z\",\n            \"contact_id\": 755093,\n            \"email_address\": \"tj.southern@salesfusion.com\",\n            \"email_id\": 256120,\n            \"first_name\": \"STuart\",\n            \"id\": 36955,\n            \"last_name\": \"Stabler\",\n            \"link_id\": 0,\n            \"redirect_url\": \"https://sandbox-salesforce.pages.salesfusion.com/Banks-of-the-northshore?email=tj.southern@salesfusion.com\"\n        }\n    ]\n}\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","clicks",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b9572b5b-9f9b-49df-8649-7b5676840b2f"},{"name":"/api/2.0/campaigns/email/{PK}/opens/","id":"0ad40ecc-d144-4cba-b632-6077fd5238d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/opens/","description":"<h5 id=\"description-reads-a-paginated-list-of-recipients-that-opened-an-email-in-batches-of-100\">Description: Reads a paginated list of recipients that opened an email in batches of 100.</h5>\n<p>PK → Campaign_ID</p>\n<h5 id=\"filtering-by-fileds\">Filtering by fileds:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>contact_id\nemail_address\nbody_source (CampaignerActual.body_source - str)\ncampaigner_list_id (CampaignerActual.campaigner_list_id - int)\nlink_order (int)\nfinal_population (bool)\n\n</code></pre><h5 id=\"ordering\">Ordering:</h5>\n<p>The following fields on the opens level are available for ordering via ascending or descending.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>open_date - Ascending/Descending\nemail_address - Ascending/Descending\nfirst_name - Ascending/Descending\nlast_name - Ascending/Descending\naccount_name - Ascending/Descending\nowner_id - Ascending/Descending\nowner_name - Ascending/Descending\n\n</code></pre><h5 id=\"fetching-records-by-date-range\">Fetching Records by Date Range:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>open_date\n\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"count\": 1,\n    \"total_count\": 1,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"campaign_id\": 8407,\n            \"campaign_name\": \"Pre-populating emailaddress\",\n            \"contact_id\": 755093,\n            \"email_address\": \"tj.southern@salesfusion.com\",\n            \"first_name\": \"STuart\",\n            \"last_name\": \"Stabler\",\n            \"account_name\": \"No Company\",\n            \"account_id\": 1,\n            \"owner_id\": 3,\n            \"owner_name\": \"Michael North\",\n            \"open_date\": \"2018-05-17T15:53:15.667000Z\",\n            \"body_source\": \"A\"\n        }\n    ]\n}\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","opens",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ad40ecc-d144-4cba-b632-6077fd5238d2"},{"name":"/api/2.0/campaigns/emails/{PK}/unsubscribes/","id":"0602285a-166f-4d93-a84a-5cb043a29b86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/unsubscribes/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of recipients that unsubscribed from a specified campaign in batches of 100.</p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"filtering-by-fileds\">Filtering by fileds:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>email_address\nbody_source\ncampaigner_list_id (CampaignerActual.campaigner_list_id - int)\n\n</code></pre><h5 id=\"ordering\">Ordering:</h5>\n<p>The following fields on the opens level are available for ordering via ascending or descending.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>unsubscribed_date - Ascending/Descending\nemail_address - Ascending/Descending\nowner_id - Ascending/Descending\nowner_name - Ascending/Descending\n\n</code></pre><h5 id=\"fetching-records-by-date-range\">Fetching Records by Date Range:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>unsubscribed_date\n\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"count\": 18,\n    \"total_count\": 18,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"campaign_id\": 1105,\n            \"campaign_name\": \"SFTest for  A/B Campaign sent but in draft\",\n            \"email_address\": \"ds1970@gmail.com\",\n            \"body_source\": \"B\",\n            \"contact_id\": 123564,\n            \"first_name\": null,\n            \"last_name\": null,\n            \"account_name\": null,\n            \"account_id\": null,\n            \"owner_id\": null,\n            \"owner_name\": null,\n            \"unsubscribed_date\": \"2015-12-11T09:33:42.880000Z\"\n        }\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","unsubscribes",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0602285a-166f-4d93-a84a-5cb043a29b86"},{"name":"/api/2.0/campaigns/email/{PK}/bounces/","id":"d40bc6ff-b1b1-45d5-9371-fbc21a0c33ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/bounces/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of bounces from a specified campaign in batches of 100.</p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"filtering-by-fileds\">Filtering by fileds:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>body_source\nstatus\ndelivery_status\ncampaigner_list_id\nfinal_population\n\n</code></pre><h5 id=\"fetching-records-by-date-range\">Fetching Records by Date Range:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>create_date\npost_date\n\n</code></pre><h5 id=\"sample-resonse\">Sample Resonse:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"count\": 0,\n    \"total_count\": 0,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": []\n}\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}","bounces",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d40bc6ff-b1b1-45d5-9371-fbc21a0c33ed"}],"id":"3386daa0-9e4d-406d-abef-77950008c115","_postman_id":"3386daa0-9e4d-406d-abef-77950008c115","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"/api/2.0/campaigns/email/","id":"86f26b88-f3f8-4e8b-b0c3-537904906c6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of campaigns in batches of 100. Contains limited columns with basic information.</p>\n<h5 id=\"campaign-level---ordering\">Campaign Level - Ordering:</h5>\n<p>The following fields on the Campaign level are available for ordering via ascending or descending. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Created_By_Name - Ascending/Descending\nUpdated_By_Name - Ascending/Descending\nCreated_Date - Ascending/Descending\nLast_Update - Ascending/Descending\nPost_date - Ascending/Descending\nCampaign_Name - Ascending/Descending\nCampaign_ID - Ascending/Descending\nCampaigner_Type - Ascending/Descending\nSubject - Ascending/Descending\nTool - Ascending/Descending\nStatus - Ascending/Descending\nTotal_Opens - Ascending/Descending\nTotal_Click - Ascending/Descending\nTotal_Delivered - Ascending/Descending\nOpen_Rate - Ascending/Descending\nClick_Rate - Ascending/Descending\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"count\": 7757,\n    \"total_count\": 7757,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"url\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8791/\",\n            \"clicks\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8791/clicks/\",\n            \"opens\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8791/opens/\",\n            \"unsubscribes\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8791/unsubscribes/\",\n            \"bounces\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8791/bounces/\",\n            \"delivered\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8791/delivered/\",\n            \"total_opens\": 0,\n            \"total_clicks\": 0,\n            \"total_delivered\": 0,\n            \"is_recallable\": false,\n            \"campaign_id\": 8791,\n            \"subject\": \"KC Test 12.13\",\n            \"status\": 9,\n            \"post_date\": \"2018-12-13T19:05:58Z\",\n            \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/167/\",\n            \"create_date\": \"2018-12-13T19:06:28.113000Z\",\n            \"campaign_name\": \"KC Test 12.13\",\n            \"text_only\": false,\n            \"ab_test\": false,\n            \"last_update_date\": \"2018-12-14T22:40:40.360000Z\",\n            \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n            \"folder\": \"https://developer.salesfusion.com/api/2.0/tenant/folders/16/\",\n            \"created_by_id\": 167,\n            \"created_by_name\": \"KC Daniels\",\n            \"updated_by_id\": 2,\n            \"updated_by_name\": \"Michael North\",\n            \"folder_id\": 16,\n            \"folder_name\": \"Email Campaigns\",\n            \"guid\": null\n        }\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"86f26b88-f3f8-4e8b-b0c3-537904906c6f"},{"name":"/api/2.0/campaigns/email/","id":"1796ec32-2bd4-4f9b-a288-ad73028953ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"{{vault:authorization-password}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\"campaign_name\": \"Test Campaign Name\",\n\"from_email\": \"testemail@sugarcrm.com\",\n\"display_name\": \"test campaign!\",\n\"html\": \"<h1>This is some email content!</h1>\",\n\"folder_id\": 41\n}"},"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/","description":"<h5 id=\"description\">Description:</h5>\n<p>Creates a new campaign.</p>\n<p>Note: You cannot add or edit the email content through the API, you need to add or edit the content through the Sugar Market UI after creating the email. </p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"url\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8808/\",\n    \"clicks\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8808/clicks/\",\n    \"opens\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8808/opens/\",\n    \"unsubscribes\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8808/unsubscribes/\",\n    \"bounces\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8808/bounces/\",\n    \"delivered\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/8808/delivered/\",\n    \"is_recallable\": false,\n    \"campaign_id\": 8808,\n    \"subject\": \"\",\n    \"status\": 9,\n    \"post_date\": \"2018-12-19T14:19:51.444259\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"create_date\": \"2018-12-19T14:19:51.444273\",\n    \"campaign_name\": \"TJ Gonna send it to ya!\",\n    \"text_only\": false,\n    \"ab_test\": false,\n    \"last_update_date\": \"2018-12-19T14:19:51.444344\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"folder\": \"https://developer.salesfusion.com/api/2.0/tenant/folders/208/\",\n    \"created_by_id\": 2,\n    \"created_by_name\": \"Michael North\",\n    \"updated_by_id\": 2,\n    \"updated_by_name\": \"Michael North\",\n    \"folder_id\": 208,\n    \"folder_name\": \"Harry\"\n}\n</code></pre>","urlObject":{"protocol":"https","path":["api","2.0","campaigns","email",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1796ec32-2bd4-4f9b-a288-ad73028953ca"},{"name":"/api/2.0/campaigns/email/{PK}/","id":"1ed56e4c-54df-4275-bafe-cb8046db90ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a specific campaign ID. Returns all fields. </p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"name\": \"Michael | Test | 7.25.14\",\n    \"subject\": \"test\",\n    \"status\": \"Draft (Not Sent)\",\n    \"default_status\": 9,\n    \"post_date\": \"2014-07-25T17:45:00Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/3/\",\n    \"created_date\": \"2014-07-25T17:45:50.440000Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/3/\",\n    \"updated_date\": \"2015-01-23T14:47:09.113000Z\",\n    \"from_email\": \"michael.north@sandbox.salesforce.com\",\n    \"display_name\": \"Michael North\",\n    \"plain_text\": \"\",\n    \"html\": \"&lt;meta content=\\\"text/html; charset=utf-8\\\" http-equiv=\\\"Content-Type\\\" /&gt;\\n&lt;table style=\\\"border: 1px solid #000000; color: #ffffff; background-color: #ffffff;\\\" border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" width=\\\"600\\\" align=\\\"center\\\"&gt;\\n    &lt;tbody&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"height: 42px;\\\" colspan=\\\"2\\\"&gt;\\n            &lt;table style=\\\"background-color: #ff6600;\\\" border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" width=\\\"600\\\" align=\\\"center\\\"&gt;\\n                &lt;tbody&gt;\\n                    &lt;tr&gt;\\n                        &lt;td style=\\\"padding: 10px; width: 323px;\\\" align=\\\"left\\\"&gt;&lt;span style=\\\"padding: 10px; margin-top: 0px; margin-bottom: 0px; color: #ffffff; font-size: 17px; text-decoration: none;\\\"&gt;&lt;strong&gt;&lt;br /&gt;\\n                        &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {{#Contacts.firstname|equal \\\"Michael\\\"}}&lt;br /&gt;\\n                        &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Render meh&lt;br /&gt;\\n                        &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {{/Contacts.firstname|equal \\\"Michael\\\"}}&lt;br /&gt;\\n                        &lt;br /&gt;\\n                        &lt;br /&gt;\\n                        &lt;br /&gt;\\n                        &lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\\n                        &lt;td style=\\\"width: 277px;\\\" align=\\\"right\\\"&gt;\\n                        &lt;p style=\\\"padding: 15px; margin-top: 0px; margin-bottom: 0px; color: #231f20; font-size: 12px;\\\"&gt;&lt;a style=\\\"color: #ffffff; text-decoration: none;\\\" href=\\\"http://++Company_URL++\\\" target=\\\"main\\\"&gt;++Company_URL++ &lt;/a&gt;&lt;/p&gt;\\n                        &lt;/td&gt;\\n                    &lt;/tr&gt;\\n                &lt;/tbody&gt;\\n            &lt;/table&gt;\\n            &lt;/td&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"width: 180px; height: 43px; background-color: #c4c1c6;\\\"&gt;&amp;nbsp;&lt;/td&gt;\\n            &lt;td style=\\\"width: 420px; background-color: #c4c1c6;\\\" align=\\\"right\\\"&gt;&lt;a style=\\\"text-align: right; padding: 10px;\\\" href=\\\"http://google.com?a=ó\\\"&gt;Link 1&lt;/a&gt; | &lt;span style=\\\"text-align: right; padding: 10px;\\\"&gt;Link 1&lt;/span&gt; | &lt;span style=\\\"text-align: right; padding: 10px;\\\"&gt;Link 1&lt;/span&gt; | &lt;span style=\\\"text-align: right; padding: 10px;\\\"&gt;Link 1&lt;/span&gt;&lt;/td&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"padding: 20px; height: 28px; color: #ffffff; background-color: #000000;\\\" colspan=\\\"2\\\"&gt;&lt;span style=\\\"color: #ffff00;\\\"&gt;## If/else. Prints \\\"Hi Diplo\\\" if contact firstname is \\\"Diplo\\\" and \\\"Hi Not-Diplo\\\" otherwise&amp;nbsp;&lt;/span&gt;&lt;br /&gt;\\n            {{#firstname|equal \\\"diplo\\\"}}Hi Diplo{{/firstname|equal \\\"diplo\\\"}}{{^firstname|equal \\\"diplo\\\"}}Hi Not-Diplo{{/firstname|equal \\\"diplo\\\"}}&lt;br /&gt;\\n            &lt;/td&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"padding: 20px; height: 14px; background-color: #000000;\\\" colspan=\\\"2\\\" align=\\\"middle\\\"&gt;\\n            &lt;table border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" width=\\\"510\\\"&gt;\\n                &lt;tbody&gt;\\n                    &lt;tr&gt;\\n                        &lt;td style=\\\"width: 152px;\\\"&gt;&lt;br /&gt;\\n                        &lt;/td&gt;\\n                        &lt;td style=\\\"padding: 10px; width: 358px;\\\" valign=\\\"top\\\" align=\\\"left\\\"&gt;\\n                        &lt;p style=\\\"margin-top: 0px; margin-bottom: 10px; color: #ff7d09; font-size: 32px; font-weight: bold;\\\"&gt;FREE!&lt;/p&gt;\\n                        &lt;p style=\\\"margin-top: 0px; margin-bottom: 0px; color: #ffffff; text-align: justify;\\\"&gt;&amp;nbsp;&lt;/p&gt;\\n                        &lt;p&gt;Your first name is ++FirstName++ and you are from the city of ++City++&amp;nbsp;&lt;/p&gt;\\n                        &lt;p&gt;&lt;span style=\\\"color: #ffff00;\\\"&gt;## Nested If: only get all content if company is \\\"salesfusion\\\" AND Industry is \\\"retail\\\"&lt;/span&gt;&lt;br /&gt;\\n                        {{#company|equal \\\"salesfusion\\\"}}\\n                        Hello {{FirstName}}, How is Salesfusion today?\\n                        &lt;/p&gt;\\n                        &lt;p&gt;&lt;img alt=\\\"\\\" src=\\\"/uploads/95612/S%C3%A3o_Paulo_city_(Bela_Vista).jpg\\\" /&gt;&amp;nbsp;&lt;/p&gt;\\n                        &lt;p&gt;{{#industry|equal \\\"Retail\\\"}}\\n                        Hello {{FirstName}}, congratulations on working in retail.&lt;/p&gt;\\n                        &lt;p&gt;&lt;img alt=\\\"\\\" src=\\\"/uploads/95612/christtheredeemer.jpg\\\" /&gt;&amp;nbsp;&lt;/p&gt;\\n                        &lt;p&gt;{{/industry| equal \\\"Retail\\\"}}&lt;/p&gt;\\n                        &lt;p style=\\\"color: #ffffff; background-color: #000000;\\\"&gt;{{/company|equal \\\"salesfusion\\\"}}&lt;/p&gt;\\n                        &lt;p&gt;\\n                        &lt;/p&gt;\\n                        &lt;div&gt;&amp;nbsp;&lt;/div&gt;\\n                        &lt;p&gt;&amp;nbsp;&lt;/p&gt;\\n                        &lt;/td&gt;\\n                    &lt;/tr&gt;\\n                &lt;/tbody&gt;\\n            &lt;/table&gt;\\n            &lt;/td&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"padding: 10px; height: 14px;\\\" align=\\\"left\\\"&gt;&lt;a href=\\\"http://++Company_URL++\\\"&gt;&lt;img alt=\\\"\\\" style=\\\"border: 0px solid;\\\" src=\\\"http://images.msgapp.com/images/sfTemplates/small_logo_header.jpg\\\" width=\\\"160\\\" height=\\\"100\\\" /&gt; &lt;/a&gt;&lt;/td&gt;\\n            &lt;td style=\\\"padding: 10px; height: 14px;\\\" valign=\\\"center\\\" align=\\\"left\\\"&gt;\\n            &lt;p style=\\\"margin-top: 0px; margin-bottom: 0px;\\\"&gt;++Address Line 1++ ++Address Line 2++ &lt;span style=\\\"font-family: wingdings;\\\"&gt;w&lt;/span&gt; ++City,++ ++State/Prov&amp;nbsp;++ ++Postal code++ &lt;span style=\\\"font-family: wingdings;\\\"&gt;w&lt;/span&gt; Phone: ++Phone:++ &lt;span style=\\\"font-family: wingdings;\\\"&gt;w&lt;/span&gt; Fax: ++Fax:++ Email: &lt;a style=\\\"color: #000000; text-decoration: none;\\\" href=\\\"mailto:++Company_Email++\\\"&gt;++Company_Email++&lt;/a&gt; &lt;/p&gt;\\n            &lt;/td&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"border-top-color: #b0ccdc; border-top-width: 1px; border-top-style: solid;\\\" colspan=\\\"2\\\"&gt;&lt;/td&gt;\\n        &lt;/tr&gt;\\n    &lt;/tbody&gt;\\n&lt;/table&gt;\",\n    \"reply_to\": \"michael.north@sandbox.salesforce.com\",\n    \"folder_id\": 16,\n    \"lists\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/lists/\",\n    \"recallable\": false,\n    \"clicks\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/clicks/\",\n    \"opens\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/opens/\",\n    \"unsubscribes\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/unsubscribes/\",\n    \"bounces\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/bounces/\",\n    \"delivered\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/delivered/\",\n    \"ab_test\": false,\n    \"advanced_ab\": false,\n    \"campaign_editor_body\": \"\",\n    \"campaign_editor_body_b\": \"\",\n    \"view_data\": \"{}\"\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ed56e4c-54df-4275-bafe-cb8046db90ad"},{"name":"/api/2.0/campaigns/email/{PK}/","id":"67a4e1f5-69e6-4004-8410-25bc841d9a23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\"name\": \"This is a new campaign name!\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/","description":"<h5 id=\"desacription\">Desacription:</h5>\n<p>Updates a specific campaign. If the specified campaign ID does not exist, the message \"Not Found\" will be returned</p>\n<p>PK → Campaign_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"name\": \"This is a new campaign name!\",\n    \"subject\": \"test\",\n    \"status\": \"Draft (Not Sent)\",\n    \"default_status\": 9,\n    \"post_date\": \"2014-07-25T17:45:00Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/3/\",\n    \"created_date\": \"2014-07-25T17:45:50.440000Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_date\": \"2015-01-23T14:47:09.113000Z\",\n    \"from_email\": \"michael.north@sandbox.salesforce.com\",\n    \"display_name\": \"Michael North\",\n    \"plain_text\": \"\",\n    \"html\": \"&lt;meta content=\\\"text/html; charset=utf-8\\\" http-equiv=\\\"Content-Type\\\" /&gt;\\n&lt;table style=\\\"border: 1px solid #000000; color: #ffffff; background-color: #ffffff;\\\" border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" width=\\\"600\\\" align=\\\"center\\\"&gt;\\n    &lt;tbody&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"height: 42px;\\\" colspan=\\\"2\\\"&gt;\\n            &lt;table style=\\\"background-color: #ff6600;\\\" border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" width=\\\"600\\\" align=\\\"center\\\"&gt;\\n                &lt;tbody&gt;\\n                    &lt;tr&gt;\\n                        &lt;td style=\\\"padding: 10px; width: 323px;\\\" align=\\\"left\\\"&gt;&lt;span style=\\\"padding: 10px; margin-top: 0px; margin-bottom: 0px; color: #ffffff; font-size: 17px; text-decoration: none;\\\"&gt;&lt;strong&gt;&lt;br /&gt;\\n                        &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {{#Contacts.firstname|equal \\\"Michael\\\"}}&lt;br /&gt;\\n                        &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Render meh&lt;br /&gt;\\n                        &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {{/Contacts.firstname|equal \\\"Michael\\\"}}&lt;br /&gt;\\n                        &lt;br /&gt;\\n                        &lt;br /&gt;\\n                        &lt;br /&gt;\\n                        &lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;\\n                        &lt;td style=\\\"width: 277px;\\\" align=\\\"right\\\"&gt;\\n                        &lt;p style=\\\"padding: 15px; margin-top: 0px; margin-bottom: 0px; color: #231f20; font-size: 12px;\\\"&gt;&lt;a style=\\\"color: #ffffff; text-decoration: none;\\\" href=\\\"http://++Company_URL++\\\" target=\\\"main\\\"&gt;++Company_URL++ &lt;/a&gt;&lt;/p&gt;\\n                        &lt;/td&gt;\\n                    &lt;/tr&gt;\\n                &lt;/tbody&gt;\\n            &lt;/table&gt;\\n            &lt;/td&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"width: 180px; height: 43px; background-color: #c4c1c6;\\\"&gt;&amp;nbsp;&lt;/td&gt;\\n            &lt;td style=\\\"width: 420px; background-color: #c4c1c6;\\\" align=\\\"right\\\"&gt;&lt;a style=\\\"text-align: right; padding: 10px;\\\" href=\\\"http://google.com?a=ó\\\"&gt;Link 1&lt;/a&gt; | &lt;span style=\\\"text-align: right; padding: 10px;\\\"&gt;Link 1&lt;/span&gt; | &lt;span style=\\\"text-align: right; padding: 10px;\\\"&gt;Link 1&lt;/span&gt; | &lt;span style=\\\"text-align: right; padding: 10px;\\\"&gt;Link 1&lt;/span&gt;&lt;/td&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"padding: 20px; height: 28px; color: #ffffff; background-color: #000000;\\\" colspan=\\\"2\\\"&gt;&lt;span style=\\\"color: #ffff00;\\\"&gt;## If/else. Prints \\\"Hi Diplo\\\" if contact firstname is \\\"Diplo\\\" and \\\"Hi Not-Diplo\\\" otherwise&amp;nbsp;&lt;/span&gt;&lt;br /&gt;\\n            {{#firstname|equal \\\"diplo\\\"}}Hi Diplo{{/firstname|equal \\\"diplo\\\"}}{{^firstname|equal \\\"diplo\\\"}}Hi Not-Diplo{{/firstname|equal \\\"diplo\\\"}}&lt;br /&gt;\\n            &lt;/td&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"padding: 20px; height: 14px; background-color: #000000;\\\" colspan=\\\"2\\\" align=\\\"middle\\\"&gt;\\n            &lt;table border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" width=\\\"510\\\"&gt;\\n                &lt;tbody&gt;\\n                    &lt;tr&gt;\\n                        &lt;td style=\\\"width: 152px;\\\"&gt;&lt;br /&gt;\\n                        &lt;/td&gt;\\n                        &lt;td style=\\\"padding: 10px; width: 358px;\\\" valign=\\\"top\\\" align=\\\"left\\\"&gt;\\n                        &lt;p style=\\\"margin-top: 0px; margin-bottom: 10px; color: #ff7d09; font-size: 32px; font-weight: bold;\\\"&gt;FREE!&lt;/p&gt;\\n                        &lt;p style=\\\"margin-top: 0px; margin-bottom: 0px; color: #ffffff; text-align: justify;\\\"&gt;&amp;nbsp;&lt;/p&gt;\\n                        &lt;p&gt;Your first name is ++FirstName++ and you are from the city of ++City++&amp;nbsp;&lt;/p&gt;\\n                        &lt;p&gt;&lt;span style=\\\"color: #ffff00;\\\"&gt;## Nested If: only get all content if company is \\\"salesfusion\\\" AND Industry is \\\"retail\\\"&lt;/span&gt;&lt;br /&gt;\\n                        {{#company|equal \\\"salesfusion\\\"}}\\n                        Hello {{FirstName}}, How is Salesfusion today?\\n                        &lt;/p&gt;\\n                        &lt;p&gt;&lt;img alt=\\\"\\\" src=\\\"/uploads/95612/S%C3%A3o_Paulo_city_(Bela_Vista).jpg\\\" /&gt;&amp;nbsp;&lt;/p&gt;\\n                        &lt;p&gt;{{#industry|equal \\\"Retail\\\"}}\\n                        Hello {{FirstName}}, congratulations on working in retail.&lt;/p&gt;\\n                        &lt;p&gt;&lt;img alt=\\\"\\\" src=\\\"/uploads/95612/christtheredeemer.jpg\\\" /&gt;&amp;nbsp;&lt;/p&gt;\\n                        &lt;p&gt;{{/industry| equal \\\"Retail\\\"}}&lt;/p&gt;\\n                        &lt;p style=\\\"color: #ffffff; background-color: #000000;\\\"&gt;{{/company|equal \\\"salesfusion\\\"}}&lt;/p&gt;\\n                        &lt;p&gt;\\n                        &lt;/p&gt;\\n                        &lt;div&gt;&amp;nbsp;&lt;/div&gt;\\n                        &lt;p&gt;&amp;nbsp;&lt;/p&gt;\\n                        &lt;/td&gt;\\n                    &lt;/tr&gt;\\n                &lt;/tbody&gt;\\n            &lt;/table&gt;\\n            &lt;/td&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"padding: 10px; height: 14px;\\\" align=\\\"left\\\"&gt;&lt;a href=\\\"http://++Company_URL++\\\"&gt;&lt;img alt=\\\"\\\" style=\\\"border: 0px solid;\\\" src=\\\"http://images.msgapp.com/images/sfTemplates/small_logo_header.jpg\\\" width=\\\"160\\\" height=\\\"100\\\" /&gt; &lt;/a&gt;&lt;/td&gt;\\n            &lt;td style=\\\"padding: 10px; height: 14px;\\\" valign=\\\"center\\\" align=\\\"left\\\"&gt;\\n            &lt;p style=\\\"margin-top: 0px; margin-bottom: 0px;\\\"&gt;++Address Line 1++ ++Address Line 2++ &lt;span style=\\\"font-family: wingdings;\\\"&gt;w&lt;/span&gt; ++City,++ ++State/Prov&amp;nbsp;++ ++Postal code++ &lt;span style=\\\"font-family: wingdings;\\\"&gt;w&lt;/span&gt; Phone: ++Phone:++ &lt;span style=\\\"font-family: wingdings;\\\"&gt;w&lt;/span&gt; Fax: ++Fax:++ Email: &lt;a style=\\\"color: #000000; text-decoration: none;\\\" href=\\\"mailto:++Company_Email++\\\"&gt;++Company_Email++&lt;/a&gt; &lt;/p&gt;\\n            &lt;/td&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n        &lt;/tr&gt;\\n        &lt;tr&gt;\\n            &lt;td style=\\\"border-top-color: #b0ccdc; border-top-width: 1px; border-top-style: solid;\\\" colspan=\\\"2\\\"&gt;&lt;/td&gt;\\n        &lt;/tr&gt;\\n    &lt;/tbody&gt;\\n&lt;/table&gt;\",\n    \"reply_to\": \"michael.north@sandbox.salesforce.com\",\n    \"folder_id\": 16,\n    \"lists\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/lists/\",\n    \"recallable\": false,\n    \"clicks\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/clicks/\",\n    \"opens\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/opens/\",\n    \"unsubscribes\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/unsubscribes/\",\n    \"bounces\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/bounces/\",\n    \"delivered\": \"https://developer.salesfusion.com/api/2.0/campaigns/email/12/delivered/\",\n    \"ab_test\": false,\n    \"advanced_ab\": false,\n    \"campaign_editor_body\": \"\",\n    \"campaign_editor_body_b\": \"\",\n    \"view_data\": \"{}\"\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"67a4e1f5-69e6-4004-8410-25bc841d9a23"},{"name":"/api/2.0/campaigns/email/{PK}/","id":"73e26522-9bed-45d6-a8f5-d1491b5c6d5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"This is a new campaign name!\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/","description":"<p>Updates a specific campaign. If the specified campaign ID does not exist, the message \"Not Found\" will be returned</p>\n<p>PK → Campaign_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"73e26522-9bed-45d6-a8f5-d1491b5c6d5b"},{"name":"/api/2.0/campaigns/email/{PK}/","id":"9d0b9410-1d69-4f6a-9637-9bbbb58db132","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://developer.salesfusion.com/api/2.0/campaigns/email/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Deletes a specific campaign from the Salesfusion database. In order to delete a campaign it MUST be in \"Draft Mode\" or \"Status 9\".</p>\n<p>PK → Campaign_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","campaigns","email","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9d0b9410-1d69-4f6a-9637-9bbbb58db132"}],"id":"20ad8bcf-85f7-40d4-b300-f00e6c412d8d","_postman_id":"20ad8bcf-85f7-40d4-b300-f00e6c412d8d","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Contacts","item":[{"name":"/api/2.0/contacts/","id":"42f77720-fbb8-471d-8fbd-3d0808334fc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"no_unsub\":\"True\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/contacts/","description":"<h5 id=\"description\">DEscription:</h5>\n<p>Creates a new contact/lead in salesfusion. To distinguish which gets created populate the \"crm_type\" column with the appropriate value.</p>\n<h5 id=\"contact-level---ordering\">Contact Level - Ordering</h5>\n<p>The following fields on the contacts level are available for ordering via ascending or descending. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Account_Name - Ascending/Descending\nContact_ID - Ascending/Descending\nCreated_Date - Ascending/Descending\nCustom_Score_Field - Ascending/Descending\nEmail - Ascending/Descending\nFirst_Name - Ascending/Descending\nLast_Name - Ascending/Descending\nOwner_Name - Ascending/Descending\nPhone - Ascending/Descending\nUpdated_Date - Ascending/Descending\nURL - Ascending/Descending\nSalesfusion_Last_Activity - Ascending/Descending\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"contact_id\": 1001764,\n    \"contact\": \"https://developer.salesfusion.com/api/2.0/contacts/1001764/\",\n    \"first_name\": null,\n    \"last_name\": null,\n    \"phone\": null,\n    \"email\": \"tj.southern@salesfusion.com\",\n    \"account_id\": null,\n    \"account_name\": null,\n    \"account\": null,\n    \"owner_name\": \"Michael North\",\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"created_date\": \"2018-12-19T14:23:10.525303\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_date\": \"2018-12-19T14:23:10.525314\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"created_by_id\": 2,\n    \"updated_by_id\": 2,\n    \"crm_id\": null,\n    \"opt_out\": \"N\",\n    \"opt_out_date\": null,\n    \"crm_type\": \"Lead\",\n    \"status\": null,\n    \"title\": null,\n    \"deliverability_status\": 0,\n    \"deliverability_message\": null,\n    \"delivered_date\": null\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","contacts",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"42f77720-fbb8-471d-8fbd-3d0808334fc1"},{"name":"/api/2.0/contacts/","id":"2a397d10-9399-4ca4-810c-380770b51769","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Bilbo\",\n    \"last_name\": \"Baggins\",\n    \"phone\": \"+1987654321\",\n    \"email\": \"ring_of_power@gmail.com\",\n    \"account_id\": 4,\n    \"owner\": 1\n}"},"url":"https://developer.salesfusion.com/api/2.0/contacts/","description":"<h5 id=\"description\">Description:</h5>\n<p>Creates a new contact/lead in salesfusion. To distinguish which gets created populate the \"crm_type\" column with the appropriate value.</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"contact_id\": 300,\n    \"contact\": \"https://developer.salesfusion.com/api/2.0/contacts/300/\",\n    \"first_name\": \"Bilbo\",\n    \"last_name\": \"Baggins\",\n    \"phone\": \"+1987654321\",\n    \"email\": \"bilbo_ring@gmail.com\",\n    \"account_id\": 4,\n    \"account_name\": \"Affordable Equipment\",\n    \"account\": \"https://developer.salesfusion.com/api/2.0/accounts/4/\",\n    \"owner_name\": \"John Wick\",\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/123/\",\n    \"created_date\": \"2026-04-16T09:10:09.308906Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/123/\",\n    \"updated_date\": \"2026-04-16T09:10:09.308912Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/123/\",\n    \"created_by_id\": 123,\n    \"updated_by_id\": 123,\n    \"crm_id\": null,\n    \"opt_out\": \"N\",\n    \"opt_out_date\": null,\n    \"crm_type\": \"Lead\",\n    \"status\": null,\n    \"title\": null,\n    \"custom_score_field\": null,\n    \"deliverability_status\": 0,\n    \"deliverability_message\": null,\n    \"delivered_date\": null,\n    \"del_date\": null,\n    \"deleted_date\": null\n}\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","contacts",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a397d10-9399-4ca4-810c-380770b51769"},{"name":"/api/2.0/contacts/{PK}/","id":"e8be09ed-94ac-4c41-b520-ca37f345c969","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/contacts/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Gets a specific contact. Returns all standard and custom fields.</p>\n<p>PK → Contact_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"salutation\": \"\",\n    \"first_name\": \"\",\n    \"last_name\": \"\",\n    \"gender\": \"\",\n    \"birth_date\": null,\n    \"email\": \"tj.southern1234@salesfusion.com\",\n    \"phone\": \"\",\n    \"fax\": \"\",\n    \"mobile\": \"\",\n    \"home_phone\": \"\",\n    \"assistant_name\": \"\",\n    \"assistant_phone\": \"\",\n    \"other_phone\": \"\",\n    \"description\": \"\",\n    \"short_description\": \"\",\n    \"website\": null,\n    \"street\": \"\",\n    \"country\": null,\n    \"city\": null,\n    \"state\": null,\n    \"postal_code\": null,\n    \"mailing_street\": \"\",\n    \"mailing_country\": \"\",\n    \"mailing_city\": \"\",\n    \"mailing_state\": \"\",\n    \"mailing_zip\": \"\",\n    \"billing_street\": \"\",\n    \"billing_country\": \"\",\n    \"billing_city\": \"\",\n    \"billing_state\": \"\",\n    \"billing_zip\": \"\",\n    \"account_id\": 1,\n    \"account_name\": \"No Company\",\n    \"account\": \"https://developer.salesfusion.com/api/2.0/accounts/1/\",\n    \"owner_id\": 101,\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/101/\",\n    \"created_by_id\": 0,\n    \"created_date\": \"2018-05-22T17:00:00Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/0/\",\n    \"updated_by_id\": 0,\n    \"updated_date\": \"2018-05-22T17:11:00Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/0/\",\n    \"last_modified_by_id\": null,\n    \"last_modified_date\": null,\n    \"last_activity_date\": null,\n    \"lead_source_id\": \"98\",\n    \"source\": \"\",\n    \"status\": \"\",\n    \"crm_id\": \"\",\n    \"crm_type\": \"Lead\",\n    \"company\": \"\",\n    \"department\": \"\",\n    \"rating\": null,\n    \"industry\": null,\n    \"district\": \"\",\n    \"region\": \"\",\n    \"area\": \"\",\n    \"currency_iso_code\": \"\",\n    \"opt_out\": \"N\",\n    \"opt_out_date\": null,\n    \"do_not_call\": null,\n    \"salary\": \"\",\n    \"title\": \"\",\n    \"purlid\": \"\",\n    \"deliverability\": \"https://developer.salesfusion.com/api/2.0/contacts/804802/deliverability/\",\n    \"deliverability_status\": 0,\n    \"deliverability_message\": \"\",\n    \"delivered_date\": null,\n    \"custom_fields\": {\n        \"OtherLongitude\": null,\n        \"texBackEnd__c\": null,\n        \"Longitude\": null,\n        \"MII_Describe_Request__c\": null,\n        \"IndividualId\": null,\n        \"T_shirt__c\": null,\n        \"New_Field1__c\": null,\n        \"text_test_lead__c\": null,\n        \"LeadNotes__c\": null,\n        \"ED4372__c\": 0,\n        \"ExternalCRMUpdatedDate\": null,\n        \"GeocodeAccuracy\": null,\n        \"TimeStampFix__c\": null,\n        \"em090716C__c\": null,\n        \"MichaelNewScore__c\": null,\n        \"Jigsaw\": null,\n        \"ED_Date_time_small__c\": null,\n        \"PicklistTest__c\": null,\n        \"LP_Date_Test__c\": null,\n        \"CurrentGenerators__c\": null,\n        \"Latitude\": null,\n        \"ActivityText__c\": null,\n        \"MailingLatitude\": null,\n        \"Field_changing_test__c\": null,\n        \"Notes1__c\": null,\n        \"Secondary_Email__c\": null,\n        \"CMScoreField__c\": 0,\n        \"michael_Checkbox1__c\": null,\n        \"MondayNewsletter__c\": null,\n        \"ED_Data_Type_100115__c\": null,\n        \"customer_custom__c\": null,\n        \"Notes__c\": null,\n        \"TestField__c\": null,\n        \"philips_check_box__c\": null,\n        \"Payspan_CampaignListTest__c\": null,\n        \"Doctor_Image__c\": null,\n        \"ProductInterest__c\": null,\n        \"Op_In_Finance___c\": null,\n        \"CWC_preferences__c\": null,\n        \"PURLTEST__c\": null,\n        \"eric_test_022817__c\": null,\n        \"Languages2__c\": null,\n        \"ED_Date_time__c\": null,\n        \"CreateNewField__c\": null,\n        \"ConvertedOpportunityId\": null,\n        \"SAL10833_DateOnly__c\": null,\n        \"fave_number__c\": null,\n        \"ArmosField__c\": null,\n        \"ConvertedAccountId\": null,\n        \"Op_In_Newsletter__c\": null,\n        \"PhotoUrl\": null,\n        \"Testing_Eric__c\": null,\n        \"test_for_zania__c\": null,\n        \"Op_In_Software__c\": null,\n        \"ExternalCRMCreatedDate\": null,\n        \"Test_Eric__c\": null,\n        \"salesfusion__Fusion_Score__c\": null,\n        \"Address\": null,\n        \"em090716B__c\": null,\n        \"title_test_field__c\": null,\n        \"Free_Course__c\": null,\n        \"txt_test__c\": null,\n        \"Level__c\": null,\n        \"DropDown__c\": null,\n        \"OtherGeocodeAccuracy\": null,\n        \"EmailBouncedReason\": null,\n        \"ApplestoApples__c\": null,\n        \"Date_No_Time__c\": null,\n        \"Confirmed_Opt_Out__c\": null,\n        \"LastViewedDate\": null,\n        \"philipsscoringfield__c\": null,\n        \"CoolCatNewsletter__c\": null,\n        \"ED_Profile011415__c\": null,\n        \"salesfusion__sf_lastactivity_default__c\": null,\n        \"test_field_for_erudite__c\": null,\n        \"Support_API_Test__c\": null,\n        \"FormulaField__c\": null,\n        \"michael_checkbox2__c\": null,\n        \"Scoring__c\": null,\n        \"OtherLatitude\": null,\n        \"ramzi_score__c\": 0,\n        \"Jason_Score__c\": null,\n        \"Fusion_Score__c\": null,\n        \"em090716A__c\": null,\n        \"em090716D__c\": 0,\n        \"star_rating__c\": null,\n        \"picklist_test__c\": null,\n        \"Op_In_Events__c\": null,\n        \"Op_In_Webinar__c\": null,\n        \"UTM_Content__c\": null,\n        \"MailingLongitude\": null,\n        \"NotInteger__c\": null,\n        \"SAL10833__c\": null,\n        \"Fusion_Score_Description__c\": null,\n        \"Nothingbeyondfive__c\": null,\n        \"CF_06102015__c\": null,\n        \"Ordered__c\": null,\n        \"Test_Suppresion__c\": null,\n        \"OtherAddress\": null,\n        \"Cavs_Payment_Amount_Test__c\": null,\n        \"Test111115__c\": null,\n        \"ConvertedContactId\": null,\n        \"Date_With_Time__c\": null,\n        \"IsEmailBounced\": null,\n        \"test_field__c\": null,\n        \"salesfusion__Fusion_Score_Value__c\": null,\n        \"SAL6391__c\": null,\n        \"Test_field_for_Mallory__c\": null,\n        \"Picklist_Test_RS__c\": null,\n        \"salesfusion__Fusion_Score_Description__c\": null,\n        \"EDD112415__c\": null,\n        \"ContactMarketing_HTML5__c\": null,\n        \"MailingAddress\": null,\n        \"CF_051015__c\": null,\n        \"phone_g__c\": null,\n        \"MailingGeocodeAccuracy\": null,\n        \"SICCode__c\": null,\n        \"Languages__c\": null,\n        \"backend__c\": null,\n        \"Documento_adedudado_1__c\": null,\n        \"Last_Activity_Date__c\": null,\n        \"michael_checkbox3__c\": null,\n        \"New_Field__c\": null,\n        \"Field_Changing_Test_2__c\": null,\n        \"Payee_ID_#1__c\": null,\n        \"LastReferencedDate\": null,\n        \"Test_sync__c\": null,\n        \"Yomama__c\": null,\n        \"DeletedDate\": null,\n        \"Primary__c\": null,\n        \"TimeRadTest__c\": null,\n        \"Contact_Type__c\": null,\n        \"SAL10833_DateTime__c\": null,\n        \"joel_picklist__c\": null,\n        \"sf_date_time1__c\": null,\n        \"Sub_lead_source__c\": null,\n        \"AOLID__c\": null,\n        \"test_field_for_Andrea__c\": null,\n        \"testtestetsttstets__c\": null,\n        \"NumberofLocations__c\": null,\n        \"EmailBouncedDate\": null\n    }\n}\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","contacts","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8be09ed-94ac-4c41-b520-ca37f345c969"},{"name":"/api/2.0/contacts/{PK}/","id":"87219dde-f750-4046-a15b-d7c7105ec4cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"first_name\": \"TJ\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/contacts/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Updates a specific record.</p>\n<p>PK → Contact_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"salutation\": \"\",\n    \"first_name\": \"TJ\",\n    \"last_name\": \"\",\n    \"gender\": \"\",\n    \"birth_date\": null,\n    \"email\": \"tj.southern1234@salesfusion.com\",\n    \"phone\": \"\",\n    \"fax\": \"\",\n    \"mobile\": \"\",\n    \"home_phone\": \"\",\n    \"assistant_name\": \"\",\n    \"assistant_phone\": \"\",\n    \"other_phone\": \"\",\n    \"description\": \"\",\n    \"short_description\": \"\",\n    \"website\": null,\n    \"street\": \"\",\n    \"country\": null,\n    \"city\": null,\n    \"state\": null,\n    \"postal_code\": null,\n    \"mailing_street\": \"\",\n    \"mailing_country\": \"\",\n    \"mailing_city\": \"\",\n    \"mailing_state\": \"\",\n    \"mailing_zip\": \"\",\n    \"billing_street\": \"\",\n    \"billing_country\": \"\",\n    \"billing_city\": \"\",\n    \"billing_state\": \"\",\n    \"billing_zip\": \"\",\n    \"account_id\": 1,\n    \"account_name\": \"No Company\",\n    \"account\": \"https://developer.salesfusion.com/api/2.0/accounts/1/\",\n    \"owner_id\": 101,\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/101/\",\n    \"created_by_id\": 0,\n    \"created_date\": \"2018-05-22T17:00:00Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/0/\",\n    \"updated_by_id\": 2,\n    \"updated_date\": \"2018-12-19T14:24:58.000746Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"last_modified_by_id\": null,\n    \"last_modified_date\": null,\n    \"last_activity_date\": null,\n    \"lead_source_id\": \"98\",\n    \"source\": \"\",\n    \"status\": \"\",\n    \"crm_id\": \"\",\n    \"crm_type\": \"Lead\",\n    \"company\": \"\",\n    \"department\": \"\",\n    \"rating\": null,\n    \"industry\": null,\n    \"district\": \"\",\n    \"region\": \"\",\n    \"area\": \"\",\n    \"currency_iso_code\": \"\",\n    \"opt_out\": \"N\",\n    \"opt_out_date\": null,\n    \"do_not_call\": null,\n    \"salary\": \"\",\n    \"title\": \"\",\n    \"purlid\": \"\",\n    \"deliverability\": \"https://developer.salesfusion.com/api/2.0/contacts/804802/deliverability/\",\n    \"deliverability_status\": 0,\n    \"deliverability_message\": \"\",\n    \"delivered_date\": null,\n    \"custom_fields\": {\n        \"ConvertedAccountId\": null,\n        \"fave_number__c\": null,\n        \"title_test_field__c\": null,\n        \"New_Field__c\": null,\n        \"Test_Suppresion__c\": null,\n        \"testtestetsttstets__c\": null,\n        \"MailingLongitude\": null,\n        \"SAL10833_DateOnly__c\": null,\n        \"GeocodeAccuracy\": null,\n        \"Field_changing_test__c\": null,\n        \"TimeStampFix__c\": null,\n        \"Free_Course__c\": null,\n        \"Contact_Type__c\": null,\n        \"Last_Activity_Date__c\": null,\n        \"OtherLongitude\": null,\n        \"MII_Describe_Request__c\": null,\n        \"picklist_test__c\": null,\n        \"ProductInterest__c\": null,\n        \"ArmosField__c\": null,\n        \"OtherAddress\": null,\n        \"Address\": null,\n        \"ED_Date_time_small__c\": null,\n        \"PicklistTest__c\": null,\n        \"NotInteger__c\": null,\n        \"T_shirt__c\": null,\n        \"SAL10833__c\": null,\n        \"PURLTEST__c\": null,\n        \"TimeRadTest__c\": null,\n        \"backend__c\": null,\n        \"butthole_2__c\": null,\n        \"LeadNotes__c\": null,\n        \"MondayNewsletter__c\": null,\n        \"ConvertedOpportunityId\": null,\n        \"Op_In_Finance___c\": null,\n        \"Op_In_Webinar__c\": null,\n        \"LP_Date_Test__c\": null,\n        \"michael_checkbox2__c\": null,\n        \"text_test_lead__c\": null,\n        \"CoolCatNewsletter__c\": null,\n        \"Level__c\": null,\n        \"CMScoreField__c\": 0,\n        \"LastViewedDate\": null,\n        \"customer_custom__c\": null,\n        \"Languages__c\": null,\n        \"texBackEnd__c\": null,\n        \"phone_g__c\": null,\n        \"OtherLatitude\": null,\n        \"Date_No_Time__c\": null,\n        \"Languages2__c\": null,\n        \"ConvertedContactId\": null,\n        \"Op_In_Software__c\": null,\n        \"Payspan_CampaignListTest__c\": null,\n        \"test_field_for_erudite__c\": null,\n        \"Date_With_Time__c\": null,\n        \"MailingGeocodeAccuracy\": null,\n        \"Latitude\": null,\n        \"Confirmed_Opt_Out__c\": null,\n        \"Picklist_Test_RS__c\": null,\n        \"IsEmailBounced\": null,\n        \"NumberofLocations__c\": null,\n        \"CF_051015__c\": null,\n        \"ActivityText__c\": null,\n        \"EDD112415__c\": null,\n        \"eric_test_022817__c\": null,\n        \"em090716B__c\": null,\n        \"salesfusion__sf_lastactivity_default__c\": null,\n        \"Field_Changing_Test_2__c\": null,\n        \"Notes1__c\": null,\n        \"Testing_Eric__c\": null,\n        \"ED_Date_time__c\": null,\n        \"ExternalCRMUpdatedDate\": null,\n        \"test_field_for_Andrea__c\": null,\n        \"CreateNewField__c\": null,\n        \"New_Field1__c\": null,\n        \"salesfusion__Fusion_Score_Value__c\": null,\n        \"FormulaField__c\": null,\n        \"CurrentGenerators__c\": null,\n        \"SICCode__c\": null,\n        \"Longitude\": null,\n        \"ED_Data_Type_100115__c\": null,\n        \"Payee_ID_#1__c\": null,\n        \"ContactMarketing_HTML5__c\": null,\n        \"ED4372__c\": 0,\n        \"IndividualId\": null,\n        \"em090716C__c\": null,\n        \"SAL10833_DateTime__c\": null,\n        \"test_field__c\": null,\n        \"Support_API_Test__c\": null,\n        \"Ordered__c\": null,\n        \"OtherGeocodeAccuracy\": null,\n        \"DeletedDate\": null,\n        \"ramzi_score__c\": 0,\n        \"Op_In_Newsletter__c\": null,\n        \"Op_In_Events__c\": null,\n        \"Test_Eric__c\": null,\n        \"em090716D__c\": 0,\n        \"LastReferencedDate\": null,\n        \"star_rating__c\": null,\n        \"em090716A__c\": null,\n        \"MailingLatitude\": null,\n        \"PhotoUrl\": null,\n        \"sf_date_time1__c\": null,\n        \"Jason_Score__c\": null,\n        \"test_for_zania__c\": null,\n        \"Scoring__c\": null,\n        \"MailingAddress\": null,\n        \"txt_test__c\": null,\n        \"EmailBouncedDate\": null,\n        \"ED_Profile011415__c\": null,\n        \"Sub_lead_source__c\": null,\n        \"Primary__c\": null,\n        \"Fusion_Score__c\": null,\n        \"Test111115__c\": null,\n        \"ExternalCRMCreatedDate\": null,\n        \"CWC_preferences__c\": null,\n        \"michael_Checkbox1__c\": null,\n        \"MichaelNewScore__c\": null,\n        \"DropDown__c\": null,\n        \"AOLID__c\": null,\n        \"philips_check_box__c\": null,\n        \"joel_picklist__c\": null,\n        \"TestField__c\": null,\n        \"CF_06102015__c\": null,\n        \"Jigsaw\": null,\n        \"Fusion_Score_Description__c\": null,\n        \"Test_sync__c\": null,\n        \"Test_field_for_Mallory__c\": null,\n        \"EmailBouncedReason\": null,\n        \"Yomama__c\": null,\n        \"ApplestoApples__c\": null,\n        \"SAL6391__c\": null,\n        \"Doctor_Image__c\": null,\n        \"Nothingbeyondfive__c\": null,\n        \"philipsscoringfield__c\": null,\n        \"Secondary_Email__c\": null,\n        \"michael_checkbox3__c\": null,\n        \"Cavs_Payment_Amount_Test__c\": null,\n        \"salesfusion__Fusion_Score__c\": null,\n        \"Documento_adedudado_1__c\": null,\n        \"Notes__c\": null,\n        \"salesfusion__Fusion_Score_Description__c\": null,\n        \"UTM_Content__c\": null\n    }\n}\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","contacts","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"87219dde-f750-4046-a15b-d7c7105ec4cf"},{"name":"/api/2.0/contacts/{PK}/","id":"c93cab93-62d2-407a-8a62-06f49651f08d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"first_name\": \"TJ\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/contacts/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Updates a specific record. If the record does not exist the message \"Not Found\" will be returned.</p>\n<p>PK → Contact_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"salutation\": \"\",\n    \"first_name\": \"TJ\",\n    \"last_name\": \"\",\n    \"gender\": \"\",\n    \"birth_date\": null,\n    \"email\": \"tj.southern1234@salesfusion.com\",\n    \"phone\": \"\",\n    \"fax\": \"\",\n    \"mobile\": \"\",\n    \"home_phone\": \"\",\n    \"assistant_name\": \"\",\n    \"assistant_phone\": \"\",\n    \"other_phone\": \"\",\n    \"description\": \"\",\n    \"short_description\": \"\",\n    \"website\": null,\n    \"street\": \"\",\n    \"country\": null,\n    \"city\": null,\n    \"state\": null,\n    \"postal_code\": null,\n    \"mailing_street\": \"\",\n    \"mailing_country\": \"\",\n    \"mailing_city\": \"\",\n    \"mailing_state\": \"\",\n    \"mailing_zip\": \"\",\n    \"billing_street\": \"\",\n    \"billing_country\": \"\",\n    \"billing_city\": \"\",\n    \"billing_state\": \"\",\n    \"billing_zip\": \"\",\n    \"account_id\": 1,\n    \"account_name\": \"No Company\",\n    \"account\": \"https://developer.salesfusion.com/api/2.0/accounts/1/\",\n    \"owner_id\": 101,\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/101/\",\n    \"created_by_id\": 0,\n    \"created_date\": \"2018-05-22T17:00:00Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/0/\",\n    \"updated_by_id\": 2,\n    \"updated_date\": \"2018-12-19T14:24:58.000746Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"last_modified_by_id\": null,\n    \"last_modified_date\": null,\n    \"last_activity_date\": null,\n    \"lead_source_id\": \"98\",\n    \"source\": \"\",\n    \"status\": \"\",\n    \"crm_id\": \"\",\n    \"crm_type\": \"Lead\",\n    \"company\": \"\",\n    \"department\": \"\",\n    \"rating\": null,\n    \"industry\": null,\n    \"district\": \"\",\n    \"region\": \"\",\n    \"area\": \"\",\n    \"currency_iso_code\": \"\",\n    \"opt_out\": \"N\",\n    \"opt_out_date\": null,\n    \"do_not_call\": null,\n    \"salary\": \"\",\n    \"title\": \"\",\n    \"purlid\": \"\",\n    \"deliverability\": \"https://developer.salesfusion.com/api/2.0/contacts/804802/deliverability/\",\n    \"deliverability_status\": 0,\n    \"deliverability_message\": \"\",\n    \"delivered_date\": null,\n    \"custom_fields\": {\n        \"ConvertedAccountId\": null,\n        \"fave_number__c\": null,\n        \"title_test_field__c\": null,\n        \"New_Field__c\": null,\n        \"Test_Suppresion__c\": null,\n        \"testtestetsttstets__c\": null,\n        \"MailingLongitude\": null,\n        \"SAL10833_DateOnly__c\": null,\n        \"GeocodeAccuracy\": null,\n        \"Field_changing_test__c\": null,\n        \"TimeStampFix__c\": null,\n        \"Free_Course__c\": null,\n        \"Contact_Type__c\": null,\n        \"Last_Activity_Date__c\": null,\n        \"OtherLongitude\": null,\n        \"MII_Describe_Request__c\": null,\n        \"picklist_test__c\": null,\n        \"ProductInterest__c\": null,\n        \"ArmosField__c\": null,\n        \"OtherAddress\": null,\n        \"Address\": null,\n        \"ED_Date_time_small__c\": null,\n        \"PicklistTest__c\": null,\n        \"NotInteger__c\": null,\n        \"T_shirt__c\": null,\n        \"SAL10833__c\": null,\n        \"PURLTEST__c\": null,\n        \"TimeRadTest__c\": null,\n        \"backend__c\": null,\n        \"butthole_2__c\": null,\n        \"LeadNotes__c\": null,\n        \"MondayNewsletter__c\": null,\n        \"ConvertedOpportunityId\": null,\n        \"Op_In_Finance___c\": null,\n        \"Op_In_Webinar__c\": null,\n        \"LP_Date_Test__c\": null,\n        \"michael_checkbox2__c\": null,\n        \"text_test_lead__c\": null,\n        \"CoolCatNewsletter__c\": null,\n        \"Level__c\": null,\n        \"CMScoreField__c\": 0,\n        \"LastViewedDate\": null,\n        \"customer_custom__c\": null,\n        \"Languages__c\": null,\n        \"texBackEnd__c\": null,\n        \"phone_g__c\": null,\n        \"OtherLatitude\": null,\n        \"Date_No_Time__c\": null,\n        \"Languages2__c\": null,\n        \"ConvertedContactId\": null,\n        \"Op_In_Software__c\": null,\n        \"Payspan_CampaignListTest__c\": null,\n        \"test_field_for_erudite__c\": null,\n        \"Date_With_Time__c\": null,\n        \"MailingGeocodeAccuracy\": null,\n        \"Latitude\": null,\n        \"Confirmed_Opt_Out__c\": null,\n        \"Picklist_Test_RS__c\": null,\n        \"IsEmailBounced\": null,\n        \"NumberofLocations__c\": null,\n        \"CF_051015__c\": null,\n        \"ActivityText__c\": null,\n        \"EDD112415__c\": null,\n        \"eric_test_022817__c\": null,\n        \"em090716B__c\": null,\n        \"salesfusion__sf_lastactivity_default__c\": null,\n        \"Field_Changing_Test_2__c\": null,\n        \"Notes1__c\": null,\n        \"Testing_Eric__c\": null,\n        \"ED_Date_time__c\": null,\n        \"ExternalCRMUpdatedDate\": null,\n        \"test_field_for_Andrea__c\": null,\n        \"CreateNewField__c\": null,\n        \"New_Field1__c\": null,\n        \"salesfusion__Fusion_Score_Value__c\": null,\n        \"FormulaField__c\": null,\n        \"CurrentGenerators__c\": null,\n        \"SICCode__c\": null,\n        \"Longitude\": null,\n        \"ED_Data_Type_100115__c\": null,\n        \"Payee_ID_#1__c\": null,\n        \"ContactMarketing_HTML5__c\": null,\n        \"ED4372__c\": 0,\n        \"IndividualId\": null,\n        \"em090716C__c\": null,\n        \"SAL10833_DateTime__c\": null,\n        \"test_field__c\": null,\n        \"Support_API_Test__c\": null,\n        \"Ordered__c\": null,\n        \"OtherGeocodeAccuracy\": null,\n        \"DeletedDate\": null,\n        \"ramzi_score__c\": 0,\n        \"Op_In_Newsletter__c\": null,\n        \"Op_In_Events__c\": null,\n        \"Test_Eric__c\": null,\n        \"em090716D__c\": 0,\n        \"LastReferencedDate\": null,\n        \"star_rating__c\": null,\n        \"em090716A__c\": null,\n        \"MailingLatitude\": null,\n        \"PhotoUrl\": null,\n        \"sf_date_time1__c\": null,\n        \"Jason_Score__c\": null,\n        \"test_for_zania__c\": null,\n        \"Scoring__c\": null,\n        \"MailingAddress\": null,\n        \"txt_test__c\": null,\n        \"EmailBouncedDate\": null,\n        \"ED_Profile011415__c\": null,\n        \"Sub_lead_source__c\": null,\n        \"Primary__c\": null,\n        \"Fusion_Score__c\": null,\n        \"Test111115__c\": null,\n        \"ExternalCRMCreatedDate\": null,\n        \"CWC_preferences__c\": null,\n        \"michael_Checkbox1__c\": null,\n        \"MichaelNewScore__c\": null,\n        \"DropDown__c\": null,\n        \"AOLID__c\": null,\n        \"philips_check_box__c\": null,\n        \"joel_picklist__c\": null,\n        \"TestField__c\": null,\n        \"CF_06102015__c\": null,\n        \"Jigsaw\": null,\n        \"Fusion_Score_Description__c\": null,\n        \"Test_sync__c\": null,\n        \"Test_field_for_Mallory__c\": null,\n        \"EmailBouncedReason\": null,\n        \"Yomama__c\": null,\n        \"ApplestoApples__c\": null,\n        \"SAL6391__c\": null,\n        \"Doctor_Image__c\": null,\n        \"Nothingbeyondfive__c\": null,\n        \"philipsscoringfield__c\": null,\n        \"Secondary_Email__c\": null,\n        \"michael_checkbox3__c\": null,\n        \"Cavs_Payment_Amount_Test__c\": null,\n        \"salesfusion__Fusion_Score__c\": null,\n        \"Documento_adedudado_1__c\": null,\n        \"Notes__c\": null,\n        \"salesfusion__Fusion_Score_Description__c\": null,\n        \"UTM_Content__c\": null\n    }\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","contacts","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c93cab93-62d2-407a-8a62-06f49651f08d"},{"name":"/api/2.0/contacts/{PK}/","id":"c409531d-4f3d-4738-a2fe-0aba52cd78bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://developer.salesfusion.com/api/2.0/contacts/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Deletes a record from the Salesfusion database.</p>\n<p>PK → Contact_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","contacts","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c409531d-4f3d-4738-a2fe-0aba52cd78bf"}],"id":"308c5025-9478-4de3-8a41-1fc3cff1d8d1","event":[{"listen":"prerequest","script":{"id":"dd531951-df30-400d-a308-ab29e43415c8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"17715430-5f06-48a3-aaaa-e66587bc090e","type":"text/javascript","exec":[""]}}],"_postman_id":"308c5025-9478-4de3-8a41-1fc3cff1d8d1","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Distribution Lists","item":[{"name":"/api/2.0/lists/distribution/","id":"b0b35b8a-8811-4c4c-9da1-5ada484706b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/lists/distribution/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of distribution lists in batches of 100. Contains a limited number of columns with basic information.</p>\n<h5 id=\"distribution-lists-level---ordering\">Distribution Lists Level - Ordering:</h5>\n<p>The following fields on the distribution lists level are available for ordering via ascending or descending.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>List_ID - Ascending/Descending\nCRM_ID - Ascending/Descending\nList_Name - Ascending/Descending\nList_Type - Ascending/Descending\nOwner - Ascending/Descending\nOwner_ID - Ascending/Descending\nCreated_Date - Ascending/Descending\nCreated_By - Ascending/Descending\nCreated_By_ID - Ascending/Descending\nUpdated_Date - Ascending/Descending\nUpdated_By - Ascending/Descending\nUpdated_By_ID - Ascending/Descending\nDescription - Ascending/Descending\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"count\": 433,\n    \"total_count\": 433,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/lists/distribution/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"list_id\": 4,\n            \"list\": \"https://developer.salesfusion.com/api/2.0/lists/distribution/4/\",\n            \"crm_id\": \"701i0000000M8PmAAK\",\n            \"list_name\": \"International Electrical Engineers Association Trade Show - Mar 4-5, 2002\",\n            \"list_type\": \"SalesForce\",\n            \"owner\": \"https://developer.salesfusion.com/api/2.0/users/1/\",\n            \"owner_id\": 1,\n            \"created_date\": \"2013-03-01T21:03:19.560000Z\",\n            \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/1/\",\n            \"created_by_id\": 1,\n            \"updated_date\": \"2018-08-10T08:55:15.190000Z\",\n            \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/1/\",\n            \"updated_by_id\": 1,\n            \"description\": \"\"\n        }\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","lists","distribution",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b0b35b8a-8811-4c4c-9da1-5ada484706b4"},{"name":"/api/2.0/lists/distribution/","id":"18dedfd9-d53b-4d7e-9b73-0294946d266c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{ \r\n\"list_name\": \"Test List\"\r\n}"},"url":"https://developer.salesfusion.com/api/2.0/lists/distribution/","description":"<h5 id=\"description\">Description:</h5>\n<p>Creates a new distribution list.</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"list_id\": 1099,\n    \"list\": \"https://developer.salesfusion.com/api/2.0/lists/distribution/1099/\",\n    \"crm_id\": \"\",\n    \"list_name\": \"Test List 1\",\n    \"list_type\": \"\",\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"owner_id\": 2,\n    \"created_date\": \"2018-12-19T14:42:31.264591Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"created_by_id\": 2,\n    \"updated_date\": \"2018-12-19T14:42:31.264591Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_by_id\": 2,\n    \"description\": \"\"\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","lists","distribution",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"18dedfd9-d53b-4d7e-9b73-0294946d266c"},{"name":"/api/2.0/lists/distribution/{PK}/contacts/","id":"d2157af8-b1e6-43d8-a965-6725e1c6fc74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/lists/distribution/{PK}/contacts/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of contacts associated to a specific distribution list in batches of 100. Contains a limited number of columns with basic information. </p>\n<p>PK → List_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"count\": 0,\n    \"total_count\": 0,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": []\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","lists","distribution","{PK}","contacts",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2157af8-b1e6-43d8-a965-6725e1c6fc74"},{"name":"/api/2.0/lists/distribution/{PK}/contacts/","id":"6ede3b0b-11ed-4b90-ac36-6ef49beaa34b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"contact_id\": \"123\"\r\n}"},"url":"https://developer.salesfusion.com/api/2.0/lists/distribution/{PK}/contacts/","description":"<h5 id=\"description\">Description:</h5>\n<p>Adds a contact to a specific distribution list. Contact_ID must be passed as a parameter. </p>\n<p>PK → List_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"list_id\": 1099,\n    \"contact_id\": 804799,\n    \"email\": \"tj.southern123@salesfusion.com\"\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","lists","distribution","{PK}","contacts",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ede3b0b-11ed-4b90-ac36-6ef49beaa34b"},{"name":"/api/2.0/lists/distribution/{PK}/","id":"a7709cb7-a857-4b0e-bf8b-6676b44b6e63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/lists/distribution/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a specific distribution list. Contains all columns and detailed information. </p>\n<p>PK → List_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"crm_id\": \"\",\n    \"list_name\": \"Test List 1\",\n    \"list_type\": \"\",\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"owner_id\": 2,\n    \"created_date\": \"2018-12-19T14:42:31.263000Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"created_by_id\": 2,\n    \"updated_date\": \"2018-12-19T14:42:31.263000Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_by_id\": 2,\n    \"description\": \"\",\n    \"total_contacts\": 1,\n    \"contacts\": \"https://developer.salesfusion.com/api/2.0/lists/distribution/1099/contacts/\"\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","lists","distribution","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7709cb7-a857-4b0e-bf8b-6676b44b6e63"},{"name":"/api/2.0/lists/distribution/{PK}/","id":"45530c10-9eab-4982-b2fb-2d9730e7df01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\"list_name\": \"This is a new list name!\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/lists/distribution/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies an existing distribution list. If the specified distribution list does not exist, a new distribution list will be created.</p>\n<p>PK → List_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"crm_id\": \"\",\n    \"list_name\": \"This is a new list name!\",\n    \"list_type\": \"\",\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"owner_id\": 2,\n    \"created_date\": \"2018-12-19T14:42:31.263000Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"created_by_id\": 2,\n    \"updated_date\": \"2018-12-19T14:44:39.642860Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_by_id\": 2,\n    \"description\": \"\",\n    \"total_contacts\": 1,\n    \"contacts\": \"https://developer.salesfusion.com/api/2.0/lists/distribution/1099/contacts/\"\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","lists","distribution","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"45530c10-9eab-4982-b2fb-2d9730e7df01"},{"name":"/api/2.0/lists/distribution/{PK}/ ","id":"29639f7a-a23b-468f-891d-3e0a1de1ef3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"list_name\": \"This is a new list name!\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/lists/distribution/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies an existing distribution list. If the specified ID does not exist \"Not Found\" will be returned.</p>\n<p>PK → List_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"crm_id\": \"\",\n    \"list_name\": \"This is a new list name!\",\n    \"list_type\": \"\",\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"owner_id\": 2,\n    \"created_date\": \"2018-12-19T14:42:31.263000Z\",\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"created_by_id\": 2,\n    \"updated_date\": \"2018-12-19T14:44:39.642860Z\",\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_by_id\": 2,\n    \"description\": \"\",\n    \"total_contacts\": 1,\n    \"contacts\": \"https://developer.salesfusion.com/api/2.0/lists/distribution/1099/contacts/\"\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","lists","distribution","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"29639f7a-a23b-468f-891d-3e0a1de1ef3d"},{"name":"/api/2.0/lists/distribution/{PK}/","id":"6fb965f3-5588-4949-a2f3-75f80e6d6496","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://developer.salesfusion.com/api/2.0/lists/distribution/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Deletes a specific distribution from the Salesfusion database.</p>\n<p>PK → List_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","lists","distribution","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6fb965f3-5588-4949-a2f3-75f80e6d6496"},{"name":"/api/2.0/lists/distribution/{pk}/contacts/{contact_id}","id":"9162c164-3ed8-4602-adcf-31ec5c509180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/lists/distribution/{PK}/contacts/{contact_id}","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a specific contact based on list_id and contact_id. Contains limited columns with basic information. </p>\n<p>PK → List_ID\nPK → Contact_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"contact\": \"https://developer.salesfusion.com/api/2.0/contacts/804799/\",\n    \"contact_id\": 804799,\n    \"email\": \"tj.southern123@salesfusion.com\",\n    \"first_name\": \"\",\n    \"last_name\": \"\"\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","lists","distribution","{PK}","contacts","{contact_id}"],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9162c164-3ed8-4602-adcf-31ec5c509180"},{"name":"/api/2.0/lists/distribution/{pk}/contacts/{contact_id}","id":"604114b1-2026-4e25-979c-0c7871086cbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://developer.salesfusion.com/api/2.0/lists/distribution/{PK}/contacts/{contact_id}","description":"<h5 id=\"description\">Description:</h5>\n<p>Deletes a specific contact from a distribution list in Salesfusion. This does not remove the record from the Salesfusion contact database.</p>\n<p>PK → List_ID</p>\n<p>PK → Contact_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","lists","distribution","{PK}","contacts","{contact_id}"],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"604114b1-2026-4e25-979c-0c7871086cbe"}],"id":"921acd49-6652-437c-b43d-cd3f451100b2","event":[{"listen":"prerequest","script":{"id":"34eaf685-269b-4f30-b08c-831097317c6e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6220437e-2950-45a6-942c-63c6f97ecb6a","type":"text/javascript","exec":[""]}}],"_postman_id":"921acd49-6652-437c-b43d-cd3f451100b2","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Events","item":[{"name":"/api/2.0/events/","id":"89d9d623-4c66-4e23-84a8-e1eb618b2ded","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of all events in batches of 100. Contains limited columns with basic information. </p>\n<h5 id=\"events-level---ordering\">Events Level - Ordering:</h5>\n<p>The following fields on the Events level are available for ordering via ascending or descending.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Event_ID - Ascending/Descending\nEvent_Name - Ascending/Descending\nCreated_Date - Ascending/Descending\nBudget_Cost - Ascending/Descending\nActual_Cost - Ascending/Descending\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"89d9d623-4c66-4e23-84a8-e1eb618b2ded"},{"name":"/api/2.0/events/{pk}/","id":"b11646cc-2e30-43b8-8f45-511a8d5e772d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/{pk}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a specific event. Contains detailed information with all columns. </p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","{pk}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b11646cc-2e30-43b8-8f45-511a8d5e772d"},{"name":"/api/2.0/events/attendees/","id":"0b033031-67c3-4625-a7ae-62d17b8b494f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/attendees/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of contacts that have attended an event in batches of 100. Contains information regarding their attended, registration and follow-up status.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","attendees",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b033031-67c3-4625-a7ae-62d17b8b494f"},{"name":"/api/2.0/events/attendees/{pk}/","id":"27d7df1a-cd24-4672-ac9e-22816d63709c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/attendees/{pk}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a singular contact that has registered for an event. Contains all columns with detailed information about the contact's status in the event</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","attendees","{pk}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"27d7df1a-cd24-4672-ac9e-22816d63709c"},{"name":"/api/2.0/events/attendees/{pk}/","id":"df3986e1-01e1-499b-a1fb-a2bc582abcbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/attendees/{pk}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies a specific contact that has registered for an event. If the specified attendee_id does not exist \"Not Found\" will be returned. </p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","attendees","{pk}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"df3986e1-01e1-499b-a1fb-a2bc582abcbd"},{"name":"/api/2.0/events/attendees/{pk}/","id":"925257d0-9359-4282-a70c-943fdf29ad87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/attendees/{pk}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Deletes a specific contact that has registered for an event.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","attendees","{pk}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"925257d0-9359-4282-a70c-943fdf29ad87"},{"name":"/api/2.0/events/{pk}/sessions/","id":"883c0189-50d4-42f6-8650-bd886e78c4c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://developer.salesfusion.com/api/2.0/events/{pk}/sessions/","description":"<p>Reads a paginated list of sessions from a specific event in batches of 100. Contains limited columns with basic information.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","{pk}","sessions",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"883c0189-50d4-42f6-8650-bd886e78c4c6"},{"name":"/api/2.0/events{event_id}/sessisons/{pk}/","id":"c6ae53b1-90a1-4c1f-a3bf-5a37f0718fc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/events{event_id}/sessisons/{pk}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads information about a specific session from an event. Contains all columns with detailed information.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events{event_id}","sessisons","{pk}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c6ae53b1-90a1-4c1f-a3bf-5a37f0718fc0"},{"name":"/api/2.0/events/{event_id}/sessions/session_id/attendees/","id":"893636bc-51ff-4a98-9774-e077000c7f33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/{event_id}/sessions/session_id/attendees/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of attendees for a specific sessions of a specific event. Contains limited columns with basic information. </p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","{event_id}","sessions","session_id","attendees",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"893636bc-51ff-4a98-9774-e077000c7f33"},{"name":"/api/2.0/events/{event_id}/sessions/schema/","id":"bf65a0fa-cb3c-4c5b-9d2f-39b4cd2d3b8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/{event_id}/sessions/schema/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads the schema of a event sessions and returns data about the field types and values. </p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","{event_id}","sessions","schema",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf65a0fa-cb3c-4c5b-9d2f-39b4cd2d3b8a"},{"name":"/api/2.0/events/schema/","id":"3a545a06-c44c-4eb0-8563-8a2eb7ec548a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/schema/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads the schema of an event and returns data about the field types and values. </p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","schema",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a545a06-c44c-4eb0-8563-8a2eb7ec548a"},{"name":"/api/2.0/events/attendees/schema/","id":"33900106-f064-402a-adce-075afb7470c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/attendees/schema/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads the schema of an events attendees and returns data about the field types and values.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","attendees","schema",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"33900106-f064-402a-adce-075afb7470c4"},{"name":"/api/2.0/events/attendees/{pk}/schema/","id":"938d846b-d405-4e86-9be7-6204c02ffaac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/events/attendees/{pk}/schema/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads the schema of a specific attendee to an event and returns data about the field types and values. </p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","events","attendees","{pk}","schema",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"938d846b-d405-4e86-9be7-6204c02ffaac"}],"id":"516ec3b1-8e70-43d4-8bf2-38a2ae74c0a5","_postman_id":"516ec3b1-8e70-43d4-8bf2-38a2ae74c0a5","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Forms","item":[{"name":"https://your.formscname.com/api/forms/submit","id":"8dac5f73-2e20-4df8-b5d3-e8a1bd1f7972","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"{{vault:authorization-password}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"customer","value":"ch000096180eArad","type":"text"},{"key":"rurl","value":"https://salesfusion.com","type":"text"},{"key":"dialogid","value":"3070","type":"text"},{"key":"cke","value":"1","type":"text"},{"key":"leadsource","value":"Sf test value 1","type":"text"},{"key":"email","value":"tj.southern@salesfusion.com","type":"text"}]},"url":"https://your.formscname.com/api/forms/submit","description":"<p><em><strong>Legacy Forms:</strong></em> <a href=\"https://your.formscname.com/api/forms/submit\">https://your.formscname.com/api/forms/submit</a><br /><em><strong>Form Builder:</strong></em> <a href=\"https://your.emailscname.com/api/forms/submit\">https://your.emailscname.com/api/forms/submit</a></p>\n<h5 id=\"description\">Description:</h5>\n<p>These endpoint will submit forms via API call. No authentication is required and this can be submitted to multiple times and must have the body submitted as Form Data. The landing page is defined by the DialogID field.</p>\n<p>If you are using a legacy page then the base url for this route will be the form's CNAME that you setup during your onboarding process. It may or may not be a secured endpoint depending on your network settings.</p>\n<p>If you are using a form builder page then the base url for this route will be the email's CNAME that you setup during your onboarding process. Again, it may or may not be a secured endpoint depending on your network settings.</p>\n<p><strong>Workflow:</strong></p>\n<ol>\n<li><p>Construct a form within the Sugar Market</p>\n</li>\n<li><p>Locate the relevant information (fields included on this API call) from within the HTML.</p>\n</li>\n<li><p>Substitute the sample information with the information from your form.</p>\n</li>\n</ol>\n","urlObject":{"protocol":"https","path":["api","forms","submit"],"host":["your","formscname","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8dac5f73-2e20-4df8-b5d3-e8a1bd1f7972"},{"name":"https://developer.salesfusion.com/api/2.0/forms/","id":"dff19a3c-d5ff-4211-bf65-13e21cc42df8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>Lists all forms</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"dff19a3c-d5ff-4211-bf65-13e21cc42df8"},{"name":"https://developer.salesfusion.com/api/2.0/forms/%7BPK%7D/","id":"88efa50a-c6b1-4e86-992e-58aa7a722d17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>Gets a specific form.  Returns all standard and custom fields.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"88efa50a-c6b1-4e86-992e-58aa7a722d17"},{"name":"https://developer.salesfusion.com/api/2.0/forms/","id":"1d80c5f6-4946-484e-b6d2-57198d0c40cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"","description":"<p>Creates a form with the fields specified in the body.  Folder, type, name, view_data, and form_builder_step are required</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"1d80c5f6-4946-484e-b6d2-57198d0c40cc"},{"name":"https://developer.salesfusion.com/api/2.0/forms/%7BPK%7D/","id":"b7db3891-3368-4abf-8311-4e214e6bec4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"","description":"<p>Edits the specified form and sets the fields in the body to the values set in the body</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"b7db3891-3368-4abf-8311-4e214e6bec4a"},{"name":"/api/2.0/forms/{PK}/rules/","id":"8e5e5443-5a25-4847-9478-2bf93e3458d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/forms/{PK}/rules/","description":"<h5 id=\"description\">Description:</h5>\n<p>Gets a list of rules for a specific form.</p>\n<p>PK → form_id</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-{\">{\n    \"count\": 1,\n    \"total_count\": 1,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"actions\": [\n                {\n                    \"action_id\": 40,\n                    \"rule\": 37,\n                    \"priority\": 1,\n                    \"action_type\": \"submissionRedirect\",\n                    \"action_data\": {\n                        \"redirect_url\": \"https://example.com\"\n                    },\n                    \"view_data\": {}\n                }\n            ],\n            \"conditions\": [\n                {\n                    \"rule_condition_id\": 38,\n                    \"rule\": 37,\n                    \"priority\": 1,\n                    \"literal\": \"completed\",\n                    \"field\": null,\n                    \"operator\": \"equal\",\n                    \"value\": null,\n                    \"view_data\": {}\n                }\n            ],\n            \"rule_id\": 37,\n            \"decision_group\": null,\n            \"form\": 11,\n            \"type\": \"formRule\",\n            \"priority\": 1\n        }\n    ]\n}\n\n</code></pre>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","forms","{PK}","rules",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e5e5443-5a25-4847-9478-2bf93e3458d7"},{"name":"/api/2.0/forms/{PK}/fields/","id":"30745e10-fc3d-4a77-97e9-495fcc711c3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/forms/{PK}/fields/","description":"<h5 id=\"description\">Description:</h5>\n<p>Gets a list of fields for a specific form.</p>\n<p>PK → form_id</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-{\">{\n    \"count\": 11,\n    \"total_count\": 11,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"field_id\": 25,\n            \"form\": 11,\n            \"dialog_form_field\": 31,\n            \"name\": \"Name\",\n            \"type\": \"singleLineText\",\n            \"crm_field\": null,\n            \"overwrite_field\": false,\n            \"required_field\": true,\n            \"smart_field\": false,\n            \"hidden_field\": false,\n            \"autopopulated_field\": false,\n            \"merge_field\": \"\",\n            \"view_data\": {\n                \"field_type\": \"single-line-text\",\n                \"field_label\": \"What's your name?\",\n                \"field_label_display\": true,\n                \"field_placeholder\": \"Type your name here.\",\n                \"field_value\": \"\",\n                \"max_characters\": 50,\n                \"show_character_count\": true,\n                \"condition\": {\n                    \"display_type\": null,\n                    \"dependent_field_name\": null,\n                    \"operator\": null,\n                    \"values\": [],\n                    \"option_value_mappings\": null\n                },\n                \"field_styles\": {\n                    \"phone_styles\": null,\n                    \"monitor_styles\": {\n                        \"container_styles\": {\n                            \"margin-left\": \"30px\",\n                            \"margin-bottom\": \"5px\",\n                            \"margin-right\": \"30px\",\n                            \"margin-top\": \"10px\"\n                        },\n                        \"element_styles\": {\n                            \"font-family\": \"Open Sans\",\n                            \"margin-bottom\": \"\",\n                            \"text-align\": \"left\",\n                            \"color\": \"rgba(255,255,255,1)\",\n                            \"border-width\": \"1px\",\n                            \"width\": \"\",\n                            \"background-color\": \"rgba(0,146,237,1)\",\n                            \"padding-right\": \"0px\",\n                            \"padding-top\": \"0px\",\n                            \"font-weight\": \"normal\",\n                            \"opacity\": 0,\n                            \"placeholderColor\": \"rgba(200, 200, 200, 1)\",\n                            \"box-shadow\": null,\n                            \"border-color\": \"#C8C8C8\",\n                            \"height\": \"40px\",\n                            \"margin-top\": \"\",\n                            \"font-size\": \"13px\",\n                            \"margin-left\": \"\",\n                            \"border-style\": \"none\",\n                            \"box-sizing\": \"\",\n                            \"padding-left\": \"25px\",\n                            \"padding-bottom\": \"0px\",\n                            \"border-radius\": \"20px 20px 20px 20px\",\n                            \"font-style\": \"\",\n                            \"margin-right\": \"\"\n                        },\n                        \"width\": \"\"\n                    }\n                },\n                \"field_row\": 3,\n                \"field_order\": 0,\n                \"field_index\": 1\n            }\n        },\n        ...\n]\n\n</code></pre>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","forms","{PK}","fields",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"30745e10-fc3d-4a77-97e9-495fcc711c3d"}],"id":"961587f3-0374-4b0e-86b8-0f38928cb227","_postman_id":"961587f3-0374-4b0e-86b8-0f38928cb227","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Guarded Watch","item":[{"name":"/api/2.0/contacts/{PK}/optout/","id":"89f6cb15-ad24-4d6d-a2aa-f6ac0778917a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"","description":"<h5 id=\"description\">Description:</h5>\n<p>This places a record onto the Guarded Watch ensuring they are unsubscribed globally from your Salesfusion sent emails. </p>\n<p>PK → Contact_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"89f6cb15-ad24-4d6d-a2aa-f6ac0778917a"}],"id":"f2ba15c5-a552-4996-ba89-555d19eb82a8","_postman_id":"f2ba15c5-a552-4996-ba89-555d19eb82a8","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Landing Pages","item":[{"name":"https://developer.salesfusion.com/api/2.0/landing_pages/","id":"6d712322-8426-47f4-8454-d6644d95a8cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>Returns a list of all pages</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"6d712322-8426-47f4-8454-d6644d95a8cf"},{"name":"https://developer.salesfusion.com/api/2.0/landing_pages/%7BPK%7D/","id":"90456275-c7ac-4d03-b618-7d1699f7b8e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>Returns a specific page</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"90456275-c7ac-4d03-b618-7d1699f7b8e7"},{"name":"https://developer.salesfusion.com/api/2.0/landing_pages/","id":"1bd05d5f-33ff-49d2-81f7-05f35bec610d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"","description":"<p>Creates a page with the fields and values specified in the body. Name, type, and view_data are required fields.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"1bd05d5f-33ff-49d2-81f7-05f35bec610d"},{"name":"https://developer.salesfusion.com/api/2.0/landing_pages/%7BPK%7D/","id":"6ee9aa12-4e50-41b0-b5a3-b70929aab347","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"","description":"<p>Edits the specified page to set the fields in the body to the values specified.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"6ee9aa12-4e50-41b0-b5a3-b70929aab347"},{"name":"https://developer.salesfusion.com/api/2.0/landing_pages/%7BPK%7D/","id":"89ff3997-d17a-471b-8df6-1b57fbce29ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"","description":"<p>Deletes the specified page.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"89ff3997-d17a-471b-8df6-1b57fbce29ed"}],"id":"22d21a0f-8f9b-41fb-a186-58865d41a3d9","_postman_id":"22d21a0f-8f9b-41fb-a186-58865d41a3d9","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Legacy Landing Pages","item":[{"name":"/api/2.0/landing_pages/legacy/","id":"ab156bcd-80e7-4193-8ffd-241cbdd6b2b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/landing_pages/legacy/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of Legacy Landing Pages in batched of 100. Contains a limited number of columns with basic information. </p>\n<h5 id=\"legacy-landing-pages-level---ordering\">Legacy Landing Pages Level - Ordering:</h5>\n<p>The following fields on the Legacy Landing Pages level are available for ordering via ascending or descending. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Completes - Ascending/Descending\nCreated_By_ID - Ascending/Descending\nCreated_By_Name - Ascending/Descending\nCreated_Date - Ascending/Descending\nDescription - Ascending/Descending\nID - Ascending/Descending\nName - Ascending/Descending\nOpens - Ascending/Descending\nType - Ascending/Descending\nUpdated_By_ID - Ascending/Descending\nUpdated_By_Name - Ascending/Descending\nUpdated_Date - Ascending/Descending\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"count\": 2424,\n    \"total_count\": 2424,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/landing_pages/legacy/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"completes\": 8,\n            \"conversion_rate\": 47.0588,\n            \"created_by_id\": 2,\n            \"created_by_name\": \"Michael North\",\n            \"created_date\": \"2013-07-01T11:27:02.117000Z\",\n            \"description\": \"Michael | Test | 7.1.13\",\n            \"id\": 1,\n            \"name\": \"Michael | Test | 7.1.13\",\n            \"opens\": 17,\n            \"type\": \"eDialogue\",\n            \"updated_by_id\": 2,\n            \"updated_by_name\": \"Michael North\",\n            \"updated_date\": \"2013-07-01T11:27:02.117000Z\",\n            \"url\": \"https://developer.salesfusion.com/api/2.0/landingpages/1/\"\n        }\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","landing_pages","legacy",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab156bcd-80e7-4193-8ffd-241cbdd6b2b0"},{"name":"/api/2.0/landing_pages/legacy/{PK}/","id":"686d4f4b-eb29-4876-9390-cf62eee7bc44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/landing_pages/legacy/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads detailed information about a specified Legacy Landing Page.</p>\n<p>PK → ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"completes\": 2,\n    \"conversion_rate\": 33.3333,\n    \"created_by_id\": 8,\n    \"created_by_name\": \"James Brown\",\n    \"created_date\": \"2014-12-17T15:35:39.710000Z\",\n    \"description\": \"Checkbox JB\",\n    \"id\": 8,\n    \"name\": \"Checkbox JB\",\n    \"opens\": 6,\n    \"type\": \"Landing Page\",\n    \"updated_by_id\": 8,\n    \"updated_by_name\": \"James Brown\",\n    \"updated_date\": \"2014-12-17T15:35:39.710000Z\",\n    \"url\": \"https://developer.salesfusion.com/api/2.0/landingpages/8/\"\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","landing_pages","legacy","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"686d4f4b-eb29-4876-9390-cf62eee7bc44"}],"id":"38b10c13-3cb1-4213-966b-36039337caab","_postman_id":"38b10c13-3cb1-4213-966b-36039337caab","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Listeners","item":[{"name":"/api/2.0/listener/history/","id":"c5ca2e74-968e-4d39-9f8a-0ce374e8715f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/listener/history/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of all records that have entered a listener. Contains relevant infomration such as Listener_ID and email. </p>\n<h5 id=\"listeners-level---ordering\">Listeners Level - Ordering:</h5>\n<p>The following fields on the Listeners level are available for ordering via ascending or descending. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Listener_ID - Ascending/Descending\nContact_ID - Ascending/Descending\nEmail - Ascending/Descending\nCreated_Date - Ascending/Descending\nCampaign_ID - Ascending/Descending\nTemplate_ID - Ascending/Descending\nListener_Action_ID - Ascending/Descending\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"count\": 16694517,\n    \"total_count\": 16694517,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/listener/history/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"listener_id\": 50,\n            \"contact_id\": 0,\n            \"email\": \"05/22/2017 21:00:43\",\n            \"created_date\": \"2017-05-23T05:05:45.027000Z\",\n            \"campaign_id\": 0,\n            \"template_id\": 0,\n            \"listener_action_id\": \"Start\"\n        }\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","listener","history",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5ca2e74-968e-4d39-9f8a-0ce374e8715f"}],"id":"132480c1-d9cf-42d2-afcb-1cc6351db7cd","_postman_id":"132480c1-d9cf-42d2-afcb-1cc6351db7cd","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Nurtures","item":[{"name":"/api/2.0/nurtures/","id":"0820c767-b42e-49f4-8ba5-da984a39588b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/nurtures/{PK}/","description":"<h6 id=\"description\">Description:</h6>\n<p>Reads a paginated list of nurtures in batches of 100.</p>\n<h5 id=\"filtering-by-fileds\">Filtering by fileds:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>status\nfolder\nexecution_status\nname\nnurture_id\ncreated_by_id\n\n</code></pre><h5 id=\"fetching-records-by-date-range\">Fetching Records by Date Range:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>created_date\n\n</code></pre><h5 id=\"nurture-level---ordering\">Nurture Level - Ordering:</h5>\n<p>The following fields on the nurture level are available for ordering via ascending or descending.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>nurture_id - Ascending/Descending\nname - Ascending/Descending\ncreated_date - Ascending/Descending\nupdated_date - Ascending/Descending\nstatus - Ascending/Descending\nactivation_status - Ascending/Descending\ncreated_by_name - Ascending/Descending\nupdated_by_name - Ascending/Descending\nexecution_status - Ascending/Descending\n\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"count\": 709,\n    \"total_count\": 709,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/nurtures/?page=2\",\n    \"previous\": null,\n    \"results\": [\n         {\n            \"nurture_id\": 1,\n            \"name\": \"test nurture\",\n            \"description\": \"test description\",\n            \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/123/\",\n            \"created_date\": \"2026-01-11T07:47:39.910000Z\",\n            \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/321/\",\n            \"updated_date\": \"2026-02-15T16:02:49.670000Z\",\n            \"folder\": 148,\n            \"status\": \"UNPUBLISHED\",\n            \"activation_status\": \"DEACTIVATED\",\n            \"allow_duplicates\": false,\n            \"workflow_id\": 5167,\n            \"created_by_name\": \"John Wick\",\n            \"updated_by_name\": \"Keanu Reeves\",\n            \"was_migrated\": false,\n            \"iframe_eligible\": false,\n            \"execution_status\": \"DEACTIVATED\"\n        },\n        ...\n]\n\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","nurtures","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0820c767-b42e-49f4-8ba5-da984a39588b"},{"name":"/api/2.0/nurtures/{PK}/","id":"b89bfa7f-1392-444d-bdab-c8124ba2b9a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/nurtures/{PK}/","description":"<h6 id=\"description\">Description:</h6>\n<p>Reads a specific Nurture.<br />PK → nurture_id</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","nurtures","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b89bfa7f-1392-444d-bdab-c8124ba2b9a3"}],"id":"b844e1c5-dac0-460f-9477-db4aaa4fb5fe","_postman_id":"b844e1c5-dac0-460f-9477-db4aaa4fb5fe","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Opportunities","item":[{"name":"/api/2.0/opportunities/","id":"96838d02-85f7-4341-909a-3587b1357117","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/opportunities/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of opportunities in batches of 100. Contains a limited number of columns with basic information. </p>\n<h5 id=\"opportunities-level---ordering\">Opportunities Level - Ordering:</h5>\n<p>The following fields on the Opportunities level are available for ordering via ascending or descending. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Name - Ascending/Descending\nStage - Ascending/Descending\nOwner_Name - Ascending/Descending\nAmount - Ascending/Descending\nClosing_Date - Ascending/Descending\nProbability - Ascending/Descending\n \n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"count\": 778,\n    \"total_count\": 778,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/opportunities/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"opportunity_id\": 762,\n            \"opportunity\": \"https://developer.salesfusion.com/api/2.0/opportunities/762/\",\n            \"owner_id\": 2,\n            \"owner_name\": \"Michael North\",\n            \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n            \"account\": \"https://developer.salesfusion.com/api/2.0/accounts/119478/\",\n            \"updated_date\": \"2018-10-08T10:42:43.507000Z\",\n            \"updated_by_id\": 2,\n            \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n            \"created_date\": \"2018-10-08T10:42:43.507000Z\",\n            \"created_by_id\": 2,\n            \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n            \"closing_date\": \"2018-10-08\",\n            \"contact\": \"https://developer.salesfusion.com/api/2.0/contacts/988589/\",\n            \"name\": \"st108O\",\n            \"stage\": \"\",\n            \"amount\": \"0.00\",\n            \"probability\": \"\",\n            \"won\": false,\n            \"custom_mapping\": {\n                \"stage\": {\n                    \"field\": \"SF_StageName\",\n                    \"value\": null\n                },\n                \"probability\": {\n                    \"field\": \"SF_Probability\",\n                    \"value\": null\n                },\n                \"created_date\": {\n                    \"field\": \"CreatedDate\",\n                    \"value\": \"2018-10-08T06:42:43.507Z\"\n                },\n                \"amount\": {\n                    \"field\": \"SF_Amount\",\n                    \"value\": null\n                },\n                \"closing_date\": {\n                    \"field\": \"SF_ClosingDate\",\n                    \"value\": null\n                }\n            }\n        }\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","opportunities",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"96838d02-85f7-4341-909a-3587b1357117"},{"name":"/api/2.0/opportunities/","id":"568d2f6c-a28b-497d-8d0a-a06db5490be5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"name\": \"Example Opp\"\r\n}"},"url":"https://developer.salesfusion.com/api/2.0/opportunities/","description":"<h5 id=\"description\">Description:</h5>\n<p>Creates a new opportunity in the Salesfusion database.</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"opportunity_id\": 824,\n    \"opportunity\": \"https://developer.salesfusion.com/api/2.0/opportunities/824/\",\n    \"owner_id\": 2,\n    \"owner_name\": \"Michael North\",\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"account\": null,\n    \"updated_date\": \"2018-12-19T14:31:00.193336\",\n    \"updated_by_id\": 2,\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"created_date\": \"2018-12-19T14:31:00.193326\",\n    \"created_by_id\": 2,\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"closing_date\": null,\n    \"contact\": null,\n    \"name\": \"Example Opp\",\n    \"stage\": \"\",\n    \"amount\": \"0.00\",\n    \"probability\": \"\",\n    \"won\": null,\n    \"custom_mapping\": {}\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","opportunities",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"568d2f6c-a28b-497d-8d0a-a06db5490be5"},{"name":"/api/2.0/opportunities/{PK}/","id":"cdec5a28-a7eb-449b-a1e3-39b5d07feaea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/opportunities/PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a specific opportunity. Contains details information with all standard and custom fields.</p>\n<p>PK → Opportunity_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"name\": \"Example Opp\",\n    \"owner_name\": \"Michael North\",\n    \"owner_id\": 2,\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"contact_id\": null,\n    \"contact\": null,\n    \"account_id\": null,\n    \"account\": null,\n    \"created_date\": \"2018-12-19T14:31:00.193000Z\",\n    \"created_by_id\": 2,\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_date\": \"2018-12-19T14:31:00.193000Z\",\n    \"updated_by_id\": 2,\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"est_closing_date\": null,\n    \"closing_date\": null,\n    \"probability\": \"\",\n    \"shared_opp\": \"\",\n    \"opp_type\": \"\",\n    \"amount\": \"0.00\",\n    \"description\": \"\",\n    \"product_name\": \"\",\n    \"crm_id\": \"\",\n    \"lead_source\": \"\",\n    \"lead_source_originator\": \"\",\n    \"sub_lead_source\": \"\",\n    \"sub_lead_source_originator\": \"\",\n    \"stage\": \"\",\n    \"next_step\": \"\",\n    \"action_steps_complete\": \"\",\n    \"custom_fields\": {\n        \"ExternalCRMUpdatedDate\": null,\n        \"SF_Description\": null,\n        \"ExternalCRMCreatedDate\": null\n    }\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","opportunities","PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cdec5a28-a7eb-449b-a1e3-39b5d07feaea"},{"name":"/api/2.0/opportunities/{PK}/","id":"83d1681d-7b02-45fe-a8e6-b70c0145a21f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"TJs new opportunity\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/opportunities/PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies an existing opportunity. If the specified opportunity does not exist a new opportunity will be created.</p>\n<p>PK → Opportunity_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"name\": \"Example Opp\",\n    \"owner_name\": \"Michael North\",\n    \"owner_id\": 2,\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"contact_id\": null,\n    \"contact\": null,\n    \"account_id\": null,\n    \"account\": null,\n    \"created_date\": \"2018-12-19T14:31:00.193000Z\",\n    \"created_by_id\": 2,\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_date\": \"2018-12-19T14:31:00.193000Z\",\n    \"updated_by_id\": 2,\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"est_closing_date\": null,\n    \"closing_date\": null,\n    \"probability\": \"\",\n    \"shared_opp\": \"\",\n    \"opp_type\": \"\",\n    \"amount\": \"0.00\",\n    \"description\": \"\",\n    \"product_name\": \"\",\n    \"crm_id\": \"\",\n    \"lead_source\": \"\",\n    \"lead_source_originator\": \"\",\n    \"sub_lead_source\": \"\",\n    \"sub_lead_source_originator\": \"\",\n    \"stage\": \"\",\n    \"next_step\": \"\",\n    \"action_steps_complete\": \"\",\n    \"custom_fields\": {\n        \"ExternalCRMUpdatedDate\": null,\n        \"SF_Description\": null,\n        \"ExternalCRMCreatedDate\": null\n    }\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","opportunities","PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"83d1681d-7b02-45fe-a8e6-b70c0145a21f"},{"name":"/api/2.0/opportunities/{PK}/","id":"8ddea6c4-06ff-44df-bda3-1d161083f2ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"TJs new opportunity\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/opportunities/PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies an existing opportunity. If the an opportunity does not exist with the specified ID \"Not Found\" will be returned</p>\n<p>PK → Opportunity_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"name\": \"Example Opp\",\n    \"owner_name\": \"Michael North\",\n    \"owner_id\": 2,\n    \"owner\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"contact_id\": null,\n    \"contact\": null,\n    \"account_id\": null,\n    \"account\": null,\n    \"created_date\": \"2018-12-19T14:31:00.193000Z\",\n    \"created_by_id\": 2,\n    \"created_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"updated_date\": \"2018-12-19T14:31:00.193000Z\",\n    \"updated_by_id\": 2,\n    \"updated_by\": \"https://developer.salesfusion.com/api/2.0/users/2/\",\n    \"est_closing_date\": null,\n    \"closing_date\": null,\n    \"probability\": \"\",\n    \"shared_opp\": \"\",\n    \"opp_type\": \"\",\n    \"amount\": \"0.00\",\n    \"description\": \"\",\n    \"product_name\": \"\",\n    \"crm_id\": \"\",\n    \"lead_source\": \"\",\n    \"lead_source_originator\": \"\",\n    \"sub_lead_source\": \"\",\n    \"sub_lead_source_originator\": \"\",\n    \"stage\": \"\",\n    \"next_step\": \"\",\n    \"action_steps_complete\": \"\",\n    \"custom_fields\": {\n        \"ExternalCRMUpdatedDate\": null,\n        \"SF_Description\": null,\n        \"ExternalCRMCreatedDate\": null\n    }\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","opportunities","PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ddea6c4-06ff-44df-bda3-1d161083f2ac"},{"name":"/api/2.0/opportunities/{PK}/","id":"de4ee61e-f8cf-4c47-99ea-71156963cb3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://developer.salesfusion.com/api/2.0/opportunities/PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Deletes an opportunity from the Salesfusion database. </p>\n<p>PK → Opportunity_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","opportunities","PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"de4ee61e-f8cf-4c47-99ea-71156963cb3f"}],"id":"556010f9-f50f-40f4-86d5-414b79b6e937","_postman_id":"556010f9-f50f-40f4-86d5-414b79b6e937","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Tasks","item":[{"name":"/api/2.0/tasks/","id":"05fd8644-1555-48a8-9079-e4f4bc83e583","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/tasks/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of tasks in batches of 100. Contains a limited number of columns with basic information.</p>\n<h5 id=\"tasks-level---ordering\">Tasks Level - Ordering:</h5>\n<p>The following fields on the Tasks level are available for ordering via ascending or descending. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>activity_id - Ascending/Descending\ncontact__first_name - Ascending/Descending\ncontact__last_name - Ascending/Descending\nowner__first_name - Ascending/Descending\nowner__last_name - Ascending/Descending\ndue_date - Ascending/Descending\naccount__account_name - Ascending/Descending\nsubject - Ascending/Descending\ncomments - Ascending/Descending\nstatus - Ascending/Descending\npriority - Ascending/Descending\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"count\": 108687,\n    \"total_count\": 108687,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/tasks/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"task\": \"https://developer.salesfusion.com/api/2.0/tasks/2/\",\n            \"task_id\": 2,\n            \"account_id\": 325,\n            \"account_name\": \"test\",\n            \"owner_id\": 1,\n            \"owner_email\": \"michael.north@sandbox.salesforce.com\",\n            \"owner_first_name\": \"Michael\",\n            \"owner_last_name\": \"LocalOnly\",\n            \"contact_id\": 49,\n            \"contact_first_name\": null,\n            \"contact_last_name\": null,\n            \"contact_status\": null,\n            \"opportunity_id\": 0,\n            \"description_text\": \"please call per ben lemmers\",\n            \"comments\": \"please call per ben lemmers\",\n            \"due_date\": \"2014-12-17\",\n            \"priority\": \"High\",\n            \"status\": \"Not Started\",\n            \"subject\": \"Call\",\n            \"created_by_id\": 16,\n            \"updated_by_id\": 16\n        }\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","tasks",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"05fd8644-1555-48a8-9079-e4f4bc83e583"},{"name":"/api/2.0/tasks/","id":"91c57a0d-9ee6-444d-9a15-75907280c184","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"subject\": \"this is a new task!\"\n}"},"url":"https://developer.salesfusion.com/api/2.0/tasks/","description":"<h5 id=\"description\">Description:</h5>\n<p>Creates a new task in the Salesfusion database.</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"task\": \"https://developer.salesfusion.com/api/2.0/tasks/109699/\",\n    \"task_id\": 109699,\n    \"account_id\": null,\n    \"account_name\": null,\n    \"owner_id\": 2,\n    \"owner_email\": \"noreply@salesfusion.com\",\n    \"owner_first_name\": \"Michael\",\n    \"owner_last_name\": \"North\",\n    \"contact_id\": null,\n    \"contact_first_name\": null,\n    \"contact_last_name\": null,\n    \"contact_status\": null,\n    \"opportunity_id\": 0,\n    \"description_text\": \"\",\n    \"comments\": \"\",\n    \"due_date\": null,\n    \"priority\": \"\",\n    \"status\": \"\",\n    \"subject\": \"this is a new task!\",\n    \"created_by_id\": 2,\n    \"updated_by_id\": 2\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","tasks",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"91c57a0d-9ee6-444d-9a15-75907280c184"},{"name":"/api/2.0/tasks/{PK}/","id":"b0f78e3a-4231-4760-b787-92b84ff79df9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/tasks/{PK}/","description":"<h5 id=\"reads-detailed-information-for-a-specified-task-contains-all-standard-and-custom-fields\">Reads detailed information for a specified task. Contains all standard and custom fields.</h5>\n<p>PK → Task_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"account_id\": null,\n    \"comments\": \"\",\n    \"contact_id\": null,\n    \"contact_first_name\": null,\n    \"contact_last_name\": null,\n    \"created_date\": \"2018-12-19T14:34:56.380000Z\",\n    \"created_by_id\": 2,\n    \"owner_id\": 2,\n    \"owner_email\": \"noreply@salesfusion.com\",\n    \"owner_first_name\": \"Michael\",\n    \"owner_last_name\": \"North\",\n    \"opportunity_id\": 0,\n    \"description\": \"\",\n    \"priority\": \"\",\n    \"reminder_datetime\": null,\n    \"send_reminder\": false,\n    \"due_date\": null,\n    \"status\": \"\",\n    \"subject\": \"this is a new task!\",\n    \"updated_date\": \"2018-12-19T14:34:56.380000Z\",\n    \"updated_by_id\": 2,\n    \"custom_fields\": {\n        \"ActivityDate\": null,\n        \"WhatId\": null\n    }\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","tasks","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b0f78e3a-4231-4760-b787-92b84ff79df9"},{"name":"/api/2.0/tasks/{PK}/","id":"6676f91c-1236-4759-b6f4-e9c84338451f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"description\": \"Test Description\"\r\n}"},"url":"https://developer.salesfusion.com/api/2.0/tasks/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies a specifc task. Description is a require field. \nIf the specified task does not exist \"Not Found\" will be returned.</p>\n<p>PK → Task_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>##### Reads detailed information for a specified task. Contains all standard and custom fields.\n\nPK → Task_ID\n\n##### Sample Response: \n</code></pre><p>{\n    \"account_id\": null,\n    \"comments\": \"\",\n    \"contact_id\": null,\n    \"contact_first_name\": null,\n    \"contact_last_name\": null,\n    \"created_date\": \"2018-12-19T14:34:56.380000Z\",\n    \"created_by_id\": 2,\n    \"owner_id\": 2,\n    \"owner_email\": \"<a href=\"mailto:noreply@salesfusion.com\">noreply@salesfusion.com</a>\",\n    \"owner_first_name\": \"Michael\",\n    \"owner_last_name\": \"North\",\n    \"opportunity_id\": 0,\n    \"description\": \"\",\n    \"priority\": \"\",\n    \"reminder_datetime\": null,\n    \"send_reminder\": false,\n    \"due_date\": null,\n    \"status\": \"\",\n    \"subject\": \"this is a new task!\",\n    \"updated_date\": \"2018-12-19T14:34:56.380000Z\",\n    \"updated_by_id\": 2,\n    \"custom_fields\": {\n        \"ActivityDate\": null,\n        \"WhatId\": null\n    }\n}\n```</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","tasks","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6676f91c-1236-4759-b6f4-e9c84338451f"},{"name":"/api/2.0/tasks/{PK}/ ","id":"8973ace9-354f-4f14-ba5d-93fe74b31b7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\"description\": \"Test Description\"\r\n}"},"url":"https://developer.salesfusion.com/api/2.0/tasks/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies a specifc task. Description is a require field. \nIf the specified task does not exist \"Not Found\" will be returned.</p>\n<p>PK → Task_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"account_id\": null,\n    \"comments\": \"\",\n    \"contact_id\": null,\n    \"contact_first_name\": null,\n    \"contact_last_name\": null,\n    \"created_date\": \"2018-12-19T14:34:56.380000Z\",\n    \"created_by_id\": 2,\n    \"owner_id\": 2,\n    \"owner_email\": \"noreply@salesfusion.com\",\n    \"owner_first_name\": \"Michael\",\n    \"owner_last_name\": \"North\",\n    \"opportunity_id\": 0,\n    \"description\": \"\",\n    \"priority\": \"\",\n    \"reminder_datetime\": null,\n    \"send_reminder\": false,\n    \"due_date\": null,\n    \"status\": \"\",\n    \"subject\": \"this is a new task!\",\n    \"updated_date\": \"2018-12-19T14:34:56.380000Z\",\n    \"updated_by_id\": 2,\n    \"custom_fields\": {\n        \"ActivityDate\": null,\n        \"WhatId\": null\n    }\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","tasks","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8973ace9-354f-4f14-ba5d-93fe74b31b7b"},{"name":"/api/2.0/tasks/{PK}/","id":"8697049f-76c2-4def-bd1d-398eca91654d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"","description":"<h5 id=\"description\">Description:</h5>\n<p>Deletes a specified task. </p>\n<p>PK → Task_ID</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"8697049f-76c2-4def-bd1d-398eca91654d"}],"id":"c97c0b1a-0544-4dd1-9f67-aed7c7769238","_postman_id":"c97c0b1a-0544-4dd1-9f67-aed7c7769238","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Users","item":[{"name":"/api/2.0/users/","id":"f985a221-5201-408f-8785-145a5ebbbf7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/users/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a paginated list of users in batches of 100. Contains limited columns with basic information.</p>\n<h5 id=\"users-level---ordering\">Users Level - Ordering:</h5>\n<p>The following fields on the users level are available for ordering via ascending or descending.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>User_ID - Ascending/Descending\nUser_Name - Ascending/Descending\nFirst_Name - Ascending/Descending\nLast_Name - Ascending/Descending\nEmail - Ascending/Descending\nStatus - Ascending/Descending\n</code></pre><h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"count\": 169,\n    \"total_count\": 169,\n    \"page_size\": 100,\n    \"page_number\": 1,\n    \"next\": \"https://developer.salesfusion.com/api/2.0/users/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"user_id\": 1,\n            \"user\": \"https://developer.salesfusion.com/api/2.0/users/1/\",\n            \"user_name\": \"michael.north@sandbox.salesforce.com\",\n            \"first_name\": \"Michael\",\n            \"last_name\": \"LocalOnly\",\n            \"email\": \"michael.north@sandbox.salesforce.com\",\n            \"status\": 1\n        }\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","users",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f985a221-5201-408f-8785-145a5ebbbf7a"},{"name":"/api/2.0/users/","id":"c0517618-73fc-44c6-a954-5cb81489f4f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"Email\": \"example@api.com\", \"portal_password\": \"apipassword\"\r\n}"},"url":"https://developer.salesfusion.com/api/2.0/","description":"<h5 id=\"description\">Description:</h5>\n<p>Creates a new user in the Salesfusion database.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0517618-73fc-44c6-a954-5cb81489f4f5"},{"name":"/api/2.0/users/{PK}/","id":"b2e7b902-4de6-4f1c-b99d-54c84167310d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://developer.salesfusion.com/api/2.0/users/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Reads a specific user. Contains all columns with detailed information. </p>\n<p>PK → User_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"user_name\": \"shippeyben@gmail.com\",\n    \"salutation\": \"\",\n    \"first_name\": \"Ben\",\n    \"last_name\": \"Shippey\",\n    \"email\": \"shippeyben@gmail.com\",\n    \"domain\": \"sandbox.salesforce.com\",\n    \"address1\": \"\",\n    \"address2\": \"\",\n    \"country\": \"Choose One...\",\n    \"city\": \"\",\n    \"state\": \"\",\n    \"zip\": \"\",\n    \"mobile\": \"\",\n    \"phone\": \"\",\n    \"phone_extension\": \"\",\n    \"job_title\": \"\",\n    \"company_website\": \"\",\n    \"profile_picture\": null,\n    \"face_book\": \"\",\n    \"linked_in\": \"\",\n    \"twitter\": \"\",\n    \"status\": 0,\n    \"crm_id\": \"\",\n    \"customer_id\": 96180,\n    \"admin\": true\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","users","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2e7b902-4de6-4f1c-b99d-54c84167310d"},{"name":"/api/2.0/users/{PK}/","id":"dbb546c9-cfbf-4429-b618-b5707bb44e4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"Email\": \"example@api.com\",\r\n\"portal_password\": \"apipassword\" \r\n}"},"url":"https://developer.salesfusion.com/api/2.0/users/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies a user.Email and Portal_password must be passed. If the specified ID does not exist \"Not Found\" will be returned.</p>\n<p>PK → User_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"user_name\": \"shippeyben@gmail.com\",\n    \"salutation\": \"\",\n    \"first_name\": \"Ben\",\n    \"last_name\": \"Shippey\",\n    \"email\": \"example@api.com\",\n    \"domain\": \"sandbox.salesforce.com\",\n    \"address1\": \"\",\n    \"address2\": \"\",\n    \"country\": \"Choose One...\",\n    \"city\": \"\",\n    \"state\": \"\",\n    \"zip\": \"\",\n    \"mobile\": \"\",\n    \"phone\": \"\",\n    \"phone_extension\": \"\",\n    \"job_title\": \"\",\n    \"company_website\": \"\",\n    \"profile_picture\": null,\n    \"face_book\": \"\",\n    \"linked_in\": \"\",\n    \"twitter\": \"\",\n    \"status\": 0,\n    \"crm_id\": \"\",\n    \"customer_id\": 96180,\n    \"admin\": true\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","users","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"dbb546c9-cfbf-4429-b618-b5707bb44e4d"},{"name":"/api/2.0/users/{PK}/ ","id":"d2691691-732d-48e0-927d-ef63ef0f451a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\"Email\": \"example@api.com\",\r\n\"portal_password\": \"apipassword\" \r\n}"},"url":"https://developer.salesfusion.com/api/2.0/{PK}/","description":"<h5 id=\"description\">Description:</h5>\n<p>Modifies a user based on User_ID.If the specified ID does not exist \"Not Found\" will be returned.</p>\n<p>PK → User_ID</p>\n<h5 id=\"sample-response\">Sample Response:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"user_name\": \"shippeyben@gmail.com\",\n    \"salutation\": \"\",\n    \"first_name\": \"Ben\",\n    \"last_name\": \"Shippey\",\n    \"email\": \"example@api.com\",\n    \"domain\": \"sandbox.salesforce.com\",\n    \"address1\": \"\",\n    \"address2\": \"\",\n    \"country\": \"Choose One...\",\n    \"city\": \"\",\n    \"state\": \"\",\n    \"zip\": \"\",\n    \"mobile\": \"\",\n    \"phone\": \"\",\n    \"phone_extension\": \"\",\n    \"job_title\": \"\",\n    \"company_website\": \"\",\n    \"profile_picture\": null,\n    \"face_book\": \"\",\n    \"linked_in\": \"\",\n    \"twitter\": \"\",\n    \"status\": 0,\n    \"crm_id\": \"\",\n    \"customer_id\": 96180,\n    \"admin\": true\n}\n</code></pre>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","2.0","{PK}",""],"host":["developer","salesfusion","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2691691-732d-48e0-927d-ef63ef0f451a"}],"id":"3e12498d-f05c-4b93-bc99-b89a5b382aa5","_postman_id":"3e12498d-f05c-4b93-bc99-b89a5b382aa5","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}},{"name":"Web Activity","item":[{"name":"https://developer.salesfusion.com/api/2.0/webactivity/","id":"fc176302-9a31-40d5-b10a-0c958140687b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>Returns a list of all web activity detail records.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"fc176302-9a31-40d5-b10a-0c958140687b"},{"name":"https://developer.salesfusion.com/api/2.0/webactivity/%7BPK%7D/","id":"ce29fc8b-cc11-4923-8a8c-07b559828cc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>Returns a web activity detail record.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"ce29fc8b-cc11-4923-8a8c-07b559828cc2"}],"id":"46490801-02a9-499c-8fdc-f45e1f5ca527","_postman_id":"46490801-02a9-499c-8fdc-f45e1f5ca527","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]},"isInherited":true,"source":{"_postman_id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","id":"cd74d81b-aacf-43e9-93d6-24d805e85dd3","name":"SugarMarket RESTFUL API","type":"collection"}}}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"username@domain"},{"key":"password","value":"password"}]}},"event":[{"listen":"prerequest","script":{"id":"6496ae74-0f58-475e-bd90-fa59d91932f7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f33e60ed-e24a-4ced-9bde-46eb78522d0d","type":"text/javascript","exec":[""]}}],"variable":[{"key":"username","value":"username"},{"key":"password","value":"password"},{"key":"domain","value":"domain"}]}