{"info":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","description":"<html><head></head><body><img src=\"https://i.imgur.com/n744BL9.png\">\n\n<h2 id=\"about\">About</h2>\n<p>Welcome to the ServiceMonster Developer Page! Here you can find all API documentation for<br>our V1 environment. Code References and Snippets are in the right hand pane.</p>\n<p>If you have any questions please feel free to contact us at <a href=\"https://mailto:developer@servicemonster.net\">developer@servicemonster.net</a>.</p>\n<h1 id=\"getting-started\">Getting Started</h1>\n<h2 id=\"using-the-api\">Using the API</h2>\n<h3 id=\"part-1-returning-a-collection\">Part 1: Returning a collection</h3>\n<p>To begin using the ServiceMonster REST API you will first and foremost need an authentication token. If you do not have an authentication token, please see the page on Creating a Basic Token. The token not only gives you access to the REST API, but it is also what ties your requests to a ServiceMonster Company ID.</p>\n<p>Once you have your token, it is highly recommended that you compose your first HTTP requests with a program such as Fiddler Web Debugger. This program will allow you to compose requests, and to view the data that is returned from a properly formatted request. It is not necessary to use this third-party application, but it does make it very clear as to what is required in the request, what is returned in the data-set and how it is formatted. The following examples in this getting started tutorial will use the Fiddler Web Debugger.</p>\n<p>In Fiddler, select the “Composer” tab to begin creating your HTTP request. In the Request Header, add the following lines:</p>\n<p><code>Content-Type: application/json</code><br><code>Authorization: Basic {Your Token Here}</code></p>\n<p>Please be careful to put a space between “Basic” and your token. This is what your Request Header should look like for all future HTTP Requests:</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/headers.png\">\n\n<p>Now to compose the request itself. We will begin by doing a simple query of “Accounts” records. Directly above the Request Header section there is a drop-down list containing the available HTTP actions: GET, POST, PUT, etc.... Of these options, the REST API uses 4 which each relate to a CRUD operation. POST = create, GET = read, PUT = update, and DELETE = delete. For this example we will leave the drop-down list with “GET” selected.</p>\n<p>Next to the drop-down list there is an address bar. This is where you will specify the resource you are trying to access. For our example, Accounts, the address will look like this:</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/composer.png\">\n\n<p>First, you must use the HTTPS secure protocol. Regular HTTP requests will not work, and will result in a 404 “Not Found” error. Second is the address “api.servicemonster.net”. This will always be the address you should use to access any resource through the REST API. Third, after the address is the version number. Currently we are on version 1. Requests made to /v1/ will still continue to work after /v2/ is made available, thereby ensuring that any updates we make will not break a piece of software utilizing our API. Finally, after the version comes the resource that we are trying to access, in this case “accounts.” The address is not case-sensitive.</p>\n<p>Once your request is complete, hit the button in the top-right of the screen. In the left side of the screen is the list of HTTP requests that have been made by your system, with the most recent request at the bottom.</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/responses.png\">\n\n<p>The “Host” for our request should be “api.servicemonster.net” and the URL should be “/v1/accounts.” With your request selected, change the tab on the right side of the screen from “Composer” to “Inspectors.”</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/tabs.png\">\n\n<p>Beneath the Request Headers section is another row of tabs that allow you to view the data after it has been de-serialized in a variety of formats. The data returned by the API is serialized in JSON, fiddler should recognize this and automatically select the JSON tab, but if it does not, then select that tab now. (Alternatively, you can double-click the request in the Request List). The data returned should look something like this:</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/response_body.png\">\n\n<p>At the top of the JSON package is the count. This number tells you how many records there are in the database for the type of resource selected. By default, the API will only return the first 10 records, however you can increase the “Page Size” or return a different “Page Index.” (See “Part IV: Parameters)</p>\n<h3 id=\"part-2-returning-a-single-record-top\">Part 2: Returning a Single Record top</h3>\n<p>Returning a single record is very similar to returning a collection, however we must include the record identifier. The record identifier will be of the type “GUID” (Globally Unique Identifier)* and will be added to the end of the request address like so:</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/get_account.png\">\n\n<p>This request will return the information regarding a single account. If you have successfully received a collection of account records, you can use the “accountID” property from one of those records as your record identifier. The property that contains the record identifier will have the resource name (“account,” in this case) in lowercase plus the letters “ID” capitalized. Ie: accountID, orderID, siteID, etc...</p>\n<h3 id=\"part-3-returning-child-collections\">Part 3: Returning Child Collections</h3>\n<p>You can also request collections of data that “belong” to a record. For example, you may want to return a collection of the Orders that have been created for a specific Account. To do this, construct your request like you were returning a single Account record, and then add the child-resource to the end of it like so:</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/get_account_orders.png\">\n\n<p>This request would return to us the orders for the account with accountID equal to “990d83de-0d9a-444f-bfd7-09101c756151.”</p>\n<h3 id=\"part-4-parameters\">Part 4: Parameters</h3>\n<p>Please view the Parameters page <a href=\"#GET-Parameters\">Parameters</a></p>\n<h3 id=\"part-5-creating-a-new-record\">Part 5: Creating a New Record</h3>\n<p>A few of the resources made accessible by the API are set as read-only. For those, you will be unable to create new records. However, the majority of the ServiceMonster resources allow you to insert a new record via the API. In this example, we will add a new Account.</p>\n<p>First, set the drop-down list in the Fiddler Request Composer to “POST.” Second, we will construct the address as if we were requesting a collection; like so:</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/post_account.png\">\n\n<p>The content for the resource we are trying to add goes in to the Request Body. For each type of resource, at least one property is required. If you were to hit “Execute” without typing anything into the Request Body, you will get the following error that basically just says it was expecting some data:</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/length_required.png\">\n\n<p>That is because a JSON data package must be encapsulated with the curly braces { and }. If we simply put the open and closed curly braces into the request body, and hit “Execute” with our empty data-set, we will get the following error message that contains more meaningful information:</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/required_fields.png\">\n\n<p>For Accounts, the only property that is required is accountName. If more of the properties were required, they would be listed here as well. This can be a good way to determine what fields will need to be supplied in order to create a record. To create a new Account with the absolute minimum of information, compose your Request Body so that it looks like the following:</p>\n<p><code>{ \"accountName\":\"New Account\" }</code></p>\n<p>If you have constructed your request properly, the record will be created, and the record identifier will be returned in a JSON package. Some properties are read-only, so if you try to insert a record and have supplied a property that is read-only, you will get an error message and the record will not be created.</p>\n<h3 id=\"part-6-updating-a-record\">Part 6: Updating a Record</h3>\n<p>Similar to requesting a single record, you must supply the record ID in order to do an Update. You must also change the action drop-down list to “PATCH.”</p>\n<p>Then, form the Request Body like you did for a POST including the fields you want to update. None of the fields are required to do an update, however some of them are read-only. Also, you cannot update a required property with a blank or null value.</p>\n<p>Part 7: Deleting a Record top<br>Just like fetching or updating a single record, we need to supply a record ID to delete a record through the API. This time we will set the HTTP Action drop-down list to “DELETE”</p>\n<h1 id=\"creating-a-basic-token\">Creating a Basic Token</h1>\n<h3 id=\"create-an-api-key\">Create an API Key</h3>\n<ol>\n<li><p>Login to ServiceMonster at six.servicemonster.net (You will need to use an administrator account)</p>\n</li>\n<li><p>Navigate to Settings from the bar on the Left, and select \"API Users\"</p>\n</li>\n<li><p>Click \"+API User\" at the top of the list of existing API Keys.</p>\n</li>\n<li><p>Select a role, usually Admin and supply a note (optional), click \"Submit\"</p>\n</li>\n<li><p>A set of API Credentials will appear. Make sure you save the password, as it will not be retrievable if you lose it.</p>\n</li>\n</ol>\n<h3 id=\"api-user-roles\">Api User Roles</h3>\n<ul>\n<li><p>Admin - Can Create, Read, Update, and Delete on any of the available resources. Use of this role is typically not necessary.</p>\n</li>\n<li><p>Super User - Can Create, Read and Update. Can not Delete. Most records can be archived or de-activated without deleting, so this Role should be able to achieve everything necessary for implementations.</p>\n</li>\n<li><p>Read Only - can only Read.</p>\n</li>\n<li><p>WebForms - can not perform any actions EXCEPT Creating new Web Lead records.</p>\n</li>\n</ul>\n<h3 id=\"create-a-basic-token-using-base64encode\">Create a Basic Token using base64encode</h3>\n<p>Open <a href=\"https://www.base64encode.org/\">https://www.base64encode.org/</a><br>Make sure you are set to encode, then in the top box paste your username and password generated in step one. They should be seperated by a colon. Then press \"Encode\"<br>Ex: \"username\":\"password\"</p>\n<img src=\"https://gitlab.servicemonster.net/documentation/documentation-site/raw/master/images/base64.png\">\n\n<p>The encoded string generated is your Basic Token. You can use it by supplying it in your request Headers.</p>\n<h3 id=\"ajax-example\">Ajax Example:</h3>\n<p>See <code>javascript</code> code snippet to the right.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var settings = {\n  \"url\": \"https://api.servicemonster.net/v1/accounts\",\n  \"method\": \"GET\",\n  \"headers\": {\n    \"authorization\": \"Basic ***********\"\n  }\n}\n$.ajax(settings).done(function (response) {\n  console.log(response);\n});\n\n</code></pre>\n<h1 id=\"get-parameters\">GET Parameters</h1>\n<p><strong>GET Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fields</td>\n<td>limits the return to the specified columns</td>\n<td>v1/accounts?fields=id,accountName</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>limits the number of records returned for paging</td>\n<td>v1/accounts?limit=25</td>\n</tr>\n<tr>\n<td>pageIndex</td>\n<td>The page of results to be returned. (example returns records 101-125)</td>\n<td>v1/accounts?limit=25&amp;pageIndex=4</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>GET Where Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>wField</td>\n<td>The data field to check against</td>\n</tr>\n<tr>\n<td>wValue</td>\n<td>The value to filter on. (Use \" \" for spaces)</td>\n</tr>\n<tr>\n<td>wOperator</td>\n<td>(optional)The type of camparison to be made. Default is the equals operator; do not include this parameter if you are looking for an exact match to the supplied value. (\"gt\") greater than; (\"lt\") less than(\"like\") LIKE, '%'s are added before and after value. See examples below.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>GET Where Examples</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Example</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>.../v1/account?wField=lastName&amp;wValue=Smith</td>\n<td>Returns all Accounts where the Last Name equals \"Smith\"</td>\n</tr>\n<tr>\n<td>.../v1/orders?wField=balanceDue&amp;wValue=100&amp;wOperator=gt</td>\n<td>Returns all Orders where the balance due is greater than $100.00</td>\n</tr>\n<tr>\n<td>.../v1/leadSources?wField=name&amp;wValue=magazine&amp;wOperator=like</td>\n<td>Returns all Lead Sources that have the word \"magazine\" somewhere in the name.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"vendor-information\">Vendor Information</h1>\n<h2 id=\"overview\">Overview</h2>\n<p>ServiceMonster is proud to offer data-integration to third party vendors who would like to offer their services to our customers.</p>\n<p>Once you are approved as a vendor we will create a test company for you within the ServiceMonster test site (<a href=\"http://west-test.servicemonster.net/servicemonster\">http://west-test.servicemonster.net/servicemonster</a>). You will then be able to log in to ServiceMonster and create your own API credentials. Once you have created a set of API credentials you can start creating, reading, and modifying data through the API test site (<a href=\"http://west-test.servicemonster.net/smapi\">http://west-test.servicemonster.net/smapi</a>) and start building out your integration with ServiceMonster company data.</p>\n<p>One key component to completing integration with ServiceMonster customer data, is the process through which the end-user will grant access to your application. This process is outlined in detail in this document and in this diagram.</p>\n<h2 id=\"vendor-access-request\">Vendor Access Request</h2>\n<p>** Creating Company-Specific API Credentials through the ServiceMonster API **</p>\n<p>When you are first approved as a vendor, you will be given a set of credentials as well as an Application ID for each app that you have in the marketplace that integrates with ServiceMonster data. You will use this AppID both when validating the API access request, and when completing the request to retrieve credentials.</p>\n<p>** Check if API Request is valid: **</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-reference\">GET https://api.servicemonster.net/v1/apiRequests/{AppID}/{RequestID}\nAuthorization:  Basic {your token here}\n\n</code></pre>\n<p>This validation check must occur within 30 minutes from when the API request was created. After that it expires and the user will need to generate a new link (by refreshing the marketplace page).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"companyKey\": \"5001\",\n  \"companyName\": \"Principal Focus\",\n  \"address1\": \"4204 Meridian St\",\n  \"address2\": \"Suite 105\",\n  \"city\": \"Bellingham\",\n  \"state\": \"WA\",\n  \"zip\": \"98226\",\n  \"phone\": \"(888) 901-3300\"\n}\n\n</code></pre><p>If the Request is still valid, the API will return information specific to the company that has generated the API Access request. e.g.</p>\n<p>You can use this data to pre-fill your purchase form. Once the customer has completed the purchasing process, you can then use your AppID and the RequestID again to “complete” the request, and have the API return a set of credentials that will allow you to access that company’s data.</p>\n<p>** Completing the API Request: **</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-reference\">POST    https://api.servicemonster.net/v1/apiRequests   \nAuthorization:  Basic {your token here}\nContent-Type:   application/json\nRequest Body:\n{\n  \"requestID\": \"{RequestID}\",\n  \"appID\": \"{AppID}\"\n}\n\n</code></pre>\n<p>The API Request must be completed within 1 hour from when the API request was created. After that it expires and the user will need to generate a new link (by refreshing the marketplace page).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-reference\">{\n  \"password\": \"**\",\n  \"userName\": \"**\"\n}\n\n</code></pre>\n<p>Upon a successful post of the API Request object, the new credentials will be returned:</p>\n<p>Once you have the credentials, you can Base64 them into a token to use when authenticating your requests: <a href=\"#Creating-a-Basic-Token\">Creating a Basic Token</a></p>\n<h2 id=\"vendor-request-flow\">Vendor Request Flow</h2>\n<img src=\"https://gitlab.servicemonster.net/Bwebb/documentation-site/raw/master/images/api_flow.png\">\n\n<h1 id=\"using-postman\">Using Postman</h1>\n<img src=\"https://www.getpostman.com/img/v2/media-kit/Logo/PNG/pm-logo-horiz.png\">\n\n<p><a href=\"https://www.getpostman.com/\">Postman</a> is a powerful tool for developing and testing API. By clicking the 'Run in Postman' button at the top of this page you can access a collection of all the requests available in the ServiceMonster API. For more information on getting started with Postman, see the <a href=\"https://www.getpostman.com/docs/postman/launching_postman/installation_and_updates\">official documentation</a>.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"},{"content":"Creating a Basic Token","slug":"creating-a-basic-token"},{"content":"GET Parameters","slug":"get-parameters"},{"content":"Vendor Information","slug":"vendor-information"},{"content":"Using Postman","slug":"using-postman"}],"owner":"3295919","collectionId":"e4ce71c2-762a-4230-b0f9-c189d03f5810","publishedId":"RVg2A8sE","public":true,"customColor":{"top-bar":"3E6DB5","right-sidebar":"18488A","highlight":"00A650"},"publishDate":"2018-02-27T18:23:00.000Z"},"item":[{"name":"Accounts","item":[{"name":"Accounts","id":"0acd4288-33b2-4957-9db8-3ca40a0b6dd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.servicemonster.net/v1/accounts","description":"<h2 id=\"request-a-list-of-accounts\">Request a list of Accounts</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"0acd4288-33b2-4957-9db8-3ca40a0b6dd5"},{"name":"Accounts","id":"a422c483-5fe9-48ed-99b0-2bb56dd44c22","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"accountName\":\"String\"}"},"url":"https://api.servicemonster.net/v1/accounts","description":"<h2 id=\"create-a-new-account\">Create a new Account.</h2>\n<p>Include the desired properties in the request body to create a new account. Be sure to provide the required properties.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the account.</td>\n</tr>\n<tr>\n<td>accountName</td>\n<td>String</td>\n<td>AccountName is not required as long as CompanyName (commercial accounts) or FirstName and LastName (residential accounts) are supplied.</td>\n<td>-</td>\n<td>-</td>\n<td>The name of the Account as it appears in the Accounts list</td>\n</tr>\n<tr>\n<td>accountReferralID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>If the Lead Source is set to \"Account Referral\", then this ID is used to define the referring account.</td>\n</tr>\n<tr>\n<td>accountSubType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The user-defined sub-category for the account.</td>\n</tr>\n<tr>\n<td>accountType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Customer</td>\n<td>The type of account. ie Customer, Prospect, etc..</td>\n</tr>\n<tr>\n<td>acquisitionDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date that this account was created.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether this account is currently active.</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Line 1 of the account's street address</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Line 2 of the account's street address</td>\n</tr>\n<tr>\n<td>alert</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Calls attention to the account.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The city where the account-holder is located</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Comment about the account.</td>\n</tr>\n<tr>\n<td>commercial</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this account is for a residential or commercial location.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this account belongs.</td>\n</tr>\n<tr>\n<td>companyKey</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this account belongs.</td>\n</tr>\n<tr>\n<td>companyName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The country where the account-holder is located</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The country where the account-holder is located</td>\n</tr>\n<tr>\n<td>county</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The county where the account-holder is located</td>\n</tr>\n<tr>\n<td>courierRoute</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The courier route for this account.</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who created this account.</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this acocunt was created.</td>\n</tr>\n<tr>\n<td>doNotCall</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this person would like to receive phone calls.</td>\n</tr>\n<tr>\n<td>doNotEmail</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this person would like to receive emails.</td>\n</tr>\n<tr>\n<td>doNotMail</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this person would like to receive mail.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The email address for this account.</td>\n</tr>\n<tr>\n<td>externalRefID</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>This can be the ID of this account in a different system. ie Quickbooks.</td>\n</tr>\n<tr>\n<td>fax</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The fax number for this account</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The first name of the account-holder</td>\n</tr>\n<tr>\n<td>flagForReview</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this account needs to be reviewed.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The last name of the account-holder</td>\n</tr>\n<tr>\n<td>lastStatementDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date of the most recent statement.</td>\n</tr>\n<tr>\n<td>lastJobDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date of the most recent Job.</td>\n</tr>\n<tr>\n<td>leadSourceID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the Lead Source for this account.</td>\n</tr>\n<tr>\n<td>nextJobDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date of the soonest upcoming Job.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A note about this account</td>\n</tr>\n<tr>\n<td>paymentTerm</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Used to determine when a customer's invoice is past due. (Due Upon Receipt, Net 15, Net 30, Net 60)</td>\n</tr>\n<tr>\n<td>phone1</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The first phone number for this account.</td>\n</tr>\n<tr>\n<td>phone1Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Phone 1</td>\n<td>The label for the first phone number.</td>\n</tr>\n<tr>\n<td>canText1</td>\n<td>Boolean</td>\n<td></td>\n<td></td>\n<td></td>\n<td>Whether the first phone number can be texted.</td>\n</tr>\n<tr>\n<td>phone2</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The second phone number for this account.</td>\n</tr>\n<tr>\n<td>phone2Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Phone 2</td>\n<td>The label for the second phone number</td>\n</tr>\n<tr>\n<td>canText2</td>\n<td>Boolean</td>\n<td></td>\n<td></td>\n<td></td>\n<td>Whether the second phone number can be texted.</td>\n</tr>\n<tr>\n<td>phone3</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The third phone number for this account</td>\n</tr>\n<tr>\n<td>phone3Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Phone 3</td>\n<td>The label for the third phone number</td>\n</tr>\n<tr>\n<td>canText3</td>\n<td>Boolean</td>\n<td></td>\n<td></td>\n<td></td>\n<td>Whether the third phone number can be texted.</td>\n</tr>\n<tr>\n<td>reference</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A custom field.</td>\n</tr>\n<tr>\n<td>salutation</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The title for the account-holder</td>\n</tr>\n<tr>\n<td>securityGroup</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The security group for this account</td>\n</tr>\n<tr>\n<td>siteReference</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The county where the account-holder is located</td>\n</tr>\n<tr>\n<td>taxExempt</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether this account is subject to taxes.</td>\n</tr>\n<tr>\n<td>taxID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The identifier of the tax-rate for this account</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The zip-code where the account-holder is located</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this account was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last edited this account.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"a422c483-5fe9-48ed-99b0-2bb56dd44c22"},{"name":"Account","id":"67d8c706-489e-4d16-8993-2f653da84b9e","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/accounts/{id}","description":"<h2 id=\"request-a-specific-account\">Request a specific Account</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"67d8c706-489e-4d16-8993-2f653da84b9e"},{"name":"Account","id":"55048417-2f78-4b1b-95a7-aa04bee9793f","request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/accounts/{id}","description":"<h2 id=\"update-a-specific-account\">Update a specific Account</h2>\n<p>Provide the desired properties in the request body to update the specified account. </p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the account.</td>\n</tr>\n<tr>\n<td>accountName</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The account's name.</td>\n</tr>\n<tr>\n<td>accountReferralID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>If the Lead Source is set to \"Account Referral\", then this ID is used to define the referring account.</td>\n</tr>\n<tr>\n<td>accountSubType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The user-defined sub-category for the account.</td>\n</tr>\n<tr>\n<td>accountType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Customer</td>\n<td>The type of account. ie Customer, Prospect, etc..</td>\n</tr>\n<tr>\n<td>acquisitionDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date that this account was created.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether this account is currently active.</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Line 1 of the account's street address</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Line 2 of the account's street address</td>\n</tr>\n<tr>\n<td>alert</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Calls attention to the account.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The city where the account-holder is located</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Comment about the account.</td>\n</tr>\n<tr>\n<td>commercial</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this account is for a residential or commercial location.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this account belongs.</td>\n</tr>\n<tr>\n<td>companyKey</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this account belongs.</td>\n</tr>\n<tr>\n<td>companyName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The country where the account-holder is located</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The country where the account-holder is located</td>\n</tr>\n<tr>\n<td>county</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The county where the account-holder is located</td>\n</tr>\n<tr>\n<td>courierRoute</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The courier route for this account.</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who created this account.</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this acocunt was created.</td>\n</tr>\n<tr>\n<td>doNotCall</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this person would like to receive phone calls.</td>\n</tr>\n<tr>\n<td>doNotEmail</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this person would like to receive emails.</td>\n</tr>\n<tr>\n<td>doNotMail</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this person would like to receive mail.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The email address for this account.</td>\n</tr>\n<tr>\n<td>externalRefID</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>This can be the ID of this account in a different system. ie Quickbooks.</td>\n</tr>\n<tr>\n<td>fax</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The fax number for this account</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The first name of the account-holder</td>\n</tr>\n<tr>\n<td>flagForReview</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this account needs to be reviewed.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The last name of the account-holder</td>\n</tr>\n<tr>\n<td>lastStatementDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date of the most recent statement.</td>\n</tr>\n<tr>\n<td>lastJobDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date of the most recent Job.</td>\n</tr>\n<tr>\n<td>leadSourceID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the Lead Source for this account.</td>\n</tr>\n<tr>\n<td>nextJobDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date of the soonest upcoming Job.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A note about this account</td>\n</tr>\n<tr>\n<td>paymentTerm</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Used to determine when a customer's invoice is past due. (Due Upon Receipt, Net 15, Net 30, Net 60)</td>\n</tr>\n<tr>\n<td>phone1</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The first phone number for this account.</td>\n</tr>\n<tr>\n<td>phone1Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Phone 1</td>\n<td>The label for the first phone number.</td>\n</tr>\n<tr>\n<td>phone2</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The second phone number for this account.</td>\n</tr>\n<tr>\n<td>phone2Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Phone 2</td>\n<td>The label for the second phone number</td>\n</tr>\n<tr>\n<td>phone3</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The third phone number for this account</td>\n</tr>\n<tr>\n<td>phone3Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Phone 3</td>\n<td>The label for the third phone number</td>\n</tr>\n<tr>\n<td>reference</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A custom field.</td>\n</tr>\n<tr>\n<td>salutation</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The title for the account-holder</td>\n</tr>\n<tr>\n<td>securityGroup</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The security group for this account</td>\n</tr>\n<tr>\n<td>siteReference</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The county where the account-holder is located</td>\n</tr>\n<tr>\n<td>taxExempt</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether this account is subject to taxes.</td>\n</tr>\n<tr>\n<td>taxID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The identifier of the tax-rate for this account</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The zip-code where the account-holder is located</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this account was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last edited this account.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"55048417-2f78-4b1b-95a7-aa04bee9793f"},{"name":"Account","id":"46a22e4b-a5d4-4b51-965d-723b8903a388","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/accounts/{id}","description":"<h2 id=\"delete-a-specific-account\">Delete a specific Account</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"46a22e4b-a5d4-4b51-965d-723b8903a388"},{"name":"Call Activities","id":"46d13683-50e2-40a3-bacc-5d4751c51588","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/accounts/{id}/callactivities","description":"<h2 id=\"request-call-activities-related-to-a-specific-account\">Request Call Activities related to a specific Account</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}","callactivities"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"46d13683-50e2-40a3-bacc-5d4751c51588"},{"name":"Credits","id":"0240cf54-66b9-4934-a8e4-a61c055333d7","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/accounts/{id}/credits","description":"<h2 id=\"request-credits-related-to-a-specific-account\">Request Credits related to a specific Account</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}","credits"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"0240cf54-66b9-4934-a8e4-a61c055333d7"},{"name":"Mail Activities","id":"0694a70a-5431-44ce-a813-2550ce5e6aff","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/accounts/{id}/mailactivities","description":"<h2 id=\"request-mail-activities-related-to-a-specific-account\">Request Mail Activities related to a specific Account</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}","mailactivities"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"0694a70a-5431-44ce-a813-2550ce5e6aff"},{"name":"Notes","id":"faf1d7b6-0b5d-4dc2-a4d0-7297b11b22d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.servicemonster.net/v1/accounts/{id}/notes","description":"<h2 id=\"request-note-activities-related-to-a-specific-account\">Request Note Activities related to a specific Account</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}","notes"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"faf1d7b6-0b5d-4dc2-a4d0-7297b11b22d3"},{"name":"Orders","id":"ad8df1b6-c499-4cff-b0e6-7663146740b1","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/accounts/{id}/orders","description":"<h2 id=\"request-orders-related-to-a-specific-account\">Request Orders related to a specific Account</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}","orders"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad8df1b6-c499-4cff-b0e6-7663146740b1"},{"name":"Sites","id":"4c579865-09e1-4b92-81cd-d871b2dfc934","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/accounts/{id}/sites","description":"<h2 id=\"request-sites-related-to-a-specific-account\">Request Sites related to a specific Account</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}","sites"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c579865-09e1-4b92-81cd-d871b2dfc934"},{"name":"Tasks","id":"686fb2ea-c256-4016-ac14-aea9312ba8fb","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/accounts/{id}/tasks","description":"<h2 id=\"request-tasks-related-to-a-specific-account\">Request Tasks related to a specific Account</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}","tasks"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"686fb2ea-c256-4016-ac14-aea9312ba8fb"},{"name":"Profile","id":"39103a68-197c-4dd8-91e9-7c3efc87e7a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.servicemonster.net/v1/accounts/{id}/profile","description":"<p>Request the Profile for specified Account</p>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","accounts","{id}","profile"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[{"id":"4d22c9bc-d3db-4ed4-b3a2-15044b3459c8","name":"Profile","originalRequest":{"method":"GET","header":[],"url":"https://api.servicemonster.net/v1/accounts/{id}/profile"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"count\": 1,\r\n    \"items\": [\r\n        {\r\n            \"ProfileID\": \"ebd499dd-7b4c-11ed-8208-f42e5b03a958\",\r\n            \"CompanyID\": \"ed940b4f-4e50-11ed-976e-f722a0e2fbc2\",\r\n            \"AccountID\": \"ebd499bc-7b4c-11ed-8208-f42e5b03a958\",\r\n            \"LastInvoiceDate\": \"2022-12-21T00:00:00\",\r\n            \"LastInvoiceAmount\": 485.00,\r\n            \"LastEmailDate\": \"2022-12-13T20:18:21.897\",\r\n            \"LeadSource\": \"PPC\",\r\n            \"InvoiceCount\": 1,\r\n            \"AverageInvoice\": 485.00,\r\n            \"BalanceDue\": 0.00\r\n        }\r\n    ]\r\n}"}],"_postman_id":"39103a68-197c-4dd8-91e9-7c3efc87e7a8"}],"id":"93cce5f5-1dae-4951-a5df-05d85ecd0cb9","event":[{"listen":"prerequest","script":{"id":"1ea95ff1-d11f-4db9-bf15-a847696e5c72","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"69ab772c-409d-4b35-bcc2-48480687e493","type":"text/javascript","exec":[""]}}],"_postman_id":"93cce5f5-1dae-4951-a5df-05d85ecd0cb9","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Call Activities","item":[{"name":"Call Activities","id":"936ef781-57af-4d14-8815-578a2e8f2975","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/callactivities","description":"<h2 id=\"request-a-list-of-call-activities\">Request a list of Call Activities</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","callactivities"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"936ef781-57af-4d14-8815-578a2e8f2975"},{"name":"Call Activities","id":"884b34c5-f2eb-4268-a029-2acc255acf57","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"accountID\":\"Guid\",\n\t\"subject\":\"String\"\n}"},"url":"https://api.servicemonster.net/v1/callactivities","description":"<h2 id=\"create-a-new-call-activity\">Create a new Call Activity</h2>\n<p>Include the desired properties in the request body to create a call activity. Be sure to provide the required properties. </p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the activity.</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the account to which this activity applies.</td>\n</tr>\n<tr>\n<td>activityCategory</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The category for this activity.</td>\n</tr>\n<tr>\n<td>activityDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this activity begins.</td>\n</tr>\n<tr>\n<td>activitySubType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The Sub-Type of the activity.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this activity belongs.</td>\n</tr>\n<tr>\n<td>completionDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this activity was completed.</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this activity must be completed by.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A note for this activity.</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The priority level of this activity.</td>\n</tr>\n<tr>\n<td>isPrivate</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this activity is private.</td>\n</tr>\n<tr>\n<td>startDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this activity begins.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Pending</td>\n<td>The status for this activity.</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The title of this activity.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The Date and Time that this activity was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last edited this activity.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","callactivities"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"884b34c5-f2eb-4268-a029-2acc255acf57"},{"name":"Call Activity","id":"c18f8807-7eff-4435-8487-1117287c8da1","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/callactivities/{id}","description":"<h2 id=\"request-a-specific-call-activity\">Request a specific Call Activity</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","callactivities","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"c18f8807-7eff-4435-8487-1117287c8da1"},{"name":"Call Activity","id":"99cb7cd9-d264-4227-8726-adb8945eaba5","request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/callactivities/{id}","description":"<h2 id=\"update-a-specific-call-activity\">Update a specific Call Activity.</h2>\n<p>Provide the desired properties in the request body to update the specified Call Activity. </p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the activity.</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the account to which this activity applies.</td>\n</tr>\n<tr>\n<td>activityCategory</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The category for this activity.</td>\n</tr>\n<tr>\n<td>activityDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this activity begins.</td>\n</tr>\n<tr>\n<td>activitySubType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The Sub-Type of the activity.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this activity belongs.</td>\n</tr>\n<tr>\n<td>completionDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this activity was completed.</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this activity must be completed by.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A note for this activity.</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The priority level of this activity.</td>\n</tr>\n<tr>\n<td>isPrivate</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this activity is private.</td>\n</tr>\n<tr>\n<td>startDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this activity begins.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Pending</td>\n<td>The status for this activity.</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The title of this activity.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The Date and Time that this activity was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last edited this activity.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","callactivities","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"99cb7cd9-d264-4227-8726-adb8945eaba5"},{"name":"Call Activity","id":"825fc132-0d5c-4dc0-8b6e-70fb5881f4a6","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/callactivities/{id}","description":"<h2 id=\"delete-a-specific-call-activity\">Delete a specific Call Activity</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","callactivities","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"825fc132-0d5c-4dc0-8b6e-70fb5881f4a6"}],"id":"f3feb61f-a78d-434c-95e1-5b9712973180","_postman_id":"f3feb61f-a78d-434c-95e1-5b9712973180","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Credits","item":[{"name":"Credits","id":"aa887b96-3d09-4dc0-ba0a-844176fca8ec","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/credits","description":"<h2 id=\"request-a-list-of-credits\">Request a list of Credits</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","credits"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa887b96-3d09-4dc0-ba0a-844176fca8ec"},{"name":"Credits","id":"f0a63cc1-5f0c-4a5b-8f34-1e8726118798","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"accountID\":\"Guid\",\n\t\"amount\":\"Decimal\"\n}"},"url":"https://api.servicemonster.net/v1/credits","description":"<h2 id=\"create-a-new-credit\">Create a new Credit</h2>\n<p>Include the desired properties in the request body to create a new credit. Be sure to provide the required properties. </p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>creditID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the credit.</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the account to which this credit applies.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Decimal</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The amount of this credit.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this credit belongs.</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who created this credit.</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this credit was created.</td>\n</tr>\n<tr>\n<td>creditDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date on which the credit will be applied.</td>\n</tr>\n<tr>\n<td>creditMethod</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The payment method for this credit.</td>\n</tr>\n<tr>\n<td>datePosted</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date that this credit was posted to the account.</td>\n</tr>\n<tr>\n<td>memo</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Memo for this credit.</td>\n</tr>\n<tr>\n<td>refNo</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A reference number.</td>\n</tr>\n<tr>\n<td>splits</td>\n<td>Array</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>An array of objects used to apply this payment to one or more orders. Each split object has an amount and an orderID.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this credit was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last edited this credit.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","credits"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0a63cc1-5f0c-4a5b-8f34-1e8726118798"},{"name":"Credit","id":"acdcf304-7c34-4405-88f8-b06291bcea3f","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/credits/{id}","description":"<h2 id=\"request-a-specific-credit\">Request a specific Credit</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","credits","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"acdcf304-7c34-4405-88f8-b06291bcea3f"},{"name":"Credit Splits","id":"9bfa1c61-dbda-4a7f-bb0a-ecb222588288","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/credits/{id}/splits","description":"<h2 id=\"gets-the-payment-splits-for-the-specified-credit-record\">Gets the payment-splits for the specified Credit record</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","credits","{id}","splits"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"9bfa1c61-dbda-4a7f-bb0a-ecb222588288"}],"id":"4ad87da6-6e90-43a1-b4b5-d886be41ebcd","_postman_id":"4ad87da6-6e90-43a1-b4b5-d886be41ebcd","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Employees","item":[{"name":"Employees","id":"47a397a1-34f0-4bc4-9336-f7dd4a2c115e","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/employees/","description":"<p>Request a list of employees. </p>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","employees",""],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"47a397a1-34f0-4bc4-9336-f7dd4a2c115e"},{"name":"Employees Copy","id":"2b5daffd-04ec-4a50-9a55-9c4449eaa12d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/employees/","description":"<p>Request a list of employees. </p>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"path":["employees",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b5daffd-04ec-4a50-9a55-9c4449eaa12d"},{"name":"Employee","id":"e26d12a1-b061-44a6-9581-88c1066b52a1","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/employees/{id}","description":"<p>Request a specific employee.</p>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","employees","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"e26d12a1-b061-44a6-9581-88c1066b52a1"},{"name":"Locations","id":"9fd5634e-7c70-4e8f-a4b8-34aa176f90eb","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/employees/{id}/locations","description":"<p>Request location tracking data for a specific employee.</p>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","employees","{id}","locations"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"9fd5634e-7c70-4e8f-a4b8-34aa176f90eb"},{"name":"Employees","id":"58e307ff-4cfe-4aad-be65-b9b4aeea5882","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"firstName\":\"John\",\n\t\"lastName\":\"Doe\"\n}"},"url":"https://api.servicemonster.net/v1/employees","description":"<h2 id=\"create-a-new-employee\">Create a new Employee.</h2>\n<p>Include the desired properties in the request body to create a new employee. Be sure to provide the required properties. </p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employeeID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the employee.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the employee's company.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The title of the employee.</td>\n</tr>\n<tr>\n<td>dateOfHire</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date of hire for the employee.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether or not this employee is active.</td>\n</tr>\n<tr>\n<td>hidden</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether this account is currently active.</td>\n</tr>\n<tr>\n<td>isTechnician</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Is this employee a technician.</td>\n</tr>\n<tr>\n<td>isCorporate</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Is this a corporate employee.</td>\n</tr>\n<tr>\n<td>isSalesRep</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Is this employee a sales rep.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The first name of the employee.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The last name of the employee.</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Line 1 of the employees address.</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Line 2 of the employees addres.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>City of employee's address.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>State of employee's address.</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Zip-code of employee's address.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Country of employee's address.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Employee's email address.</td>\n</tr>\n<tr>\n<td>phone1</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>First phone number of employee.</td>\n</tr>\n<tr>\n<td>phone1Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Label for first phone number of employee.</td>\n</tr>\n<tr>\n<td>phone2</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Second phone number of employee.</td>\n</tr>\n<tr>\n<td>phone2Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Label for second phone number of employee.</td>\n</tr>\n<tr>\n<td>phone3</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Third phone number of employee.</td>\n</tr>\n<tr>\n<td>phone3Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Label for third phone number of employee.</td>\n</tr>\n<tr>\n<td>ASPUserName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","employees"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"58e307ff-4cfe-4aad-be65-b9b4aeea5882"},{"name":"Employee","id":"f8c1b764-6318-426e-8712-1f1233ae33fa","request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://api.servicemonster.net/v1/employees/{id}","description":"<h2 id=\"update-a-specific-employee\">Update a specific Employee</h2>\n<p>Provide the desired properties in the request body to update the specific employee. </p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employeeID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the employee.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the employee's company.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The title of the employee.</td>\n</tr>\n<tr>\n<td>dateOfHire</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date of hire for the employee.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether or not this employee is active.</td>\n</tr>\n<tr>\n<td>hidden</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether this account is currently active.</td>\n</tr>\n<tr>\n<td>isTechnician</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Is this employee a technician.</td>\n</tr>\n<tr>\n<td>isCorporate</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Is this a corporate employee.</td>\n</tr>\n<tr>\n<td>isSalesRep</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Is this employee a sales rep.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The first name of the employee.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The last name of the employee.</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Line 1 of the employees address.</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Line 2 of the employees addres.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>City of employee's address.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>State of employee's address.</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Zip-code of employee's address.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Country of employee's address.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Employee's email address.</td>\n</tr>\n<tr>\n<td>phone1</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>First phone number of employee.</td>\n</tr>\n<tr>\n<td>phone1Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Label for first phone number of employee.</td>\n</tr>\n<tr>\n<td>phone2</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Second phone number of employee.</td>\n</tr>\n<tr>\n<td>phone2Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Label for second phone number of employee.</td>\n</tr>\n<tr>\n<td>phone3</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Third phone number of employee.</td>\n</tr>\n<tr>\n<td>phone3Label</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Label for third phone number of employee.</td>\n</tr>\n<tr>\n<td>ASPUserName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","employees","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"f8c1b764-6318-426e-8712-1f1233ae33fa"},{"name":"Employee","id":"12388a6c-adc9-4d72-a43e-aa47fd01ba6f","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/employees/{id}","description":"<p>Delete a specific employee.</p>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","employees","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"12388a6c-adc9-4d72-a43e-aa47fd01ba6f"}],"id":"7da95555-9bd9-482e-850f-73eb5f9dec8e","_postman_id":"7da95555-9bd9-482e-850f-73eb5f9dec8e","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Images","item":[{"name":"Images","id":"0f3987a3-0fc4-4de4-9e7e-23b887d1ddf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"orderID\":\"Guid\",\r\n    \"fileData\":\"String\"\r\n}"},"url":"https://api.servicemonster.net/v1/images","description":"<h2 id=\"upload-an-image\">Upload an Image</h2>\n<p>You can POST to this endpoint with an OrderID and a Base64 string containing the image data. You can also supply location data if desired.</p>\n<h3 id=\"properties\">Properties:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th><strong>Required</strong></th>\n<th><strong>Read Only</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderID</td>\n<td>Guid</td>\n<td>yes</td>\n<td>no</td>\n</tr>\n<tr>\n<td>fileData</td>\n<td>String</td>\n<td>yes</td>\n<td>no</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>no</td>\n<td>no</td>\n</tr>\n<tr>\n<td>fileName</td>\n<td>String</td>\n<td>yes</td>\n<td>no</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>Decimal</td>\n<td>no</td>\n<td>no</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>Decimal</td>\n<td>no</td>\n<td>no</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","images"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f3987a3-0fc4-4de4-9e7e-23b887d1ddf5"}],"id":"ead694d4-cf24-4055-bf6a-709db066b03f","_postman_id":"ead694d4-cf24-4055-bf6a-709db066b03f","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Jobs","item":[{"name":"Jobs","id":"1ca4b404-db19-4f34-ba2c-1617fffae79a","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/jobs","description":"<h2 id=\"request-a-list-of-jobs\">Request a list of Jobs</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","jobs"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[{"id":"3ae4b268-2dc5-4910-8dff-7e91e51b66ce","name":"Jobs","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/jobs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 28 Jan 2023 00:34:23 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5840"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 15415,\n    \"items\": [\n        {\n            \"row_number\": 1,\n            \"jobID\": \"6b2c23bd-195f-11e7-a090-b029e5ab07b7\",\n            \"accountID\": \"4640cbfa-9d44-11e6-b8d5-d847350d2ee0\",\n            \"actualDateTimeEnd\": \"2000-04-05T08:00:00\",\n            \"actualDateTimeStart\": \"2000-04-05T07:00:00\",\n            \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n            \"routeID\": \"458ba682-8777-11e2-8e26-00155d467c2b\",\n            \"estDateTimeEnd\": \"2000-04-05T08:00:00\",\n            \"estDateTimeStart\": \"2000-04-05T07:00:00\",\n            \"jobStatus\": \"Cancelled\",\n            \"jobType\": \"Work\",\n            \"note\": \"Broken glass and spilled milk\",\n            \"orderID\": \"6b2c23ba-195f-11e7-a090-b029e5ab07b7\",\n            \"timeStamp\": \"2018-04-24T12:25:11.797\",\n            \"userName\": \"ServiceMonster\",\n            \"onWaitlist\": false,\n            \"techs\": \"Tech 1, Tech 2, Tech 3\"\n        },\n        {\n            \"row_number\": 2,\n            \"jobID\": \"60f3198c-1ae4-11e7-a090-b029e5ab07b7\",\n            \"accountID\": \"4099543f-96ea-11e9-baeb-db9529528bd6\",\n            \"actualDateTimeEnd\": \"2000-06-07T01:00:00\",\n            \"actualDateTimeStart\": \"2000-06-07T00:00:00\",\n            \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n            \"routeID\": \"458ba682-8777-11e2-8e26-00155d467c2b\",\n            \"estDateTimeEnd\": \"2000-06-07T01:00:00\",\n            \"estDateTimeStart\": \"2000-06-07T00:00:00\",\n            \"jobStatus\": \"Cancelled\",\n            \"jobType\": \"Work\",\n            \"orderID\": \"5afaf371-1ae4-11e7-a090-b029e5ab07b7\",\n            \"timeStamp\": \"2018-04-24T12:25:11.857\",\n            \"userName\": \"ServiceMonster\",\n            \"onWaitlist\": false,\n            \"techs\": \"Tech 1\"\n        },\n        {\n            \"row_number\": 3,\n            \"jobID\": \"95306d02-1ed3-11e7-a090-b029e5ab07b7\",\n            \"accountID\": \"95306cf7-1ed3-11e7-a090-b029e5ab07b7\",\n            \"actualDateTimeEnd\": \"2000-11-07T01:00:00\",\n            \"actualDateTimeStart\": \"2000-11-07T00:00:00\",\n            \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n            \"routeID\": \"458ba682-8777-11e2-8e26-00155d467c2b\",\n            \"estDateTimeEnd\": \"2000-11-07T01:00:00\",\n            \"estDateTimeStart\": \"2000-11-07T00:00:00\",\n            \"jobStatus\": \"Cancelled\",\n            \"jobType\": \"Work\",\n            \"orderID\": \"95306cfe-1ed3-11e7-a090-b029e5ab07b7\",\n            \"timeStamp\": \"2018-04-24T12:25:11.92\",\n            \"userName\": \"ServiceMonster\",\n            \"onWaitlist\": false,\n            \"techs\": \"Tech 1, Tech 3\"\n        },\n        {\n            \"row_number\": 4,\n            \"jobID\": \"f8550842-1413-11e9-9adf-c447bb73b9d0\",\n            \"accountID\": \"411aabdb-4b99-11e2-bf0a-00155d467c2b\",\n            \"actualDateTimeEnd\": \"2001-07-31T15:30:00\",\n            \"actualDateTimeStart\": \"2001-07-31T12:30:00\",\n            \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n            \"routeID\": \"3511ace9-f899-11e8-9adf-c447bb73b9d0\",\n            \"estDateTimeEnd\": \"2001-07-31T15:30:00\",\n            \"estDateTimeStart\": \"2001-07-31T12:30:00\",\n            \"jobStatus\": \"Scheduled\",\n            \"jobType\": \"Work\",\n            \"orderID\": \"f855083f-1413-11e9-9adf-c447bb73b9d0\",\n            \"timeStamp\": \"2019-01-10T01:39:28.357\",\n            \"userName\": \"servicemonster\",\n            \"onWaitlist\": false\n        },\n        {\n            \"row_number\": 5,\n            \"jobID\": \"a770445d-9091-11ea-afe1-a699ad1ebdd6\",\n            \"accountID\": \"c1b9f02f-315a-11ea-b228-94ccf8e56dd6\",\n            \"actualDateTimeEnd\": \"2005-07-24T11:00:00\",\n            \"actualDateTimeStart\": \"2005-07-24T10:00:00\",\n            \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n            \"routeID\": \"c0f621d3-acc7-11e9-a2a0-b2b59c3837cf\",\n            \"estDateTimeEnd\": \"2005-07-24T11:00:00\",\n            \"estDateTimeStart\": \"2005-07-24T10:00:00\",\n            \"jobStatus\": \"Scheduled\",\n            \"jobType\": \"Work\",\n            \"orderID\": \"5c378c2f-8e53-11ea-afe1-a699ad1ebdd6\",\n            \"timeStamp\": \"2020-05-07T13:36:43.447\",\n            \"userName\": \"jmonster15\",\n            \"onWaitlist\": false,\n            \"techs\": \"Tech Plus, Tech 4, Tech 2, Tech 8\"\n        },\n        {\n            \"row_number\": 6,\n            \"jobID\": \"c4ffa177-9091-11ea-837c-a12965d10fc8\",\n            \"accountID\": \"60f5a94a-1dec-e111-834a-002590274606\",\n            \"actualDateTimeEnd\": \"2005-07-24T11:00:00\",\n            \"actualDateTimeStart\": \"2005-07-24T10:30:00\",\n            \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n            \"routeID\": \"d058954c-d968-11e9-b8a4-d528a59d56d7\",\n            \"estDateTimeEnd\": \"2005-07-24T11:00:00\",\n            \"estDateTimeStart\": \"2005-07-24T10:30:00\",\n            \"jobStatus\": \"Scheduled\",\n            \"jobType\": \"Work\",\n            \"orderID\": \"169e5409-8bc3-11ea-bbcb-873da4f37bc8\",\n            \"timeStamp\": \"2020-05-07T13:37:29.567\",\n            \"userName\": \"jmonster15\",\n            \"onWaitlist\": false,\n            \"techs\": \"Tech 4\"\n        },\n        {\n            \"row_number\": 7,\n            \"jobID\": \"d9053dca-9091-11ea-9238-ee65d7a3efc8\",\n            \"accountID\": \"c1b9f02f-315a-11ea-b228-94ccf8e56dd6\",\n            \"actualDateTimeEnd\": \"2005-07-25T09:00:00\",\n            \"actualDateTimeStart\": \"2005-07-25T08:30:00\",\n            \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n            \"routeID\": \"d058954c-d968-11e9-b8a4-d528a59d56d7\",\n            \"estDateTimeEnd\": \"2005-07-25T09:00:00\",\n            \"estDateTimeStart\": \"2005-07-25T08:30:00\",\n            \"jobStatus\": \"Scheduled\",\n            \"jobType\": \"Work\",\n            \"orderID\": \"7013b9fe-8e52-11ea-a71c-95ed8e0828c8\",\n            \"timeStamp\": \"2020-05-07T13:38:00.143\",\n            \"userName\": \"jmonster15\",\n            \"onWaitlist\": false,\n            \"techs\": \"Tech 8, Tech 7\"\n        },\n        {\n            \"row_number\": 8,\n            \"jobID\": \"f7c32e4f-1dec-e111-834a-002590274606\",\n            \"accountID\": \"e6e9a94a-1dec-e111-834a-002590274606\",\n            \"actualDateTimeEnd\": \"2006-10-01T15:00:00\",\n            \"actualDateTimeStart\": \"2006-10-01T13:00:00\",\n            \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n            \"routeID\": \"e5108e4f-1dec-e111-834a-002590274606\",\n            \"estDateTimeEnd\": \"2006-10-01T15:00:00\",\n            \"estDateTimeStart\": \"2006-10-01T13:00:00\",\n            \"jobStatus\": \"Complete\",\n            \"jobType\": \"Work\",\n            \"note\": \"Side door entrance\",\n            \"orderID\": \"575fa84d-1dec-e111-834a-002590274606\",\n            \"timeStamp\": \"2019-08-02T15:57:57.387\",\n            \"userName\": \"pfsupport\"\n        },\n        {\n            \"row_number\": 9,\n            \"jobID\": \"fac32e4f-1dec-e111-834a-002590274606\",\n            \"accountID\": \"e1e9a94a-1dec-e111-834a-002590274606\",\n            \"actualDateTimeEnd\": \"2006-10-03T12:30:00\",\n            \"actualDateTimeStart\": \"2006-10-03T10:30:00\",\n            \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n            \"routeID\": \"e6108e4f-1dec-e111-834a-002590274606\",\n            \"estDateTimeEnd\": \"2006-10-03T12:30:00\",\n            \"estDateTimeStart\": \"2006-10-03T10:30:00\",\n            \"jobStatus\": \"Cancelled\",\n            \"jobType\": \"Work\",\n            \"orderID\": \"5a5fa84d-1dec-e111-834a-002590274606\",\n            \"timeStamp\": \"2018-04-24T12:25:12.03\",\n            \"userName\": \"ServiceMonster\",\n            \"techs\": \"Tech Extra\"\n        },\n        {\n            \"row_number\": 10,\n            \"jobID\": \"f9c32e4f-1dec-e111-834a-002590274606\",\n            \"accountID\": \"efe9a94a-1dec-e111-834a-002590274606\",\n            \"actualDateTimeEnd\": \"2006-10-03T13:00:00\",\n            \"actualDateTimeStart\": \"2006-10-03T11:00:00\",\n            \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n            \"routeID\": \"e5108e4f-1dec-e111-834a-002590274606\",\n            \"estDateTimeEnd\": \"2006-10-03T13:00:00\",\n            \"estDateTimeStart\": \"2006-10-03T11:00:00\",\n            \"jobStatus\": \"Cancelled\",\n            \"jobType\": \"Work\",\n            \"orderID\": \"595fa84d-1dec-e111-834a-002590274606\",\n            \"timeStamp\": \"2018-04-24T12:25:12.077\",\n            \"userName\": \"ServiceMonster\"\n        }\n    ]\n}"}],"_postman_id":"1ca4b404-db19-4f34-ba2c-1617fffae79a"},{"name":"Jobs","id":"a7cad47c-a7af-4af1-91e6-c961380382d6","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"accountID\":\"GUID\",\n\t\"routeID\":\"GUID\",\n\t\"estDateTimeEnd\":\"DateTime\",\n\t\"estDateTimeStart\":\"DateTime\",\n\t\"orderID\":\"GUID\"\n}"},"url":"https://api.servicemonster.net/v1/jobs","description":"<h2 id=\"create-a-new-job\">Create a new Job</h2>\n<p>Include the desired properties in the request body to create a new Job. Be sure to provide the required properties. </p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>jobID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The GUID identifier for this job.</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The GUID of the account that this job is for.</td>\n</tr>\n<tr>\n<td>actualDateTimeEnd</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>When this job actually ended.</td>\n</tr>\n<tr>\n<td>actualDateTimeStart</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>When this job actually began.</td>\n</tr>\n<tr>\n<td>colorOverride</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The color that this job will appear as if not using default.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this job belongs.</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who created this job.</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this job was created.</td>\n</tr>\n<tr>\n<td>routeID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the route that will be used on this job.</td>\n</tr>\n<tr>\n<td>estDateTimeEnd</td>\n<td>DateTime</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time at which this job is estimated to end.</td>\n</tr>\n<tr>\n<td>estDateTimeStart</td>\n<td>DateTime</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time at which this job is estimated to begin.</td>\n</tr>\n<tr>\n<td>jobStatus</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Scheduled</td>\n<td>The status of this job.</td>\n</tr>\n<tr>\n<td>jobType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Work</td>\n<td>What type of job this is.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A user-defined note for this job.</td>\n</tr>\n<tr>\n<td>orderID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the Order for this job.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this job was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","jobs"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7cad47c-a7af-4af1-91e6-c961380382d6"},{"name":"Job","id":"391e3f1e-1937-4477-b397-a53fa5cdc1a1","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/jobs/{id}","description":"<h2 id=\"request-a-specific-job\">Request a specific job</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","jobs","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[{"id":"7c3b7710-6df6-4262-88d3-a67d78eb8987","name":"Job","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/jobs/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 28 Jan 2023 00:37:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"857"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"jobID\": \"6b2c23bd-195f-11e7-a090-b029e5ab07b7\",\n    \"accountID\": \"4640cbfa-9d44-11e6-b8d5-d847350d2ee0\",\n    \"actualDateTimeEnd\": \"4/5/2000 9:00 AM\",\n    \"actualDateTimeStart\": \"4/5/2000 8:00 AM\",\n    \"arrivalWindow\": \"8:00 AM - 10:00 AM\",\n    \"colorOverride\": \"\",\n    \"companyID\": \"7b63b42c-dfb3-e111-b4ef-0026b97e28d1\",\n    \"createdBy\": \"ServiceMonster\",\n    \"createdOn\": \"4/4/2017 10:52 AM\",\n    \"jobColor\": \"Silver\",\n    \"routeID\": \"458ba682-8777-11e2-8e26-00155d467c2b\",\n    \"estDateTimeEnd\": \"4/5/2000 8:00 AM\",\n    \"estDateTimeStart\": \"4/5/2000 7:00 AM\",\n    \"jobStatus\": \"Cancelled\",\n    \"jobType\": \"Work\",\n    \"note\": \"Broken glass and spilled milk\",\n    \"orderID\": \"6b2c23ba-195f-11e7-a090-b029e5ab07b7\",\n    \"timeStamp\": \"4/24/2018 12:25:11 PM\",\n    \"userName\": \"ServiceMonster\",\n    \"adminNote\": \"\",\n    \"eventID\": \"\",\n    \"onWaitList\": \"False\",\n    \"employeeIDs\": [\n        \"3dd4f430-efe8-11e6-99e6-95805913e8b9\",\n        \"9c4c1e92-f6e4-11e6-a090-b029e5ab07b7\",\n        \"d89c1f11-154e-11e7-a090-b029e5ab07b7\"\n    ]\n}"}],"_postman_id":"391e3f1e-1937-4477-b397-a53fa5cdc1a1"},{"name":"Job","id":"532ce4b9-1393-4f8e-92ed-61f33c21e8a1","request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.servicemonster.net/v1/jobs/{id}","description":"<h2 id=\"update-a-specific-job\">Update a specific job</h2>\n<p>Provide the desired properties in the request body to update the specified Job.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>jobID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The GUID identifier for this job.</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The GUID of the account that this job is for.</td>\n</tr>\n<tr>\n<td>actualDateTimeEnd</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>When this job actually ended.</td>\n</tr>\n<tr>\n<td>actualDateTimeStart</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>When this job actually began.</td>\n</tr>\n<tr>\n<td>colorOverride</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The color that this job will appear as if not using default.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this job belongs.</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who created this job.</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this job was created.</td>\n</tr>\n<tr>\n<td>routeID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the route that will be used on this job.</td>\n</tr>\n<tr>\n<td>estDateTimeEnd</td>\n<td>DateTime</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time at which this job is estimated to end.</td>\n</tr>\n<tr>\n<td>estDateTimeStart</td>\n<td>DateTime</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time at which this job is estimated to begin.</td>\n</tr>\n<tr>\n<td>jobStatus</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Scheduled</td>\n<td>The status of this job.</td>\n</tr>\n<tr>\n<td>jobType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Work</td>\n<td>What type of job this is.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A user-defined note for this job.</td>\n</tr>\n<tr>\n<td>orderID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the Order for this job.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this job was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","jobs","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"532ce4b9-1393-4f8e-92ed-61f33c21e8a1"},{"name":"Job","id":"c9ff035b-5e08-4eb3-9c9b-26075b15462e","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/jobs/{id}","description":"<h2 id=\"delete-a-specific-job\">Delete a specific job</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","jobs","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9ff035b-5e08-4eb3-9c9b-26075b15462e"},{"name":"Timelogs","id":"6d802b10-b55c-4915-b7ba-2cf7c88e3b77","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/jobs/{id}/timelogs","description":"<h2 id=\"request-timelogs-related-to-a-specific-job\">Request Timelogs related to a specific Job</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","jobs","{id}","timelogs"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d802b10-b55c-4915-b7ba-2cf7c88e3b77"}],"id":"77d7c3b0-edd9-44c9-a6eb-873312d0c169","_postman_id":"77d7c3b0-edd9-44c9-a6eb-873312d0c169","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Lead Sources","item":[{"name":"Lead Sources","id":"ea8a55aa-f08c-487a-84eb-9000e7ea2170","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/leadsources","description":"<h2 id=\"request-a-list-of-lead-sources\">Request a list of Lead Sources</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","leadsources"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"ea8a55aa-f08c-487a-84eb-9000e7ea2170"},{"name":"Lead Sources","id":"bfdbffbb-3919-44d1-b4e6-334a993b9966","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"String\"\n}"},"url":"https://api.servicemonster.net/v1/leadsources","description":"<h2 id=\"create-a-new-lead-source\">Create a new Lead Source</h2>\n<p>Include the desired properties in the request body to create a new lead source. Be sure to provide the required properties.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>campaignID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The GUID ID for this lead-source.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether or not this lead-source is active.</td>\n</tr>\n<tr>\n<td>category</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The category for this lead-source.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this lead-source belongs.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A description for this lead-source</td>\n</tr>\n<tr>\n<td>fmsCampaignID</td>\n<td>Integer</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the FillMySchedule campaign that is related to this lead-source.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>A name for this lead-source.</td>\n</tr>\n<tr>\n<td>runOptionsXml</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>An XML file that defines the run option for this lead-source.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The time and date that this lead-source was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The username of the person who last modified this lead-source.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","leadsources"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"bfdbffbb-3919-44d1-b4e6-334a993b9966"},{"name":"Lead Source","id":"d5345638-3d8b-4e43-9f8b-db26760887fb","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/leadsources/{id}","description":"<h2 id=\"request-a-specific-lead-source\">Request a specific Lead Source</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","leadsources","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5345638-3d8b-4e43-9f8b-db26760887fb"},{"name":"Lead Source","id":"62fb98f7-f77a-4528-a6e1-f7a03fa90acb","request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/leadsources/{id}","description":"<h2 id=\"update-a-specific-lead-source\">Update a specific Lead Source</h2>\n<p>Provide the desired properties in the request body to update the specified Lead Source.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>campaignID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The GUID ID for this lead-source.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether or not this lead-source is active.</td>\n</tr>\n<tr>\n<td>category</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>LeadSource</td>\n<td>The category for this lead-source.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this lead-source belongs.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A description for this lead-source</td>\n</tr>\n<tr>\n<td>fmsCampaignID</td>\n<td>Integer</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the FillMySchedule campaign that is related to this lead-source.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>A name for this lead-source.</td>\n</tr>\n<tr>\n<td>runOptionsXml</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>An XML file that defines the run option for this lead-source.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The time and date that this lead-source was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The username of the person who last modified this lead-source.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","leadsources","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"62fb98f7-f77a-4528-a6e1-f7a03fa90acb"},{"name":"Lead Source","id":"98c16453-30b3-4f2c-a6d1-ddfa4b442826","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/leadsources/{id}","description":"<h2 id=\"delete-a-specific-lead-source\">Delete a specific Lead Source</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","leadsources","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"98c16453-30b3-4f2c-a6d1-ddfa4b442826"}],"id":"53bb17a3-7058-47fa-997c-bcf2df1cd313","_postman_id":"53bb17a3-7058-47fa-997c-bcf2df1cd313","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Line Items","item":[{"name":"Line Items","id":"1d21d242-a340-4412-a995-90780f84e629","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"itemID\":\"Guid\",\n\t\"orderID\":\"Guid\"\n}"},"url":"https://api.servicemonster.net/v1/lineitems","description":"<h2 id=\"create-a-new-line-item\">Create a new Line Item</h2>\n<p>Include the desired properties in the request body to create a Line Item. Be sure to provide the required properties.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lineItemID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The GUID for this line item.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this line-item belongs.</td>\n</tr>\n<tr>\n<td>itemID</td>\n<td>Guid</td>\n<td>No</td>\n<td>-</td>\n<td>-</td>\n<td>The GUID for the Order Item from which this Line Item is derived. If no ItemID is supplied, a Price and Quantity can be supplied to create an ad hoc Line Item.</td>\n</tr>\n<tr>\n<td>orderID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The GUID of the order to which this line-item belongs.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The price for this line-item.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The quantity of items on this line-item.</td>\n</tr>\n<tr>\n<td>rowIndex</td>\n<td>Integer</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The index of the row for this line-item.</td>\n</tr>\n<tr>\n<td>serviceDate</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date that the service described on the line-item was performed.</td>\n</tr>\n<tr>\n<td>taxed</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False/Derived</td>\n<td>Whether or not tax is applicable to this line-item. If an ItemID is supplied, the default value will be taken from the Order Item.</td>\n</tr>\n<tr>\n<td>total</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The total cost for this line-item.</td>\n</tr>\n<tr>\n<td>upsale</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False/Derived</td>\n<td>Whether or not this line-item is an upsell. If an ItemID is supplied, the default value will be taken from the Order Item.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>If an ItemID is supplied, the default value will be taken from the Order Item.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","lineitems"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d21d242-a340-4412-a995-90780f84e629"},{"name":"Line Items Copy","id":"e74deef2-517b-4222-ba8a-99df201cab09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"itemID\":\"Guid\",\n\t\"orderID\":\"Guid\"\n}"},"url":"west-test.servicemonster.net/smapi/v1/lineitems","description":"<h2 id=\"create-a-new-line-item\">Create a new Line Item</h2>\n<p>Include the desired properties in the request body to create a Line Item. Be sure to provide the required properties. </p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lineItemID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The GUID for this line item.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this line-item belongs.</td>\n</tr>\n<tr>\n<td>itemID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The GUID for the item on this line-item.</td>\n</tr>\n<tr>\n<td>orderID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The GUID of the order to which this line-item belongs.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The price for this line-item.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The quantity of items on this line-item.</td>\n</tr>\n<tr>\n<td>rowIndex</td>\n<td>Integer</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The index of the row for this line-item.</td>\n</tr>\n<tr>\n<td>serviceDate</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date that the service described on the line-item was performed.</td>\n</tr>\n<tr>\n<td>taxed</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not tax is applicable to this line-item.</td>\n</tr>\n<tr>\n<td>total</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The total cost for this line-item.</td>\n</tr>\n<tr>\n<td>upsale</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this line-item is an upsell.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"path":["smapi","v1","lineitems"],"host":["west-test","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"e74deef2-517b-4222-ba8a-99df201cab09"},{"name":"Line Item","id":"62855b4e-dc6c-42ce-87de-327f025333de","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/lineitems/{id}","description":"<h2 id=\"request-a-specific-line-item\">Request a specific Line Item</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","lineitems","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"62855b4e-dc6c-42ce-87de-327f025333de"},{"name":"Line Item","id":"764d6ca0-5315-4bc6-abc6-feab851fe317","request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/lineitems/{id}","description":"<h2 id=\"update-a-specific-line-item\">Update a specific Line Item</h2>\n<p>Provide the desired properties in the request body to update the specified Line Item.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lineItemID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The GUID for this line item.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this line-item belongs.</td>\n</tr>\n<tr>\n<td>itemID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The GUID for the item on this line-item.</td>\n</tr>\n<tr>\n<td>orderID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The GUID of the order to which this line-item belongs.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The price for this line-item.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The quantity of items on this line-item.</td>\n</tr>\n<tr>\n<td>rowIndex</td>\n<td>Integer</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The index of the row for this line-item.</td>\n</tr>\n<tr>\n<td>serviceDate</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date that the service described on the line-item was performed.</td>\n</tr>\n<tr>\n<td>taxed</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not tax is applicable to this line-item.</td>\n</tr>\n<tr>\n<td>total</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The total cost for this line-item.</td>\n</tr>\n<tr>\n<td>upsale</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this line-item is an upsell.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","lineitems","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"764d6ca0-5315-4bc6-abc6-feab851fe317"},{"name":"Line Item","id":"d54f023e-8fd8-48e4-9abe-1cad5128307b","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/lineitems/{id}","description":"<h2 id=\"delete-a-specific-line-item\">Delete a specific Line Item</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","lineitems","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d54f023e-8fd8-48e4-9abe-1cad5128307b"}],"id":"d0bf1201-1848-4f13-bc08-a3762f7f9c32","_postman_id":"d0bf1201-1848-4f13-bc08-a3762f7f9c32","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Lists","item":[{"name":"List","id":"27d7c052-abc5-44be-a5f3-68b3196fcbac","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/lists/{listname}","description":"<h2 id=\"retrieves-the-list-items-for-the-specified-list\">Retrieves the List Items for the specified List</h2>\n<p>Provide the list name in the url to retrieve the list items for the specified list. </p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>listItemID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The GUID ID for this List Item.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The value for this List Item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>List Names</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>List Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>account</td>\n</tr>\n<tr>\n<td>account</td>\n</tr>\n<tr>\n<td>activity</td>\n</tr>\n<tr>\n<td>activity</td>\n</tr>\n<tr>\n<td>activity</td>\n</tr>\n<tr>\n<td>activity</td>\n</tr>\n<tr>\n<td>activity</td>\n</tr>\n<tr>\n<td>Order</td>\n</tr>\n<tr>\n<td>Order</td>\n</tr>\n<tr>\n<td>OrderItem</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","lists","{listname}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"27d7c052-abc5-44be-a5f3-68b3196fcbac"}],"id":"dfadec09-c61b-4b3c-aa61-cf6df46f289e","description":"<p>Get the list values that correspond to the values in SM6 Settings &gt; Picklists</p>\n<p>Supply the list name as it is displayed in SM6 and URL encoded. Omit any slashes and extra spaces.</p>\n<p>eg: \"Products / Services Groups\" should be supplied as /lists/products%20services%20groups</p>\n","_postman_id":"dfadec09-c61b-4b3c-aa61-cf6df46f289e","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Mail Activities","item":[{"name":"Mail Activities","id":"a32f04f7-5c6c-4187-ac00-c6fcf83b10b6","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/mailactivities","description":"<h2 id=\"request-a-list-of-mail-activities\">Request a list of Mail Activities</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","mailactivities"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"a32f04f7-5c6c-4187-ac00-c6fcf83b10b6"},{"name":"Mail Activity","id":"db6deaf1-5884-4d3f-b4f1-11c0420a9301","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/mailactivities/{id}","description":"<h2 id=\"request-a-specific-mail-activity\">Request a specific Mail Activity</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","mailactivities","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"db6deaf1-5884-4d3f-b4f1-11c0420a9301"}],"id":"b7ffba9b-5774-4e22-b5f5-a71f007337cf","_postman_id":"b7ffba9b-5774-4e22-b5f5-a71f007337cf","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Notes","item":[{"name":"Notes","id":"cd15c7aa-9989-4b0f-a652-1b269d21cd07","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/notes","description":"<h2 id=\"request-a-list-of-notes\">Request a list of Notes</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notes"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd15c7aa-9989-4b0f-a652-1b269d21cd07"},{"name":"Notes","id":"4f5065b8-74e8-4dc7-8192-751de839ae64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.servicemonster.net/v1/notes","description":"<h2 id=\"create-a-new-note\">Create a new Note.</h2>\n<p>Creates an Activity of the type Note that can be attached to  an Account, an Order, or a Site.</p>\n<p><strong>Allowed Roles</strong></p>\n<ul>\n<li>Administrator</li>\n<li>Manager</li>\n<li>SuperUser</li>\n<li>SuperTech</li>\n<li>Technician</li>\n</ul>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityID</td>\n<td>Guid</td>\n<td>No</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID for this Note.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>No</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID for this Company.</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>No</td>\n<td>No</td>\n<td>-</td>\n<td>The ID of the Account to which this Note belongs.</td>\n</tr>\n<tr>\n<td>orderID</td>\n<td>Guid</td>\n<td>No</td>\n<td>No</td>\n<td>-</td>\n<td>The ID of the Order to which this Note belongs.</td>\n</tr>\n<tr>\n<td>siteID</td>\n<td>Guid</td>\n<td>No</td>\n<td>No</td>\n<td>-</td>\n<td>The ID of the Site to which this Note belongs. (note: you can not supply both a siteID and an orderID)</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>String</td>\n<td>Yes</td>\n<td>No</td>\n<td>-</td>\n<td>Subject of the Note.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>No</td>\n<td>No</td>\n<td>-</td>\n<td>The body of the Note.</td>\n</tr>\n<tr>\n<td>showOnSchedule</td>\n<td>Boolean</td>\n<td>No</td>\n<td>No</td>\n<td>-</td>\n<td>Whether or not this Note should be shown on the schedule.</td>\n</tr>\n<tr>\n<td>startDateTime</td>\n<td>DateTime</td>\n<td>No*</td>\n<td>No</td>\n<td>-</td>\n<td>Note start time. *This is Required if showOnSchedule is True.</td>\n</tr>\n<tr>\n<td>endDateTime</td>\n<td>DateTime</td>\n<td>No*</td>\n<td>No</td>\n<td>-</td>\n<td>Note end time. *This is Required if showOnSchedule is True.</td>\n</tr>\n<tr>\n<td>routeID</td>\n<td>Guid</td>\n<td>No*</td>\n<td>No</td>\n<td>-</td>\n<td>The ID of the Route on which this Note is shown on the schedule. *This is Required if showOnSchedule is True.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>No</td>\n<td>Yes</td>\n<td>-</td>\n<td>UserName of the user who last updated this record</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>No</td>\n<td>Yes</td>\n<td>-</td>\n<td>Date this record was last updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notes"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f5065b8-74e8-4dc7-8192-751de839ae64"},{"name":"Note","id":"f92b93a3-493b-4d44-886d-03f6a56e1c30","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/notes/{id}","description":"<h2 id=\"request-a-specific-note\">Request a specific Note</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notes","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"f92b93a3-493b-4d44-886d-03f6a56e1c30"}],"id":"2236a832-317d-4a1f-8fb6-623e125004ae","_postman_id":"2236a832-317d-4a1f-8fb6-623e125004ae","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Orders","item":[{"name":"Orders","id":"b1f2584e-c3af-4dcd-ac91-67e8e0b9070b","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders","description":"<h2 id=\"request-a-list-of-orders\">Request a list of Orders</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1f2584e-c3af-4dcd-ac91-67e8e0b9070b"},{"name":"Orders","id":"a860ce4c-7fd2-411b-91c2-473450126bf0","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"accountID\":\"Guid\",\n\t\"siteID\":\"Guid\"\n}"},"url":"https://api.servicemonster.net/v1/orders","description":"<h2 id=\"create-a-new-order\">Create a new Order</h2>\n<p>Include the desired properties in the request body to create a new Order. Be sure to provide the required properties.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The Order record identifier.</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the Account to which this Order belongs.</td>\n</tr>\n<tr>\n<td>actionItem</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>User-defined field for work order actions. ie Moving Furniture.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the company to which this order belongs.</td>\n</tr>\n<tr>\n<td>leadsourceID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the Lead Source to which this order belongs.</td>\n</tr>\n<tr>\n<td>correction</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A value used to adjust the order's total.</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who created this order.</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this order was created.</td>\n</tr>\n<tr>\n<td>dateCompleted</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date that this order was completed, populated automatically.</td>\n</tr>\n<tr>\n<td>dateCreated</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this order was created. Can be changed by user.</td>\n</tr>\n<tr>\n<td>dateOfLoss</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Date that damage or property-loss occurred.</td>\n</tr>\n<tr>\n<td>datePosted</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date that this order was posted.</td>\n</tr>\n<tr>\n<td>discountPercent</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>What percent to discount this order, if any. (0-100)</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date by which this order is due.</td>\n</tr>\n<tr>\n<td>externalRefID</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Hidden field can be used to store the ID that this order uses in a different system. ie Quickbooks.</td>\n</tr>\n<tr>\n<td>flagForReview</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this order needs to be reviewed.</td>\n</tr>\n<tr>\n<td>grandTotal</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Total after Tax</td>\n</tr>\n<tr>\n<td>group</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Commonly used to categorize the orders for accounting or marketing purposes.</td>\n</tr>\n<tr>\n<td>lineItems</td>\n<td>Array</td>\n<td></td>\n<td></td>\n<td></td>\n<td>An array of LIneItem objects</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A user-defined note field for this order.</td>\n</tr>\n<tr>\n<td>orderNumber</td>\n<td>Integer</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The order number that is visible to the user.</td>\n</tr>\n<tr>\n<td>orderType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Work Order</td>\n<td>What type of order this is. (Work Order, Invoice, Estimate, Voided)</td>\n</tr>\n<tr>\n<td>originalType</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>What type of order this was when it was created.</td>\n</tr>\n<tr>\n<td>postToAccounting</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this order will be posted to accounting.</td>\n</tr>\n<tr>\n<td>printJobStartDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>An optional date field that will override the order print out's job-date.</td>\n</tr>\n<tr>\n<td>printStyleID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the print-style to be used for this order.</td>\n</tr>\n<tr>\n<td>RefNumber</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Used to tie this order to another record.</td>\n</tr>\n<tr>\n<td>salesRepID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the sales rep who placed this order.</td>\n</tr>\n<tr>\n<td>siteID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the site for this order.</td>\n</tr>\n<tr>\n<td>subGroup</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the tax-rate that this order uses.</td>\n</tr>\n<tr>\n<td>taxRate</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The decimal tax-rate that this order uses if a taxID is not supplied.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this order was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last modified this order.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"a860ce4c-7fd2-411b-91c2-473450126bf0"},{"name":"Order","id":"1fc7c738-3a1f-49d5-990d-2ee0b0f3ded4","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}","description":"<h2 id=\"request-a-specific-order\">Request a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"1fc7c738-3a1f-49d5-990d-2ee0b0f3ded4"},{"name":"Order","id":"a908f657-50e1-4cae-9dc7-a89960e5f1ae","request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}","description":"<h2 id=\"update-a-specific-order\">Update a specific Order</h2>\n<p>Provide the desired properties in the request body to update the specified Order.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The order record identifier.</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the account to which this order belongs.</td>\n</tr>\n<tr>\n<td>actionItem</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>User-defined field for work order actions. ie Moving Furniture.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the company to which this order belongs.</td>\n</tr>\n<tr>\n<td>correction</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A value used to adjust the order's total.</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who created this order.</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this order was created.</td>\n</tr>\n<tr>\n<td>dateCompleted</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date that this order was completed, populated automatically.</td>\n</tr>\n<tr>\n<td>dateCreated</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this order was created. Can be changed by user.</td>\n</tr>\n<tr>\n<td>dateOfLoss</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Date that damage or property-loss occurred.</td>\n</tr>\n<tr>\n<td>datePosted</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date that this order was posted.</td>\n</tr>\n<tr>\n<td>discountPercent</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>What percent to discount this order, if any. (0-100)</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date by which this order is due.</td>\n</tr>\n<tr>\n<td>externalRefID</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Hidden field can be used to store the ID that this order uses in a different system. ie Quickbooks.</td>\n</tr>\n<tr>\n<td>flagForReview</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this order needs to be reviewed.</td>\n</tr>\n<tr>\n<td>group</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Commonly used to categorize the orders for accounting or marketing purposes.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A user-defined note field for this order.</td>\n</tr>\n<tr>\n<td>orderNumber</td>\n<td>Integer</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The order number that is visible to the user.</td>\n</tr>\n<tr>\n<td>orderType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>Work Order</td>\n<td>What type of order this is. (Work Order, Invoice, Estimate, Voided)</td>\n</tr>\n<tr>\n<td>originalType</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>What type of order this was when it was created.</td>\n</tr>\n<tr>\n<td>postToAccounting</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this order <em>will be</em> posted to accounting. <strong>NOTE</strong>: This is the OPPOSITE of the \"posted\" field in ServiceMonster.</td>\n</tr>\n<tr>\n<td>printJobStartDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>An optional date field that will override the order print out's job-date.</td>\n</tr>\n<tr>\n<td>printStyleID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the print-style to be used for this order.</td>\n</tr>\n<tr>\n<td>RefNumber</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Used to tie this order to another record.</td>\n</tr>\n<tr>\n<td>salesRepID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the sales rep who placed this order.</td>\n</tr>\n<tr>\n<td>siteID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the site for this order.</td>\n</tr>\n<tr>\n<td>subGroup</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the tax-rate that this order uses.</td>\n</tr>\n<tr>\n<td>taxRate</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The decimal tax-rate that this order uses if a taxID is not supplied.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this order was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last modified this order.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"a908f657-50e1-4cae-9dc7-a89960e5f1ae"},{"name":"Order","id":"06e3a7ba-8546-4d06-be8f-9af4621940b7","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}","description":"<h2 id=\"delete-a-specific-order\">Delete a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"06e3a7ba-8546-4d06-be8f-9af4621940b7"},{"name":"Call Activities","id":"38b34ed9-aebf-40e7-8893-3dc7f9dfe420","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}/callactivities","description":"<h2 id=\"request-a-list-of-call-activities-related-to-a-specific-order\">Request a list of Call Activities related to a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}","callactivities"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"38b34ed9-aebf-40e7-8893-3dc7f9dfe420"},{"name":"Credits","id":"2011fc4d-71de-4971-9987-0157ad5bdec9","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}/credits","description":"<h2 id=\"request-a-list-of-credit-records-related-to-a-specific-order\">Request a list of Credit records related to a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}","credits"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"2011fc4d-71de-4971-9987-0157ad5bdec9"},{"name":"Images","id":"2ea7b76f-610b-4560-a751-b5862786a163","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}/images","description":"<h2 id=\"request-a-list-of-image-urls-related-to-a-specific-order\">Request a list of Image URLs related to a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}","images"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ea7b76f-610b-4560-a751-b5862786a163"},{"name":"Jobs","id":"1f6eade5-48b2-4564-b7e0-cb457936bec3","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}/jobs","description":"<h2 id=\"gets-a-list-of-jobs-related-to-a-specific-order\">Gets a list of jobs related to a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}","jobs"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"1f6eade5-48b2-4564-b7e0-cb457936bec3"},{"name":"Line Items","id":"0b2e2bfc-034c-4e4d-b3e2-d90ed8cdb46f","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}/lineitems","description":"<h2 id=\"request-a-list-of-line-items-related-to-a-specific-order\">Request a list of Line Items related to a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}","lineitems"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b2e2bfc-034c-4e4d-b3e2-d90ed8cdb46f"},{"name":"Mail Activities","id":"6602eb8f-6cc2-434b-b3d1-092914e14dcd","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}/mailactivities","description":"<h2 id=\"request-a-list-of-mail-activities-related-to-a-specific-order\">Request a list of Mail Activities related to a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}","mailactivities"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"6602eb8f-6cc2-434b-b3d1-092914e14dcd"},{"name":"Notes","id":"8a7cb996-0755-4c47-9b00-6819a0c1b7f6","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}/notes","description":"<h2 id=\"request-a-list-of-note-activities-related-to-a-specific-order\">Request a list of Note Activities related to a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}","notes"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a7cb996-0755-4c47-9b00-6819a0c1b7f6"},{"name":"PDF","id":"d1471164-c5c5-444a-b0a4-96fc861570c5","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}/pdf","description":"<h2 id=\"request-a-pdf-representation-of-a-specific-order\">Request a PDF representation of a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}","pdf"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d1471164-c5c5-444a-b0a4-96fc861570c5"},{"name":"Tasks","id":"c4edfcff-5d19-42a1-a2b1-6f227763572f","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orders/{id}/tasks","description":"<h2 id=\"request-a-list-of-tasks-related-to-a-specific-order\">Request a list of Tasks related to a specific Order</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orders","{id}","tasks"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4edfcff-5d19-42a1-a2b1-6f227763572f"}],"id":"6f058596-d21f-49a6-8bc7-153ba471bee4","_postman_id":"6f058596-d21f-49a6-8bc7-153ba471bee4","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Order Items","item":[{"name":"Order Items","id":"6f8ed6b0-00a9-4bbe-9238-ca8aaaf66683","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orderitems","description":"<p>Request a list of Order Items</p>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orderitems"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f8ed6b0-00a9-4bbe-9238-ca8aaaf66683"},{"name":"Order Items","id":"43fa930c-6c30-43c5-ba90-009bd24bff3c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Test Order Item\"\n}"},"url":"https://api.servicemonster.net/v1/orderitems","description":"<h2 id=\"create-a-new-order-item\">Create a new Order Item</h2>\n<p>Include the desired properties in the request body to create an Order Item. Be sure to provide the required properties.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>itemID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the Order Item.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether or not this Order Item is able to be put on orders.</td>\n</tr>\n<tr>\n<td>avgTime</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The amount of time (in hours) that this Order Item takes to complete. Only applies to Services.</td>\n</tr>\n<tr>\n<td>commissionable</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not the Sales Rep will receive a commission for this Order Item.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this Order Item belongs.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A summary of this product or service</td>\n</tr>\n<tr>\n<td>itemType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The type of the Order Item.</td>\n</tr>\n<tr>\n<td>itemGroup</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The group of the order item.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The name of the order otem.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>0.00</td>\n<td>The price that will be set on a Line Item when this Order Item's OrderItemID is supplied, and a Price is not explicitly specified.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>1</td>\n<td>The quantity of the order item.</td>\n</tr>\n<tr>\n<td>taxed</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>-</td>\n</tr>\n<tr>\n<td>unitOfMeasure</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>priceLocked</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>addToFavorites</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>false</td>\n<td>-</td>\n</tr>\n<tr>\n<td>upsaleItem</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>false</td>\n<td>-</td>\n</tr>\n<tr>\n<td>subGroup</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxGroup</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>priceList</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>quickCode</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orderitems"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"43fa930c-6c30-43c5-ba90-009bd24bff3c"},{"name":"Order Item","id":"d58dfff0-1f2e-4c48-acb6-7d4081208a41","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orderitems/{id}","description":"<p>Request a specific Order Item</p>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orderitems","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d58dfff0-1f2e-4c48-acb6-7d4081208a41"},{"name":"Order Item","id":"b6585049-9735-453e-9302-3509666d6d61","request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orderitems/{id}","description":"<h2 id=\"update-a-specific-order-item\">Update a specific Order Item</h2>\n<p>Include the desired properties in the request body to update an Order Item.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>itemID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the Order Item.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether or not this Order Item is able to be put on orders.</td>\n</tr>\n<tr>\n<td>avgTime</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The amount of time (in hours) that this Order Item takes to complete. Only applies to Services.</td>\n</tr>\n<tr>\n<td>commissionable</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not the Sales Rep will receive a commission for this Order Item.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this Order Item belongs.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A summary of this product or service</td>\n</tr>\n<tr>\n<td>itemType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The type of the Order Item.</td>\n</tr>\n<tr>\n<td>itemGroup</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The group of the order item.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The name of the order otem.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>0.00</td>\n<td>The price of the order item.</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>1</td>\n<td>The quantity of the order item.</td>\n</tr>\n<tr>\n<td>taxed</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>-</td>\n</tr>\n<tr>\n<td>unitOfMeasure</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>priceLocked</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>addToFavorites</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>false</td>\n<td>-</td>\n</tr>\n<tr>\n<td>upsaleItem</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>false</td>\n<td>-</td>\n</tr>\n<tr>\n<td>subGroup</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>taxGroup</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>priceList</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>quickCode</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orderitems","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6585049-9735-453e-9302-3509666d6d61"},{"name":"Order Item","id":"570808d4-9c9a-48b4-9471-628da2d0df27","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/orderitems/{id}","description":"<p>Delete a specific Order Item.</p>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","orderitems","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"570808d4-9c9a-48b4-9471-628da2d0df27"}],"id":"d2d77d8d-93fd-46f4-b7bd-6fe84a18400b","_postman_id":"d2d77d8d-93fd-46f4-b7bd-6fe84a18400b","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Reminders","item":[{"name":"Reminders","id":"7cc01873-bb42-470e-a53c-61126690f744","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/reminders","description":"<h2 id=\"request-a-list-of-reminders\">Request a list of Reminders</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","reminders"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"7cc01873-bb42-470e-a53c-61126690f744"},{"name":"Reminder","id":"76122bb4-db1d-4c06-b16c-b9515b95095e","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/reminders/{id}","description":"<h2 id=\"request-a-specific-reminder\">Request a specific Reminder</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","reminders","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"76122bb4-db1d-4c06-b16c-b9515b95095e"},{"name":"Reminder","id":"384d99fb-2f53-4e8e-be4f-f6201f41fd4d","request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/reminders/{id}","description":"<h2 id=\"update-a-specific-reminder\">Update a specific Reminder</h2>\n<p>Provide the desired properties in the request body to update the specified Reminder.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reminderID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the reminder</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the account to which this reminder belongs.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the company to which this reminder belongs.</td>\n</tr>\n<tr>\n<td>resourceID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the resource to be used in this reminder.</td>\n</tr>\n<tr>\n<td>endDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time at which this reminder ends.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A name for this reminder.</td>\n</tr>\n<tr>\n<td>reminderTemplateID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the template that this reminder will use</td>\n</tr>\n<tr>\n<td>showOnSchedule</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Whether or not this reminder will appear on the schedule.</td>\n</tr>\n<tr>\n<td>siteID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the site to which this reminder is related.</td>\n</tr>\n<tr>\n<td>startDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time at which this reminder starts.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this reminder was last modified.</td>\n</tr>\n<tr>\n<td>transactionDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Used to track when this reminder was dismissed or committed..</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The username of the person who last modified this reminder.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","reminders","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"384d99fb-2f53-4e8e-be4f-f6201f41fd4d"},{"name":"Reminder","id":"ac274cfa-01ef-4667-bf89-03d9e6427bda","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/reminders/{id}","description":"<h2 id=\"delete-a-specific-reminder\">Delete a specific Reminder</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","reminders","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac274cfa-01ef-4667-bf89-03d9e6427bda"}],"id":"c986cb20-cac3-41cf-985f-1ca7a644dba8","_postman_id":"c986cb20-cac3-41cf-985f-1ca7a644dba8","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Routes","item":[{"name":"Routes","id":"34e0a207-41a9-4929-aa2e-07c7c89386e3","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/routes","description":"<h2 id=\"request-a-list-of-routes\">Request a list of Routes</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","routes"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"34e0a207-41a9-4929-aa2e-07c7c89386e3"},{"name":"Route","id":"d65a9c3b-c52d-4188-84d1-c8670659ec7e","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/routes/{id}","description":"<h2 id=\"request-a-specific-route\">Request a specific Route</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","routes","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d65a9c3b-c52d-4188-84d1-c8670659ec7e"},{"name":"Route","id":"b3b90681-003c-4e9a-8832-cc8d2217d35d","request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/routes/{id}","description":"<h2 id=\"update-a-specific-route\">Update a specific Route</h2>\n<p>Provide the desired properties in the request body to update the specified Route.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>routeID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the route</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether or not this route is active</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the route's company</td>\n</tr>\n<tr>\n<td>defaultJobDuration</td>\n<td>Decimal</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The default length of time for a job</td>\n</tr>\n<tr>\n<td>employeeIDs</td>\n<td>Array</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>A list of the IDs for the employees assigned to this Route</td>\n</tr>\n<tr>\n<td>imageName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>Name of the image used for this route</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>Name of this route</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>Phone number for this route</td>\n</tr>\n<tr>\n<td>resourceTypes</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The types of resources used on this route</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>Time and date that the route was created or last modified</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>Name of the user who last modified this route</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","routes","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"b3b90681-003c-4e9a-8832-cc8d2217d35d"}],"id":"dc7be031-bf8d-414d-808d-fdac2ec38d0b","_postman_id":"dc7be031-bf8d-414d-808d-fdac2ec38d0b","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Schedule Items","item":[{"name":"Schedule Items","id":"919f2fc5-c24a-42ae-bdfe-17d91c916f1e","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/scheduleitems","description":"<h2 id=\"retrieves-a-list-of-schedule-items-for-the-date-range-specified\">Retrieves a list of Schedule Items for the date range specified.</h2>\n<p>Also returns the associated item (Job, Activity, Reminder, or Google Event).</p>\n<p><strong>Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Data Type</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>startDate</td>\n<td>DateTime</td>\n<td>Current Day</td>\n<td>The beginning of the date-range to query</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>DateTime</td>\n<td>Current Day plus 7 days</td>\n<td>The end of the date-range to query</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ItemID</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The GUID identifier for this schedule item.</td>\n</tr>\n<tr>\n<td>ItemType</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The type of schedule item.</td>\n</tr>\n<tr>\n<td>routeID</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The ID of the route on which this item is scheduled.</td>\n</tr>\n<tr>\n<td>StartDateTime</td>\n<td>DateTime</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The date and time that this schedule item begins.</td>\n</tr>\n<tr>\n<td>EndDateTime</td>\n<td>DateTime</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The date and time that this schedule item ends.</td>\n</tr>\n<tr>\n<td>TimeStamp</td>\n<td>DateTime</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The date and time that this schedule item ends.</td>\n</tr>\n<tr>\n<td>Item</td>\n<td>Object</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>Fields specific to the Schedule Item. Properties vary based on ItemType.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","scheduleitems"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"919f2fc5-c24a-42ae-bdfe-17d91c916f1e"}],"id":"4b7f20c6-df03-4bf8-bb4e-c7ec70f38783","event":[{"listen":"prerequest","script":{"id":"985abd0d-56c1-4be0-a394-3f24eba267a8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b94000d0-214a-4831-ab69-3e10c4bfcef9","type":"text/javascript","exec":[""]}}],"_postman_id":"4b7f20c6-df03-4bf8-bb4e-c7ec70f38783","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Scheduling","item":[{"name":"Scheduling","id":"ad79dbcf-d8fa-48f9-9722-b7a0b89ba29d","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/scheduling","description":"<h2 id=\"retrieves-a-list-of-schedule-items-for-the-date-range-specified\">Retrieves a list of Schedule Items for the date range specified.</h2>\n<p>Only returns the data for the schedule event, and a flattened subset of properties from the associated event.  Faster than /scheduleItems endpoint.</p>\n<p>  </p>\n<p><strong>Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Data Type</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>startDate</td>\n<td>DateTime</td>\n<td>Current Day</td>\n<td>The beginning of the date-range to query</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>DateTime</td>\n<td>Current Day plus 7 days</td>\n<td>The end of the date-range to query</td>\n</tr>\n<tr>\n<td>routeID</td>\n<td>Guid</td>\n<td>-</td>\n<td>If supplied, will limit the response to items scheduled for this route</td>\n</tr>\n<tr>\n<td>getJobColor</td>\n<td>Boolean</td>\n<td>True</td>\n<td>If set to false, the Item Color will not be calculated. This can speed up the response time significantly.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ItemID</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The GUID identifier for this schedule item.</td>\n</tr>\n<tr>\n<td>ItemType</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The type of schedule item.</td>\n</tr>\n<tr>\n<td>routeID</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The ID of the route on which this item is scheduled.</td>\n</tr>\n<tr>\n<td>StartDateTime</td>\n<td>DateTime</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The date and time that this schedule item begins.</td>\n</tr>\n<tr>\n<td>EndDateTime</td>\n<td>DateTime</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The date and time that this schedule item ends.</td>\n</tr>\n<tr>\n<td>TimeStamp</td>\n<td>DateTime</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The date and time that this schedule item ends.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>Username of last edit.</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>GUID</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The ID of the Account associated with this Schedule Item.</td>\n</tr>\n<tr>\n<td>siteID</td>\n<td>GUID</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The ID of the Site where this event takes place.</td>\n</tr>\n<tr>\n<td>orderID</td>\n<td>GUID</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The ID of the Order associated with this Schedule Item.</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>If the Schedule Item is an Activitiy, this is the Activitie's subject,</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>If the Schedule Item is an Activitiy, this is the Activitie's note,</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>If the Schedule Item is a Job, this is the status of the Job.</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>If the Schedule Item is a Job, this is the priority of the Job.</td>\n</tr>\n<tr>\n<td>itemColor</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>This is the color of the event as it would appear on the ServiceMonster schedule.</td>\n</tr>\n<tr>\n<td>jobType</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>If the Schedule item is a Job, this is the type of Job.</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>Address info for the Site associated with this Schedule Item.</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>Address info for the Site associated with this Schedule Item.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>Address info for the Site associated with this Schedule Item.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>Address info for the Site associated with this Schedule Item.</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>Address info for the Site associated with this Schedule Item.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>Address info for the Site associated with this Schedule Item.</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>Decimal</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>Location info for the Site associated with this Schedule Item.</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>Decimal</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>Location info for the Site associated with this Schedule Item.</td>\n</tr>\n<tr>\n<td>employeeIDs</td>\n<td>Array[GUID]</td>\n<td>None</td>\n<td>Yes</td>\n<td>None</td>\n<td>The ID(s) of the employee(s) assigned to this Schedule Item.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","scheduling"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad79dbcf-d8fa-48f9-9722-b7a0b89ba29d"}],"id":"5e0e780b-80d3-4a2c-84f8-caf8aa036b93","_postman_id":"5e0e780b-80d3-4a2c-84f8-caf8aa036b93","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Service Items","item":[{"name":"Service Items","id":"e8fe3046-b898-4a1c-acd7-2ab8e749e34e","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/serviceitems","description":"<h2 id=\"request-a-list-of-service-items\">Request a list of Service Items</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","serviceitems"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8fe3046-b898-4a1c-acd7-2ab8e749e34e"},{"name":"Service Item","id":"53560132-ec55-4de7-a7ab-728c793e35e5","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/serviceitems/{id}","description":"<h2 id=\"request-a-specific-service-item\">Request a specific Service Item</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","serviceitems","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"53560132-ec55-4de7-a7ab-728c793e35e5"}],"id":"3406acc6-6e1c-458b-ab22-42fdba79888a","_postman_id":"3406acc6-6e1c-458b-ab22-42fdba79888a","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Sites","item":[{"name":"Sites","id":"ab85c355-864d-4410-b40b-e36f139e4970","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/sites","description":"<h2 id=\"request-a-list-of-sites\">Request a list of Sites</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","sites"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab85c355-864d-4410-b40b-e36f139e4970"},{"name":"Sites","id":"df93eedf-1e2f-4588-8b6c-8b171615e643","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"accountID\":\"Guid\",\n\t\"name\":\"String\"\n}"},"url":"https://api.servicemonster.net/v1/sites","description":"<h2 id=\"create-a-new-site\">Create a new Site</h2>\n<p>Include the desired properties in the request body to create a new site. Be sure to provide the required properties.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>siteID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the site</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the account to which this site belongs.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether or not this site is currently active.</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The first line of the street address for this site.</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The second line of the street address for this site.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The city for this site.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The Company ID to which this site belongs.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The country for this site.</td>\n</tr>\n<tr>\n<td>county</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The county for this site.</td>\n</tr>\n<tr>\n<td>courierRoute</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The courier-route for this site.</td>\n</tr>\n<tr>\n<td>externalRefID</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A user-defined field that can be used to store an ID from another system. ie Quickbooks.</td>\n</tr>\n<tr>\n<td>isDefault</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether this site is the account's default site</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The latitude of this site's location.</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The longitude of this site's location.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>This site's name.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A note for this site.</td>\n</tr>\n<tr>\n<td>primaryContactID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The user ID of the person who is the primary contact.</td>\n</tr>\n<tr>\n<td>reference</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A user-defined field that can store any additional information about the site location.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The state of this site.</td>\n</tr>\n<tr>\n<td>taxExempt</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this site is exempt from taxation.</td>\n</tr>\n<tr>\n<td>taxID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the tax-rate to be used at this site.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this site was last edited.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last modified this site.</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The zip-code for this site.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","sites"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"df93eedf-1e2f-4588-8b6c-8b171615e643"},{"name":"Site","id":"1bb51fb6-29d9-4ee4-bae8-7194b1760c06","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/sites/{id}","description":"<h2 id=\"request-a-specific-site\">Request a specific Site</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","sites","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"1bb51fb6-29d9-4ee4-bae8-7194b1760c06"},{"name":"Site","id":"18b7f856-9da0-422a-8175-58b4f5733302","request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/sites/{id}","description":"<h2 id=\"update-a-specific-site\">Update a specific Site</h2>\n<p>Provide the desired properties in the request body to update the specified Site.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>siteID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the site</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the account to which this site belongs.</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>True</td>\n<td>Whether or not this site is currently active.</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The first line of the street address for this site.</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The second line of the street address for this site.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The city for this site.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The Company ID to which this site belongs.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The country for this site.</td>\n</tr>\n<tr>\n<td>county</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The county for this site.</td>\n</tr>\n<tr>\n<td>courierRoute</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The courier-route for this site.</td>\n</tr>\n<tr>\n<td>externalRefID</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A user-defined field that can be used to store an ID from another system. ie Quickbooks.</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The latitude of this site's location.</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>Decimal</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The longitude of this site's location.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>This site's name.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A note for this site.</td>\n</tr>\n<tr>\n<td>phone1</td>\n<td>string</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>phone1Label</td>\n<td>string</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>phone2</td>\n<td>string</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>phone2Label</td>\n<td>string</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>phone3</td>\n<td>string</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>phone3Label</td>\n<td>string</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n</tr>\n<tr>\n<td>primaryContactID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The user ID of the person who is the primary contact.</td>\n</tr>\n<tr>\n<td>reference</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A user-defined field that can store any additional information about the site location.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The state of this site.</td>\n</tr>\n<tr>\n<td>taxExempt</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this site is exempt from taxation.</td>\n</tr>\n<tr>\n<td>taxID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the tax-rate to be used at this site.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The date and time that this site was last edited.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last modified this site.</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The zip-code for this site.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","sites","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"18b7f856-9da0-422a-8175-58b4f5733302"},{"name":"Site","id":"2e3c36ae-b51e-4aaa-a4d8-584479534fed","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/sites/{id}","description":"<h2 id=\"delete-a-specific-site\">Delete a specific Site</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","sites","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e3c36ae-b51e-4aaa-a4d8-584479534fed"},{"name":"Note Activities","id":"5e7e2c19-1edd-45ea-a7a1-3116440d9a8b","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/sites/{id}/noteactivities","description":"<h2 id=\"request-a-list-of-note-activities-related-to-a-specific-site\">Request a list of Note Activities related to a specific Site</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","sites","{id}","noteactivities"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e7e2c19-1edd-45ea-a7a1-3116440d9a8b"},{"name":"Service Items","id":"b77ddc98-4b0a-4e3d-b45d-f02e6d62d9cd","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/sites/{id}/serviceitems","description":"<h2 id=\"request-a-list-of-service-items-related-to-a-specific-site\">Request a list of Service Items related to a specific Site</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","sites","{id}","serviceitems"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"b77ddc98-4b0a-4e3d-b45d-f02e6d62d9cd"}],"id":"ba530a0e-beaa-487f-af7c-edbab87d8724","_postman_id":"ba530a0e-beaa-487f-af7c-edbab87d8724","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Tasks","item":[{"name":"Tasks","id":"3feaaa24-5544-4f7a-be9b-a376dfba32d0","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/tasks","description":"<h2 id=\"request-a-list-of-tasks\">Request a list of Tasks</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","tasks"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"3feaaa24-5544-4f7a-be9b-a376dfba32d0"},{"name":"Tasks","id":"313e6e4e-7e72-4521-9aa8-40f258f6f278","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"subject\":\"String\"}"},"url":"https://api.servicemonster.net/v1/tasks","description":"<h2 id=\"create-a-new-task\">Create a new Task</h2>\n<p>Include the desired properties in the request body to create a new Task. Be sure to provide the required properties.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the task</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the account to which this task belongs.</td>\n</tr>\n<tr>\n<td>activityCategory</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The category that this task is under.</td>\n</tr>\n<tr>\n<td>activityDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this task will take place.</td>\n</tr>\n<tr>\n<td>activitySubType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>One of a user-defined set of values.</td>\n</tr>\n<tr>\n<td>activityType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The type of activity, 'Task' in this case.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this task belongs.</td>\n</tr>\n<tr>\n<td>completionDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date by which this task should be completed.</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date on which this task is due.</td>\n</tr>\n<tr>\n<td>endDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time on which this task ended.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A note field for this task.</td>\n</tr>\n<tr>\n<td>ownerName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The username of this task's owner.</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The priority of this task.</td>\n</tr>\n<tr>\n<td>resourceID</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the resource to be used in this task.</td>\n</tr>\n<tr>\n<td>showOnSchedule</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this task appears on the schedule.</td>\n</tr>\n<tr>\n<td>startDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The time and date that this task will begin.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The current status of this task.</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The subject of this task.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The time and date that this task was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last edited this task.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","tasks"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"313e6e4e-7e72-4521-9aa8-40f258f6f278"},{"name":"Task","id":"23c84503-cd2e-4800-9465-227548c3372e","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"","description":"<p>Request a specific Task.</p>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"23c84503-cd2e-4800-9465-227548c3372e"},{"name":"Task","id":"2a2d173d-9b06-4bca-9236-8e8ce89a62e9","request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[]},"url":"","description":"<h2 id=\"update-a-specific-task\">Update a specific Task</h2>\n<p>Provide the desired properties in the request body to update the specified Task.</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th>Read Only</th>\n<th>Default Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activityID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The guid identifer for the task</td>\n</tr>\n<tr>\n<td>accountID</td>\n<td>Guid</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the account to which this task belongs.</td>\n</tr>\n<tr>\n<td>activityCategory</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The category that this task is under.</td>\n</tr>\n<tr>\n<td>activityDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time that this task will take place.</td>\n</tr>\n<tr>\n<td>activitySubType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>One of a user-defined set of values.</td>\n</tr>\n<tr>\n<td>activityType</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The type of activity, 'Task' in this case.</td>\n</tr>\n<tr>\n<td>companyID</td>\n<td>Guid</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The ID of the company to which this task belongs.</td>\n</tr>\n<tr>\n<td>completionDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date by which this task should be completed.</td>\n</tr>\n<tr>\n<td>dueDate</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date on which this task is due.</td>\n</tr>\n<tr>\n<td>endDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The date and time on which this task ended.</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>A note field for this task.</td>\n</tr>\n<tr>\n<td>ownerName</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The username of this task's owner.</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The priority of this task.</td>\n</tr>\n<tr>\n<td>resourceID</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The ID of the resource to be used in this task.</td>\n</tr>\n<tr>\n<td>showOnSchedule</td>\n<td>Boolean</td>\n<td>-</td>\n<td>-</td>\n<td>False</td>\n<td>Whether or not this task appears on the schedule.</td>\n</tr>\n<tr>\n<td>startDateTime</td>\n<td>DateTime</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The time and date that this task will begin.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>-</td>\n<td>-</td>\n<td>-</td>\n<td>The current status of this task.</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>String</td>\n<td>Yes</td>\n<td>-</td>\n<td>-</td>\n<td>The subject of this task.</td>\n</tr>\n<tr>\n<td>timeStamp</td>\n<td>DateTime</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The time and date that this task was last modified.</td>\n</tr>\n<tr>\n<td>userName</td>\n<td>String</td>\n<td>-</td>\n<td>Yes</td>\n<td>-</td>\n<td>The username of the person who last edited this task.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"2a2d173d-9b06-4bca-9236-8e8ce89a62e9"},{"name":"Task","id":"71a9735c-90df-4fd8-8c1b-280e2e05be2f","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"","description":"<h2 id=\"delete-a-specific-task\">Delete a specific Task</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"71a9735c-90df-4fd8-8c1b-280e2e05be2f"}],"id":"5a582d64-1d39-4d1d-b671-ee0c9793a45d","_postman_id":"5a582d64-1d39-4d1d-b671-ee0c9793a45d","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Tax Rates","item":[{"name":"Tax Rates","id":"e1f8f6ae-315f-4bb3-bfb0-d54a22dba6f2","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/taxrates","description":"<h2 id=\"request-a-list-of-tax-rates\">Request a list of Tax Rates</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","taxrates"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"e1f8f6ae-315f-4bb3-bfb0-d54a22dba6f2"},{"name":"Tax Rate","id":"365acc29-5cad-4ed0-9e0b-455914ebaa65","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.servicemonster.net/v1/taxrates/{id}","description":"<h2 id=\"request-a-specific-tax-rate\">Request a specific Tax Rate</h2>\n","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","taxrates","{id}"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"365acc29-5cad-4ed0-9e0b-455914ebaa65"}],"id":"30150477-48ae-4613-8238-69b97d245252","_postman_id":"30150477-48ae-4613-8238-69b97d245252","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"Web Leads","item":[{"name":"Web Lead","id":"d5b017bb-3e9c-4242-9f4c-ea91d4ab3a89","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"customerFirstName\":\"String\",\n\t\"customerLastName\":\"String\",\n\t\"phone\":\"String\",\n\t\"email\":\"String\",\n\t\"address1\":\"String\",\n\t\"city\":\"String\",\n\t\"state\":\"String\",\n\t\"zip\":\"String\"\n}"},"url":"https://api.servicemonster.net/v1/webleads","description":"<h2 id=\"create-a-new-web-lead\">Create a new Web Lead</h2>\n<p>Include the desired properties in the request body to create a new Web Lead. Be sure to provide the required properties.</p>\n<p>For Web Leads, FirstName OR LastName is required. Phone # OR Email is required. You can supply leadSourceID to select an existing Marketing Lead Source. Or you can supply a leadSourceName that will either create a new Lead Source or select one with a matching name. If leadSourceID and leadSourceName are both null the Lead Source is set to \"PF:WebForms\".</p>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ld Name</th>\n<th>Data Type</th>\n<th>Required</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerFirstName</td>\n<td>String</td>\n<td>Yes</td>\n<td>64</td>\n<td>Customer's First Name.</td>\n</tr>\n<tr>\n<td>customerLastName</td>\n<td>String</td>\n<td>Yes</td>\n<td>64</td>\n<td>Customer's Last Name.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>String</td>\n<td>Yes</td>\n<td>32</td>\n<td>-</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>Yes</td>\n<td>128</td>\n<td>-</td>\n</tr>\n<tr>\n<td>address1</td>\n<td>String</td>\n<td>No</td>\n<td>64</td>\n<td>-</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>No</td>\n<td>64</td>\n<td>-</td>\n</tr>\n<tr>\n<td>state</td>\n<td>String</td>\n<td>No</td>\n<td>64</td>\n<td>-</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>String</td>\n<td>No</td>\n<td>32</td>\n<td>-</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>-</td>\n<td>64</td>\n<td>-</td>\n</tr>\n<tr>\n<td>note</td>\n<td>String</td>\n<td>-</td>\n<td>4000</td>\n<td>-</td>\n</tr>\n<tr>\n<td>source</td>\n<td>String</td>\n<td>-</td>\n<td>64</td>\n<td>This can be whatever you want. If you have multiple web-forms, you may want to give each one a unique \"source\".</td>\n</tr>\n<tr>\n<td>leadSourceID</td>\n<td>GUID</td>\n<td>No</td>\n<td></td>\n<td>ID of selected Lead Source</td>\n</tr>\n<tr>\n<td>leadSourceName</td>\n<td>String</td>\n<td>No</td>\n<td>64</td>\n<td>Name of selected Lead Source (will perform lookup for existing marketing campaigns. Will create new Lead Source if not found.)</td>\n</tr>\n<tr>\n<td>leadSourceGroup</td>\n<td>String</td>\n<td>No</td>\n<td>64</td>\n<td>This is the name of the Marketing Group that will be applied to this lead. The value must exist in the Marketing Groups picklist before it can be applied to a lead.</td>\n</tr>\n<tr>\n<td>services</td>\n<td>String</td>\n<td>No</td>\n<td>256</td>\n<td>Customer provided details on servies to be performed</td>\n</tr>\n<tr>\n<td>duration</td>\n<td>Decimal</td>\n<td>No</td>\n<td></td>\n<td>The length of the job to be created with this lead</td>\n</tr>\n<tr>\n<td>routeID</td>\n<td>GUID</td>\n<td>No</td>\n<td></td>\n<td>The ID for the route on which to create the job for this lead</td>\n</tr>\n<tr>\n<td>preferredTime</td>\n<td>String</td>\n<td>No</td>\n<td>64</td>\n<td>Customer provided details on the date they would like this job to be performed (No job created)</td>\n</tr>\n<tr>\n<td>selectedTime</td>\n<td>DateTime</td>\n<td>No</td>\n<td></td>\n<td>The date and time selected by the customer for this lead's job (Job will be created)</td>\n</tr>\n<tr>\n<td>notifyClient</td>\n<td>Bool</td>\n<td>No</td>\n<td></td>\n<td>Whether the client should receive an email notification that their lead was submitted. Defaults to <strong>true</strong> if not supplied.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","webleads"],"host":["api","servicemonster","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5b017bb-3e9c-4242-9f4c-ea91d4ab3a89"}],"id":"0f9180ce-5012-4abb-b97f-1a696d5767fb","_postman_id":"0f9180ce-5012-4abb-b97f-1a696d5767fb","description":"","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}},{"name":"WebHooks","item":[],"id":"b5d6900a-490d-4255-b957-c72ea66db45c","description":"<p><strong>API Endpoint URL:</strong> <a href=\"https://webapi.servicemonster.net/api/resthooks\"><b>https://webapi.servicemonster.net/api/resthooks</b></a></p>\n<p><strong>ServiceMonster objects for which web hooks can be created:</strong></p>\n<ul>\n<li><p><strong>Account</strong></p>\n</li>\n<li><p><strong>Order</strong></p>\n</li>\n<li><p><strong>Site</strong></p>\n</li>\n<li><p><strong>Job (Appointment)</strong></p>\n</li>\n<li><p><strong>Lead</strong></p>\n</li>\n<li><p><strong>Payment</strong></p>\n</li>\n</ul>\n<p><strong>Event Types:</strong></p>\n<ul>\n<li><p><strong>OnCreated</strong></p>\n</li>\n<li><p><strong>OnUpdated</strong></p>\n</li>\n<li><p><strong>OnDeleted</strong></p>\n</li>\n<li><p><strong>OnArchived</strong></p>\n</li>\n<li><p><strong>OnInvoiced (Order only)</strong></p>\n</li>\n</ul>\n<p><strong>Subscribing to a WebHook</strong></p>\n<ul>\n<li><p><strong>POST to ../api/resthooks/subscriptions/subscribe</strong></p>\n</li>\n<li><p><strong>Body:</strong></p>\n</li>\n</ul>\n<p><strong>{</strong></p>\n<p>\"event”: object_eventType,</p>\n<p>“target_url”: the URL that the object data is sent to when the event is triggered**</p>\n<p><strong>}</strong></p>\n<ul>\n<li><strong>Example Body:</strong></li>\n</ul>\n<p><strong><code>{</code></strong></p>\n<p><code>“event”: ”order_onUpdated”,</code></p>\n<p><code>“target_url”: ”https://www.example.com/api/webhooks/{subscriptionId}”</code></p>\n<p><strong><code>}</code></strong></p>\n<p><strong>Unsubscribing from a WebHook</strong></p>\n<ul>\n<li><p><strong>POST to ../api/resthooks/subscriptions/unsubscribe</strong></p>\n</li>\n<li><p><strong>Example Body:</strong></p>\n</li>\n</ul>\n<p><strong><code>{</code></strong></p>\n<p><code>“target_url”: ”https://www.example.com/api/webhooks/{subscriptionId}”</code></p>\n<p><strong><code>}</code></strong></p>\n<ul>\n<li><strong>Returning error code 410 to a request from the webhooks server will also cause the webhook subscription to be deactivated</strong></li>\n</ul>\n<p><strong>Response Data</strong></p>\n<p><strong>The data returned will be the Entity for which the subscription was triggered. (Account, Order, Site, Job or Lead)</strong></p>\n<p><strong>Returning EntityType/EventType</strong></p>\n<p>**When the subscription is created, you can supply querystring parameters in your “target_url”. Eg:**<strong>“target_url”:”</strong><a href=\"https://www.testendpoint.com/webhooks?entityType=account&amp;eventType=updated%E2%80%9D\"><b>https://www.testendpoint.com/webhooks?entityType=account&amp;eventType=updated”</b></a></p>\n","_postman_id":"b5d6900a-490d-4255-b957-c72ea66db45c","auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"},"isInherited":true,"source":{"_postman_id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","id":"e4ce71c2-762a-4230-b0f9-c189d03f5810","name":"ServiceMonster API V1","type":"collection"}}}],"auth":{"type":"basic","basic":{"password":"{{APIUser|5001|Password}}","username":"{{APIUser|5001|Username}}"}},"event":[{"listen":"prerequest","script":{"id":"638051da-b12b-4431-b22c-eee95d73fd9a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b48d1a37-a162-49be-83db-ae932fcbd5ec","type":"text/javascript","exec":[""]}}]}