{"info":{"_postman_id":"54a4c157-792e-f7ff-bd90-d30c7a4c8d54","name":"SimpleLegal API","description":"<html><head></head><body><h2 id=\"api-reference\">API Reference</h2>\n<p>The SimpleLegal API is organized around REST. Our API has predictable, resource-oriented URLs, and uses HTTP response codes to indicate API errors. We use built-in HTTP features, like HTTP authentication and HTTP verbs, which are understood by off-the-shelf HTTP clients. We support cross-origin resource sharing, allowing you to interact securely with our API from a client-side web application (though you should never expose your secret API key in any public website's client-side code). JSON is returned by all API responses, including errors.</p>\n<p>We've documented <code>PATCH</code> methods throughout, however, <code>POST</code> can be used instead of <code>PATCH</code> to accomodate systems that can't utilize the <code>PATCH</code> method.</p>\n<h2 id=\"page-size\">Page Size</h2>\n<p>By default the maximum number of items on paginated list page is 25. This can be configured by postfixing a URL with <code>?page_size=30</code> if a page size of 30 is desired.</p>\n<h2 id=\"search\">Search </h2>\n<p>In general, all unnnested fields for any list is searchable by postfixing a URL with <code>?&lt;field_name&gt;=&lt;desired_value&gt;</code>. The exceptions are generated fields such as <code>api_url</code> or <code>url</code>. </p>\n<h2 id=\"string-search\">String Search</h2>\n<p>Searches for string values are all case insensitive and substrings. If exact match searches are required, it can be accomplished by postfixing the name of the field with <code>__exact</code> (e.g. <code>?name__exact=Exact-Value</code>). </p>\n<h2 id=\"date-search\">Date Search</h2>\n<p>Searches for date value are always for the ISO-8601 version for the date. By default, they are always exact date matches. If a range of dates is requested, this can be accomplished via <code>?date__range=2018-01-01,2018-01-03</code> notation. (Note that dates ranges are inclusive at the beginning and exclusive at the end, so the previous query only includes the first and second days of the year.) Datetime fields are of format: <code>YYYY-MM-DD HH:MM:SS</code> or <code>?date=2019-03-04 21:24:56</code> (note the space between the day and month parameters. Make sure that the integration library used automatically URL encode the space to <code>%20</code>)</p>\n<h2 id=\"generic-search\">Generic Search</h2>\n<p>Some endpoints has a <code>search</code> parameter, which attempts to match any relevant field to a search string. For example <code>/matters/?search=patent</code> would match any matter with a <code>client_matter_id</code>, <code>description</code> or <code>name</code> containing the substring <code>patent</code>. Useful for exploratory filtering. </p>\n<h2 id=\"multiple-queries\">Multiple Queries</h2>\n<p>If multiple queries are needed (e.g. to search on an object's name and date of creation), queries can be sequenced via the ampersand like so: <code>?date__range=2018-12-25,2019-01-01&amp;name=New-Year-Prep</code>. </p>\n<p>If multiple searches on the same field are needed (such as the status on the invoice), they can be chained by adding a postfix <code>__in</code> to the field and adding the values like so: <code>?status__in=Sent To AP,Approved</code> which would, on the invoice endpoint grab invoices with status <code>Sent To AP</code> and <code>Approved</code>. Note that unlike single queries, these have to be exact, case sensitive, matches. </p>\n<p>Caveats for search on the same field: The only supported fields are text fields, and the matches are both exact and case sensitive.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"1085035","collectionId":"54a4c157-792e-f7ff-bd90-d30c7a4c8d54","publishedId":"6YySZWX","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2018-12-12T00:26:05.000Z"},"item":[{"name":"Accruals","item":[{"name":"List all Accrual Periods","id":"d95ec43f-3f79-44b5-8c37-87c148c9015b","request":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/accruals/","description":"<p>You can list all accrual monthly periods that the api user has access to. </p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h2 id=\"filters\">Filters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Optional</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Available Modifiers</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>period</strong></td>\n<td><code>date</code></td>\n<td>exact, range</td>\n<td><code>?period=2018-01-31</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>If a range of dates <code>period</code> can be specified with the <code>range</code> operator. For example, if only the accruals in the first three months are desired, the filter <code>?period__range=2018-01-31,2018-03-31</code> would display all relevant accruals. (Note that <code>range</code> is inclusive on both the beginning and the ending date)</p>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of accrual periods and an associated URL. Each entry in the array is a separate date+URL object. If no more accruals are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","accruals",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"f69511b0-0e91-4baa-957b-cfbfc7fe513c","name":"List all accrual periods","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/accruals/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Mon, 29 Oct 2018 21:31:53 GMT"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Vary","value":"Cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"Content-Length","value":"1762"},{"key":"Content-Type","value":"application/json"},{"key":"Set-Cookie","value":"sessionid=mpowikvncsa34qf4t47snk9n5qd9gkzb; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 3,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"period\": \"2018-10-31\",\n            \"api_url\": \"https://falcon.simplelegal.com/api/v1/accruals/2018-10-31/\"\n        },\n        {\n            \"period\": \"2017-06-30\",\n            \"api_url\": \"https://falcon.simplelegal.com/api/v1/accruals/2017-06-30/\"\n        },\n        {\n            \"period\": \"2017-05-31\",\n            \"api_url\": \"https://falcon.simplelegal.com/api/v1/accruals/2017-05-31/\"\n        }\n    ]\n}"}],"_postman_id":"d95ec43f-3f79-44b5-8c37-87c148c9015b"},{"name":"Retrieve Accruals for a Period","id":"0877908f-c473-42a3-93af-2b183e2adbb7","request":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/accruals/2018-10-31/","description":"<p>You can see a list of all specific accrual information that exists in the same month as the URL.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>period</strong></td>\n<td><code>date</code></td>\n<td><code>2018-10-31</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"filters\">Filters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Optional</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Available Modifiers</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>period</strong></td>\n<td><code>date</code></td>\n<td>exact, range</td>\n<td><code>?period=2018-01-31</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>If a range of dates <code>period</code> can be specified with the <code>range</code> operator. For example, if only the accruals in the first three months are desired, the filter <code>?period__range=2018-01-31,2018-03-31</code> would display all relevant accruals. (Note that <code>range</code> is inclusive on both the beginning and the ending date)</p>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of accrual requests. Each entry in the array is a separate accrual request. If no more accruals are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","accruals","2018-10-31",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"e714bde9-50d5-4c4c-9f8d-81200461e24b","name":"Retrieve Accruals for a period","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/accruals/2018-10-31/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Mon, 29 Oct 2018 22:02:27 GMT"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Vary","value":"Cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"Content-Length","value":"1342"},{"key":"Content-Type","value":"application/json"},{"key":"Set-Cookie","value":"sessionid=mpowikvncsa34qf4t47snk9n5qd9gkzb; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 4,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"period\": \"2018-10-31\",\n            \"vendor\": {\n                \"accruals_enabled_currently\": true,\n                \"vendor_number\": null,\n                \"name\": \"Fish and Co.\",\n                \"id\": \"ven_a9ff839951dad99e7b5ac9a7e1754c9f246550ce\"\n            },\n            \"submissions\": [\n                {\n                    \"associated_matters\": [\n                        {\n                            \"matter\": {\n                                \"id\": \"mat_60e4519697cb4aa4bc7f15ceae90c334\",\n                                \"description\": \"jerry li\",\n                                \"client_matter_id\": \"outerapi-4814512\",\n                                \"name\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\"\n                            },\n                            \"amount\": 1000,\n                            \"comment\": \"payment for october\",\n                            \"submitted_for_period\": {\n                                \"period_begin\": \"2018-10-01\",\n                                \"period_end\": \"2018-10-31\"\n                            }\n                        },\n                        {\n                            \"matter\": null,\n                            \"amount\": 500,\n                            \"comment\": \"misc expenses\",\n                            \"submitted_for_period\": {\n                                \"period_begin\": \"2018-10-01\",\n                                \"period_end\": \"2018-10-31\"\n                            }\n                        }\n                    ],\n                    \"submitted_total\": 1500,\n                    \"submitted_currency\": \"USD\"\n                }\n            ]\n        },\n        {\n            \"period\": \"2018-10-31\",\n            \"vendor\": {\n                \"accruals_enabled_currently\": true,\n                \"vendor_number\": null,\n                \"name\": \"My New Vendor\",\n                \"id\": \"ven_ed7198e13cbe00e6c2c2c70344d7f08c7cbf5129\"\n            },\n            \"submissions\": null\n        },\n        {\n            \"period\": \"2018-10-31\",\n            \"vendor\": {\n                \"accruals_enabled_currently\": true,\n                \"vendor_number\": \"NS12345\",\n                \"name\": \"My New Vendor\",\n                \"id\": \"ven_53eb92966f8555df97a3016dd713a83f74cc6816\"\n            },\n            \"submissions\": null\n        },\n        {\n            \"period\": \"2018-10-31\",\n            \"vendor\": {\n                \"accruals_enabled_currently\": true,\n                \"vendor_number\": \"34.330.001-3\",\n                \"name\": \"Rosato and Associates\",\n                \"id\": \"ven_b78675eff0770ea74cb6456743234af43cf0cac3\"\n            },\n            \"submissions\": null\n        }\n    ]\n}"}],"_postman_id":"0877908f-c473-42a3-93af-2b183e2adbb7"}],"id":"b1475b02-00fd-4118-8497-d2280cf707d0","_postman_id":"b1475b02-00fd-4118-8497-d2280cf707d0","description":""},{"name":"Cost Codes","item":[{"name":"List All Cost Codes","id":"2b70aa70-f85d-48b7-863f-6ea383c89034","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"}],"url":"https://falcon.simplelegal.com/api/v1/cost-codes/","description":"<p>You can list all cost codes that the api user has access to. The cost codes are returned sorted by cost code name alphabetically.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h2 id=\"filters\">Filters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=cos_123456</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>exact</td>\n<td>?description=cost code description</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>exact</td>\n<td>?name=code-0010</td>\n</tr>\n<tr>\n<td>accounting_code</td>\n<td>string</td>\n<td>exact</td>\n<td>?accounting_code=100.000.123</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte, range</td>\n<td>?created_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>modified_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte, range</td>\n<td>?modified_date__gt=2018-03-01</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of cost codes. Each entry in the array is a separate cost code object. If no more cost codes are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","cost-codes",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"6c1c7bfb-f378-4b50-ac2a-8c5c30c7f474","name":"List All Cost Codes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/cost-codes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"701","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 24 Aug 2018 21:52:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qx3kkrh5jhk0kmknx1ajp5c4kor7bysv; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qx3kkrh5jhk0kmknx1ajp5c4kor7bysv","key":"sessionid"}],"responseTime":null,"body":"{\"count\":2,\"next\":null,\"previous\":null,\"results\":[{\"id\":\"cos_2a52cc9edb7c4c968afd37a679036526\",\"name\":\"SL-2000\",\"description\":\"Legal Patent Expenses\",\"accounting_code\":\"100.000.200\",\"created_date\":\"2017-04-29T14:02:04.945079\",\"modified_date\":\"2018-02-06T09:10:21.829890\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/cost-codes/cos_2a52cc9edb7c4c968afd37a679036526/\"},{\"id\":\"cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750\",\"name\":\"SL-1000\",\"description\":\"Legal Expense\",\"accounting_code\":\"100.000.000\",\"created_date\":\"2018-02-05T16:59:51.164043\",\"modified_date\":\"2018-02-05T16:59:51.164051\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/cost-codes/cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750/\"}]}"}],"_postman_id":"2b70aa70-f85d-48b7-863f-6ea383c89034"},{"name":"Retrieve a Cost Code","id":"6b133b20-873b-4e2e-9fcc-f2040f4f9f1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/cost-codes/cos_2a52cc9edb7c4c968afd37a679036526/","description":"<p>Retrieves the cost code with the given cost code hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>cos_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a cost code object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The cost code object contains information about the cost code.</p>\n","urlObject":{"protocol":"https","path":["api","v1","cost-codes","cos_2a52cc9edb7c4c968afd37a679036526",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"8bea8248-fce5-4727-a415-0881b8975eae","name":"Retrieve a Cost Code","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/cost-codes/cos_2a52cc9edb7c4c968afd37a679036526/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"312","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 05 Feb 2018 22:41:01 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=lkzc3bm92lmqmeiw7aocxxmcu4qnyhyf; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"lkzc3bm92lmqmeiw7aocxxmcu4qnyhyf","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"cos_2a52cc9edb7c4c968afd37a679036526\",\"name\":\"SL-0010\",\"description\":\"Legal Expense\",\"accounting_code\":\"100.000.123\",\"created_date\":\"2017-04-29T14:02:04.945079\",\"modified_date\":\"2017-04-29T14:02:04.945091\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/cost-codes/cos_2a52cc9edb7c4c968afd37a679036526/\"}"}],"_postman_id":"6b133b20-873b-4e2e-9fcc-f2040f4f9f1a"},{"name":"Create a Cost Code","id":"6cdb080e-ce9e-42f3-a8a1-9a9ef9d01675","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"SL-3000\",\n\t\"description\": \"Legal Trademark Expenses\",\n\t\"accounting_code\": \"100.000.300\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/cost-codes/","description":"<p>You can create a cost code.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>SL-1000</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>Legal Expense</code></td>\n</tr>\n<tr>\n<td><strong>accounting_code</strong></td>\n<td><code>string</code></td>\n<td><code>100.000.123</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created cost code.</p>\n","urlObject":{"protocol":"https","path":["api","v1","cost-codes",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"5cbd3414-5a4b-4971-b660-28adcec71437","name":"Create a Cost Code","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"SL-3000\",\n\t\"description\": \"Legal Trademark Expenses\",\n\t\"accounting_code\": \"100.000.300\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/cost-codes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"339","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 17:24:50 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=ltj4ppx0dl9ryel6oa36g01r2e4qw3ya; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"ltj4ppx0dl9ryel6oa36g01r2e4qw3ya","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"cos_d92e615849baaf3016511586f0271e1760a1bec7\",\"name\":\"SL-3000\",\"description\":\"Legal Trademark Expenses\",\"accounting_code\":\"100.000.300\",\"created_date\":\"2018-02-06T09:24:50.282470\",\"modified_date\":\"2018-02-06T09:24:50.282485\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/cost-codes/cos_d92e615849baaf3016511586f0271e1760a1bec7/\"}"},{"id":"70a8a0dd-fbcd-4a17-b445-522def6ba381","name":"Create a Cost Code","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"SL-1000\",\n    \"description\": \"Legal Expense\",\n    \"accounting_code\": \"100.000.000\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/cost-codes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"328","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 00:59:51 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=ltj4ppx0dl9ryel6oa36g01r2e4qw3ya; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"ltj4ppx0dl9ryel6oa36g01r2e4qw3ya","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750\",\"name\":\"SL-1000\",\"description\":\"Legal Expense\",\"accounting_code\":\"100.000.000\",\"created_date\":\"2018-02-05T16:59:51.164043\",\"modified_date\":\"2018-02-05T16:59:51.164051\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/cost-codes/cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750/\"}"}],"_postman_id":"6cdb080e-ce9e-42f3-a8a1-9a9ef9d01675"},{"name":"Update a Cost Code","id":"8a260500-acba-4621-b9f4-02b1cf2eb31d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"SL-2000\",\n\t\"description\": \"Legal Patent Expenses\",\n\t\"accounting_code\": \"100.000.200\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/cost-codes/cos_2a52cc9edb7c4c968afd37a679036526/","description":"<p>You can update a cost code using either the <code>PATCH</code> or <code>POST</code> method.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>cos_0123456789</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>SL-1000</code></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>Legal Expense</code></td>\n</tr>\n<tr>\n<td><strong>accounting_code</strong></td>\n<td><code>string</code></td>\n<td><code>100.000.123</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the updated cost code.</p>\n","urlObject":{"protocol":"https","path":["api","v1","cost-codes","cos_2a52cc9edb7c4c968afd37a679036526",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"a1bf5f9b-5cb9-4cd4-9e07-2850a9a6daa7","name":"Update a Cost Code","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"SL-2000\",\n\t\"description\": \"Legal Patent Expenses\",\n\t\"accounting_code\": \"100.000.200\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/cost-codes/cos_2a52cc9edb7c4c968afd37a679036526/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"320","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 17:10:21 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=ltj4ppx0dl9ryel6oa36g01r2e4qw3ya; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"ltj4ppx0dl9ryel6oa36g01r2e4qw3ya","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"cos_2a52cc9edb7c4c968afd37a679036526\",\"name\":\"SL-2000\",\"description\":\"Legal Patent Expenses\",\"accounting_code\":\"100.000.200\",\"created_date\":\"2017-04-29T14:02:04.945079\",\"modified_date\":\"2018-02-06T09:10:21.829890\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/cost-codes/cos_2a52cc9edb7c4c968afd37a679036526/\"}"}],"_postman_id":"8a260500-acba-4621-b9f4-02b1cf2eb31d"}],"id":"c3f067f5-73ca-439d-8ef0-97dfc0c3ad6a","_postman_id":"c3f067f5-73ca-439d-8ef0-97dfc0c3ad6a","description":""},{"name":"Entities","item":[{"name":"Entity Custom Attributes","item":[{"name":"List All Attributes for Entity","id":"699485b3-b93f-443c-8f12-8f391ad6572e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/entities/ent_fa71537cc5888ebd23902843f651904ed9130279/attributes/","description":"<p>You can list all attributes for an Entity that the api user has access to.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<table>\n    <tr>\n        <th>Required</th>\n        <th>Type</th>\n        <th>Sample Value</th>\n    </tr>\n    <tr>\n        <td>id</td>\n        <td>`string`</td>\n        <td>`ent_1234567890`</td>\n    </tr>\n    <tr>\n        <th>Optional</th>\n        <th>Type</th>\n        <th>Sample Value</th>\n    </tr>\n    <tr>\n        <td>name</td>\n        <td>`string`</td>\n        <td>`?name=Country`</td>\n    </tr>\n</table>\n\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of attributes. Each entry in the array is a separate attribute object. If no more attributes are available, the resulting array will be empty.</p>\n<p>Note that the <code>value_extras</code> list may or may not be empty, please refer to the individual attribute value documentation for how to parse the <code>value_extras</code> field.</p>\n","urlObject":{"protocol":"https","path":["api","v1","entities","ent_fa71537cc5888ebd23902843f651904ed9130279","attributes",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"a1f78260-f1d2-491c-b447-ce73728fcc5e","name":"List All Attributes for Entity","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Authorization","value":"Token 3dda38d5f4ceadcfb6d91c0afa24ff298980df45","type":"text","disabled":true},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/attributes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Fri, 12 Apr 2019 21:18:38 GMT"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"52"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Vary","value":"Cookie"},{"key":"Content-Type","value":"application/json"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=vrbfqaken1fwqlyc1hq3ico94jaa1v0z; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 2,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"name\": \"Country\",\n            \"hash\": \"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\n            \"type\": \"list\",\n            \"valid_values\": [\n                \"CA\",\n                \"US\"\n            ],\n            \"attribute_group\": \"Locale\",\n            \"attribute_group_sort\": \"1\",\n            \"value\": \"US\",\n            \"extra_values\": [\n                {\n                    \"name\": \"id\",\n                    \"value\": \"attr_opt_e57c9508edb242fc8146984d0f3daaa6\"\n                },\n                {\n                    \"name\": \"name\",\n                    \"value\": \"US\"\n                },\n                {\n                    \"name\": \"description\",\n                    \"value\": \"Description for United States\"\n                },\n                {\n                    \"name\": \"code\",\n                    \"value\": \"Accounting Code for Unitied States\"\n                },\n                {\n                    \"name\": \"api_url\",\n                    \"value\": \"https://falcon.simplelegal.com/api/v1/attributes/attr_d0567543486247709acf494df01a4a3a/options/attr_opt_e57c9508edb242fc8146984d0f3daaa6/\"\n                },\n                {\n                    \"name\": \"url\",\n                    \"value\": \"http://local.simplelegal.com:8000/manage/matter_attributes/1330/\"\n                },\n                {\n                    \"name\": \"status\",\n                    \"value\": \"Active\"\n                }\n            ],\n            \"api_url\": \"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/\"\n        },\n        {\n            \"name\": \"Exposure\",\n            \"hash\": \"attr_d0567543486247709acf494df01a4a3a\",\n            \"type\": \"text\",\n            \"valid_values\": \"Any Text Value\",\n            \"attribute_group\": \"Financial\",\n            \"attribute_group_sort\": \"2\",\n            \"value\": \"No Exposure\",\n            \"extra_values\": [],\n            \"api_url\": \"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_d0567543486247709acf494df01a4a3a/\"\n        }\n    ]\n}"}],"_postman_id":"699485b3-b93f-443c-8f12-8f391ad6572e"},{"name":"Retrieve an Attribute for Entity","id":"71336190-01ac-4988-8174-83e4b87afdbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/entities/ent_fa71537cc5888ebd23902843f651904ed9130279/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/","description":"<p>Retrieves the entityattribute for the given matter hash with the given attribute hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>entity_id</strong></td>\n<td><code>hash</code></td>\n<td><code>ent_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>attribute_id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an attribute object if a valid set of <code>id</code>s was provided. Returns an error otherwise.</p>\n<p>The attribute object contains information about the attribute for the matter.</p>\n<p>Note that the <code>valid_values</code> field provides information on how to make semantic sense of the <code>values</code> field (which is always guaranteed to be of type <code>string</code>).</p>\n<p>Note that if an attribute is of type <code>list</code>, additional information associated with the <code>list_option</code> object is stored in the field <code>extra_values</code>. </p>\n<p>The <code>extra_values</code> field can be parsed as an object instead of a list, by mapping each <code>name</code> value to an object key and each <code>value</code> value to the corresponding key's value. </p>\n<p>An example transformation would be: [{\"name\": \"id\", \"value\": \"attr_opt_123456\"}, {\"name\": \"name\", \"value\": \"USA\"}] -&gt; \n{\"id\": \"attr_opt123456\", \"value\": \"USA\"}</p>\n","urlObject":{"protocol":"https","path":["api","v1","entities","ent_fa71537cc5888ebd23902843f651904ed9130279","attributes","attr_4a6f44669cf54e3bb6be2e640514a0fd",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"d0ed10c9-08e3-43a5-8a14-fc103579e098","name":"Retrieve an Attribute for Matter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"318","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 16 Mar 2018 22:29:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\n    \"name\": \"Country\",\n    \"hash\": \"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\n    \"type\": \"list\",\n    \"valid_values\": [\n        \"CA\",\n        \"US\"\n    ],\n    \"attribute_group\": \"Locale\",\n    \"attribute_group_sort\": \"1\",\n    \"value\": null,\n    \"extra_values\": [],\n    \"modified_date\": \"2018-03-12T10:43:25.553317\",\n    \"api_url\": \"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/\"\n}"}],"_postman_id":"71336190-01ac-4988-8174-83e4b87afdbf"},{"name":"Update an Attribute for Entity","id":"f1701c29-cf75-4921-a23b-175caa9efb21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"CA\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/entities/ent_fa71537cc5888ebd23902843f651904ed9130279/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/","description":"<p>One value is required:</p>\n<p>{\"value\": }</p>\n<p>The format of the string varies and depends on what the 'valid_values' field of the return JSON states.</p>\n<p>You can update an attribute on an entity.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>entity_id</strong></td>\n<td><code>hash</code></td>\n<td><code>ent_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>attribute_id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>value</strong></td>\n<td><code>string</code></td>\n<td><code>CA</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>value</strong> - The format of the string varies and depends on what the <code>valid_values</code> field of the return JSON states.</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the updated attribute.</p>\n","urlObject":{"protocol":"https","path":["api","v1","entities","ent_fa71537cc5888ebd23902843f651904ed9130279","attributes","attr_4a6f44669cf54e3bb6be2e640514a0fd",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"6a08e4d0-000b-4aad-a3f9-0a169292338b","name":"Invalid List Value","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"MX\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"152","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 12 Mar 2018 17:55:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"non_field_errors\":[\"MX is not a valid option for a matter_attribute:Country. Valid options are: <Other_Attribute_Value_ListQuerySet [u'CA', u'US']>\"]}"},{"id":"f5fca32c-0d11-4bf6-8f4a-ed80ddffabee","name":"Update an Attribute for Matter","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"US\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"223","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 12 Mar 2018 17:53:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"name\":\"Country\",\"value\":\"US\",\"hash\":\"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/\"}"}],"_postman_id":"f1701c29-cf75-4921-a23b-175caa9efb21"}],"id":"d1650a51-dcf2-43da-be25-6ec02ba7a2f2","_postman_id":"d1650a51-dcf2-43da-be25-6ec02ba7a2f2","description":""},{"name":"List All Entities","id":"6652499e-e199-442c-9cd8-ae48f7d68e12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/entities/","description":"<p>You can list all entities that the api user has access to. The entities are returned sorted by entity name alphabetically.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h2 id=\"filters\">Filters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=env_123456</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>N/A</td>\n<td>?description=cost code description</td>\n</tr>\n<tr>\n<td>accounting_code</td>\n<td>string</td>\n<td>N/A</td>\n<td>?accounting_code=001456</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>icontains</td>\n<td>?name=code-01</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>icontains</td>\n<td>?description=hello</td>\n</tr>\n<tr>\n<td>address_1</td>\n<td>string</td>\n<td>exact</td>\n<td>?address_1=Street1</td>\n</tr>\n<tr>\n<td>address_2</td>\n<td>string</td>\n<td>exact</td>\n<td>?address_2=Street2</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>exact</td>\n<td>?city=LA</td>\n</tr>\n<tr>\n<td>country</td>\n<td>string</td>\n<td>exact</td>\n<td>?country=USA</td>\n</tr>\n<tr>\n<td>state</td>\n<td>string</td>\n<td>exact</td>\n<td>?state=California</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>string</td>\n<td>exact</td>\n<td>?zip=95014</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte, range</td>\n<td>?created_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>modified_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte, range</td>\n<td>?modified_date__gt=2018-03-01</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of entities. Each entry in the array is a separate entity object. The entity object contains information about the entity, including an array of custom attributes if they exist. If no more entities are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","entities",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"059c7d37-e5c3-469b-8dca-45fd87b807e3","name":"List All Entities","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/entities/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"730","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 01 Jun 2018 15:11:50 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=n4byyaripcpzkx337d8w6xecku3quv5e; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"canary.simplelegal.com","path":"/","secure":true,"value":"n4byyaripcpzkx337d8w6xecku3quv5e","key":"sessionid"}],"responseTime":null,"body":"{\"count\":1,\"next\":null,\"previous\":null,\"results\":[{\"id\":\"ent_fa71537cc5888ebd23902843f651904ed9130279\",\"name\":\"USHQ\",\"description\":\"1234\",\"accounting_code\":\"US\",\"address_1\":\"100 Main St\",\"address_2\":\"\",\"city\":\"Mountain View\",\"state\":\"CA\",\"zip\":\"94043\",\"country\":\"US\",\"custom_attributes\":[{\"attribute_group\":\"Geography\",\"attribute_group_sort\":1,\"value\":\"NA\",\"type\":\"list\",\"valid_values\":[\"APAC\",\"EMEA\",\"NA\"],\"hash\":\"attr_58eec1decfb34a8989e102ef728fda2e\",\"name\":\"Region\"}],\"created_date\":\"2018-06-01T08:05:10.863052\",\"modified_date\":\"2018-06-01T08:08:06.745741\",\"api_url\":\"https://canary.simplelegal.com/api/v1/entities/ent_fa71537cc5888ebd23902843f651904ed9130279/\",\"url\":\"https://canary.simplelegal.com/manage/entities/11311/\"}]}"}],"_postman_id":"6652499e-e199-442c-9cd8-ae48f7d68e12"},{"name":"Retrieve an Entity","id":"be8cc41a-74c5-4ef0-94dd-e7e697dced76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/entities/ent_fa71537cc5888ebd23902843f651904ed9130279/","description":"<p>Retrieves the entity with the given entity hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>ent_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a entity object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The entity object contains information about the entity, including an array of custom attributes if they exist.</p>\n","urlObject":{"protocol":"https","path":["api","v1","entities","ent_fa71537cc5888ebd23902843f651904ed9130279",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"1be80352-ecbf-45d0-81f1-54e38fa64e2a","name":"Retrieve an Entity","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/entities/ent_fa71537cc5888ebd23902843f651904ed9130279/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"616","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 01 Jun 2018 15:10:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=n4byyaripcpzkx337d8w6xecku3quv5e; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"canary.simplelegal.com","path":"/","secure":true,"value":"n4byyaripcpzkx337d8w6xecku3quv5e","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"ent_fa71537cc5888ebd23902843f651904ed9130279\",\"name\":\"USHQ\",\"description\":\"1234\",\"accounting_code\":\"US\",\"address_1\":\"100 Main St\",\"address_2\":\"\",\"city\":\"Mountain View\",\"state\":\"CA\",\"zip\":\"94043\",\"country\":\"US\",\"custom_attributes\":[{\"attribute_group\":\"Geography\",\"attribute_group_sort\":1,\"value\":\"NA\",\"type\":\"list\",\"valid_values\":[\"APAC\",\"EMEA\",\"NA\"],\"hash\":\"attr_58eec1decfb34a8989e102ef728fda2e\",\"name\":\"Region\"}],\"created_date\":\"2018-06-01T08:05:10.863052\",\"modified_date\":\"2018-06-01T08:08:06.745741\",\"api_url\":\"https://canary.simplelegal.com/api/v1/entities/ent_fa71537cc5888ebd23902843f651904ed9130279/\"}"}],"_postman_id":"be8cc41a-74c5-4ef0-94dd-e7e697dced76"},{"name":"Create an Entity","id":"a3970237-1fea-41e0-a5bb-483dfa233a32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"US HQ\",\n\t\"description\": \"US Headquarters.\",\n\t\"accounting_code\": \"10012\",\n\t\"address_1\": \"742 Evergreen Terrace\",\n\t\"address_2\": \"Unit 1\",\n\t\"city\": \"Springfield\",\n\t\"state\": \"MA\",\n\t\"zip\": \"01020\",\n\t\"country\": \"US\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/entities/","description":"<p>You can create an entity.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>US HQ</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>US Headquarters</code></td>\n</tr>\n<tr>\n<td><strong>accounting_code</strong></td>\n<td><code>string</code></td>\n<td><code>10012</code></td>\n</tr>\n<tr>\n<td><strong>address_1</strong></td>\n<td><code>string</code></td>\n<td><code>742 Evergreen Terrace</code></td>\n</tr>\n<tr>\n<td><strong>address_2</strong></td>\n<td><code>string</code></td>\n<td><code>Unit 1</code></td>\n</tr>\n<tr>\n<td><strong>city</strong></td>\n<td><code>string</code></td>\n<td><code>Springfield</code></td>\n</tr>\n<tr>\n<td><strong>state</strong></td>\n<td><code>string</code></td>\n<td><code>MA</code></td>\n</tr>\n<tr>\n<td><strong>zip</strong></td>\n<td><code>string</code></td>\n<td><code>01020</code></td>\n</tr>\n<tr>\n<td><strong>country</strong></td>\n<td><code>string</code></td>\n<td><code>US</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created entity.</p>\n","urlObject":{"protocol":"https","path":["api","v1","entities",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"3d03da4c-4a07-4226-aba5-dfe63a7f5d4e","name":"Create an Entity","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"US HQ\",\n\t\"description\": \"US Headquarters.\",\n\t\"accounting_code\": \"10012\",\n\t\"address_1\": \"742 Evergreen Terrace\",\n\t\"address_2\": \"Unit 1\",\n\t\"city\": \"Springfield\",\n\t\"state\": \"MA\",\n\t\"zip\": \"01020\",\n\t\"country\": \"US\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/entities/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"441","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 16:43:45 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=ltj4ppx0dl9ryel6oa36g01r2e4qw3ya; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"ltj4ppx0dl9ryel6oa36g01r2e4qw3ya","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"ent_07e7cb32d227e0a363fbfbc4638bd9f8c9e26913\",\"name\":\"US HQ\",\"description\":\"US Headquarters.\",\"accounting_code\":\"10012\",\"address_1\":\"742 Evergreen Terrace\",\"address_2\":\"Unit 1\",\"city\":\"Springfield\",\"state\":\"MA\",\"zip\":\"01020\",\"country\":\"US\",\"created_date\":\"2018-02-06T08:43:45.245878\",\"modified_date\":\"2018-02-06T08:43:45.245886\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/entities/ent_07e7cb32d227e0a363fbfbc4638bd9f8c9e26913/\"}"}],"_postman_id":"a3970237-1fea-41e0-a5bb-483dfa233a32"},{"name":"Update an Entity","id":"da08f8a3-0440-4473-9980-2248ca2cc2a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"US HQ\",\n\t\"description\": \"US Headquarters.\",\n\t\"accounting_code\": \"10012\",\n\t\"address_1\": \"742 Evergreen Terrace\",\n\t\"address_2\": \"Unit 2\",\n\t\"city\": \"Springfield\",\n\t\"state\": \"MA\",\n\t\"zip\": \"01020\",\n\t\"country\": \"US\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/entities/ent_0738fd999f98479e9d70cf73e6aa272a/","description":"<p>You can update an entity using either the <code>PATCH</code> or <code>POST</code> method.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>ent_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>US HQ</code></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>US Headquarters</code></td>\n</tr>\n<tr>\n<td><strong>accounting_code</strong></td>\n<td><code>string</code></td>\n<td><code>10012</code></td>\n</tr>\n<tr>\n<td><strong>address_1</strong></td>\n<td><code>string</code></td>\n<td><code>742 Evergreen Terrace</code></td>\n</tr>\n<tr>\n<td><strong>address_2</strong></td>\n<td><code>string</code></td>\n<td><code>Unit 1</code></td>\n</tr>\n<tr>\n<td><strong>city</strong></td>\n<td><code>string</code></td>\n<td><code>Springfield</code></td>\n</tr>\n<tr>\n<td><strong>state</strong></td>\n<td><code>string</code></td>\n<td><code>MA</code></td>\n</tr>\n<tr>\n<td><strong>zip</strong></td>\n<td><code>string</code></td>\n<td><code>01020</code></td>\n</tr>\n<tr>\n<td><strong>country</strong></td>\n<td><code>string</code></td>\n<td><code>US</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the updated entity.</p>\n","urlObject":{"protocol":"https","path":["api","v1","entities","ent_0738fd999f98479e9d70cf73e6aa272a",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"34a21d61-3368-420b-af3d-bdca4fd2f1fc","name":"Update an Entity","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"US HQ\",\n\t\"description\": \"US Headquarters.\",\n\t\"accounting_code\": \"10012\",\n\t\"address_1\": \"742 Evergreen Terrace\",\n\t\"address_2\": \"Unit 2\",\n\t\"city\": \"Springfield\",\n\t\"state\": \"MA\",\n\t\"zip\": \"01020\",\n\t\"country\": \"US\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/entities/ent_0738fd999f98479e9d70cf73e6aa272a/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"425","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 17:07:20 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=ltj4ppx0dl9ryel6oa36g01r2e4qw3ya; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"ltj4ppx0dl9ryel6oa36g01r2e4qw3ya","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"ent_0738fd999f98479e9d70cf73e6aa272a\",\"name\":\"US HQ\",\"description\":\"US Headquarters.\",\"accounting_code\":\"10012\",\"address_1\":\"742 Evergreen Terrace\",\"address_2\":\"Unit 2\",\"city\":\"Springfield\",\"state\":\"MA\",\"zip\":\"01020\",\"country\":\"US\",\"created_date\":\"2017-04-29T14:02:04.998198\",\"modified_date\":\"2018-02-06T09:07:20.447284\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/entities/ent_0738fd999f98479e9d70cf73e6aa272a/\"}"}],"_postman_id":"da08f8a3-0440-4473-9980-2248ca2cc2a1"}],"id":"d40a1c1b-fa24-4c11-ab93-aac8b1c3dec6","_postman_id":"d40a1c1b-fa24-4c11-ab93-aac8b1c3dec6","description":""},{"name":"Invoices","item":[{"name":"List All Invoices","id":"b73a111d-66d5-4c74-9c24-6737074a6925","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token \nToken 8c30f1c2608d62d27ccbe763450b7401de3628f5","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/invoices/","description":"<p>You can list all invoices that the api user has access to. The invoices are returned sorted by received date, with the most recently received invoices appearing first.</p>\n<p><code>invoice_number</code> is essentially the name of the invoice. An identifier usually provided by the vendor, hence not necessarily unique (although it often is). <code>id</code> is the unique identifier assigned by SimpleLegal and is the canonical way to locate an invoice. </p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=inv_123456</td>\n</tr>\n<tr>\n<td>invoice_number</td>\n<td>string</td>\n<td>exact</td>\n<td>?invoice_number=00012345</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>exact</td>\n<td>?status=Approved</td>\n</tr>\n<tr>\n<td>vendor</td>\n<td>string</td>\n<td>exact</td>\n<td>?name=Boston Legal</td>\n</tr>\n<tr>\n<td>invoice_date</td>\n<td>date</td>\n<td>range</td>\n<td>?invoice_date__range=2018-01-01,2018-01-03</td>\n</tr>\n<tr>\n<td>open_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte</td>\n<td>?open_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?created_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>modified_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?modified_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>search</td>\n<td>string</td>\n<td>N/A</td>\n<td>?search=description_or_name_field_value</td>\n</tr>\n</tbody>\n</table>\n</div><p>Available modifiers can be added onto the end of a search string joined by a double dash and\nare generally shorthands for more advanced searches that can be done:</p>\n<ul>\n<li>lt -&gt; less than</li>\n<li>lte -&gt; less than equal to</li>\n<li>gt -&gt; greater than</li>\n<li>gte -&gt; greater than equal to</li>\n<li>icontains -&gt; contains, case insensitive</li>\n</ul>\n<h3 id=\"returns\">Returns</h3>\n<p>A dictionary with a <code>results</code> property that contains an array of invoices. Each entry in the array is a separate invoice object. If no more invoices are available, the resulting array will be empty.</p>\n<p>The invoice object has both billed and native amounts. The native amounts represent the amounts billed in the <code>native_currency</code> while the billed amounts represent the amounts converted to the default client currency using the provided <code>exchange_rate</code>. Note that if the <code>native_currency</code> has the value <code>null</code>, this means that the native currency has value <code>USD</code>. Integration clients are advised to consume the <code>null</code> case without error now but not to explicitly depend on the <code>null</code> value. The simplest way would be to treat the <code>null</code> and <code>\"USD\"</code> values as identical.</p>\n<p>The invoice object contains an array of <code>final_status_history</code> which lists the times at which the status has been modified and to what destination status. If no status changes have been made, then no entries will be contained within. If multiple back and forth status changes have been made (e.g. Received(t1) to Approved(t2) to Received (t3) to Approved (t4), there would only be t3's change to Received and t4's change to Approved logged in the <code>final_status_history</code> field)</p>\n<p>The invoice object contains an array of <code>matters</code> that the invoice is billed to.</p>\n<p>The invoice object contains an array of <code>approvers</code> that the invoice is assigned to, including their current approval status.</p>\n<p>The invoice object contains an array of <code>attachments</code> that the invoice has. Each file_url is a read-only URL where the uploaded file can be accessed for at least 10 minutes after url generation. The URL is not guaranteed to exist after the 10 minutes pass. </p>\n<p>The invoice object will contain an array of <code>allocations</code> identifying the allocations as specified for that invoice including percentage and any relevant objects set up for allocations.</p>\n<p>The invoice object will contain an array of <code>custom_attributes</code> if they exist.</p>\n","urlObject":{"protocol":"https","path":["api","v1","invoices",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"7b1ad5e0-6117-4c2e-bb0f-d154002021d0","name":"List All Invoices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 3dda38d5f4ceadcfb6d91c0afa24ff298980df45","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/invoices/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Fri, 08 Feb 2019 22:03:44 GMT"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"Vary","value":"Cookie"},{"key":"Content-Length","value":"31085"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Set-Cookie","value":"sessionid=40o1298qt43v1jb4qfga7t4i6ao1yzes; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"inv_ce8b3b1262bb563e8099f506a3ec6cd41c642a6d\",\n            \"obj_id\": 57077,\n            \"vendor_id\": \"ven_a9ff839951dad99e7b5ac9a7e1754c9f246550ce\",\n            \"allocation_summary\": [\n                {\n                    \"amount\": 260000,\n                    \"cost_code\": null,\n                    \"custom_attributes\": [],\n                    \"entity\": null,\n                    \"matter\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\",\n                    \"native_amount\": 260000,\n                    \"other_attributes\": [],\n                    \"percentage\": 1\n                }\n            ],\n            \"api_url\": \"/api/v1/invoices/inv_ce8b3b1262bb563e8099f506a3ec6cd41c642a6d/\",\n            \"approvers\": [\n                {\n                    \"id\": \"usr_1c4de9c4b73347280e6955e77f7793d1401e69a5\",\n                    \"date\": \"2018-12-28T15:52:13.220719\",\n                    \"email\": \"rjones2@example.com\",\n                    \"first_name\": \"Rashida\",\n                    \"last_name\": \"Jones\",\n                    \"status\": \"pending\"\n                },\n                {\n                    \"id\": \"usr_478a56077eebf0041401a2e549a4eef7643c2cc2\",\n                    \"date\": \"2018-12-28T15:52:13.135729\",\n                    \"email\": \"newuser_3@simplelegal.com\",\n                    \"first_name\": \"JoAnn\",\n                    \"last_name\": \"Chang\",\n                    \"status\": \"pending\"\n                },\n                {\n                    \"id\": \"usr_bf4a1e1820f6b17b0bc1047f69a59aa63ca4ca34\",\n                    \"date\": \"2018-10-18T14:58:10.718890\",\n                    \"email\": \"cfoster@example.com\",\n                    \"first_name\": \"Caryn\",\n                    \"last_name\": \"Foster\",\n                    \"status\": \"approved\"\n                },\n                {\n                    \"id\": \"usr_27ddb8ba33bd35ee40efb32db1a747e3ace3f816\",\n                    \"date\": \"2018-10-18T14:54:56.528765\",\n                    \"email\": \"alan+api@simplelegal.com\",\n                    \"first_name\": \"Alan\",\n                    \"last_name\": \"Chang\",\n                    \"status\": \"approved\"\n                }\n            ],\n            \"attachments\": [],\n            \"billing_end_date\": \"2018-10-18\",\n            \"billing_start_date\": \"2018-10-18\",\n            \"currency\": \"USD\",\n            \"exchange_rate\": null,\n            \"final_amount\": 260000,\n            \"final_status_history\": [],\n            \"invoice_date\": \"2018-10-18\",\n            \"invoice_number\": \"123\",\n            \"invoice_subject\": \"For Services Rendered\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-4814512\",\n                    \"id\": \"mat_60e4519697cb4aa4bc7f15ceae90c334\",\n                    \"close_date\": null,\n                    \"created_date\": \"2018-09-29T14:42:34.027430\",\n                    \"description\": \"jerry li\",\n                    \"matter_description\": \"jerry li\",\n                    \"matter_hash\": \"mat_60e4519697cb4aa4bc7f15ceae90c334\",\n                    \"matter_lead\": {\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"last_name\": \"Smith\",\n                        \"email\": \"bsmith@example.com\",\n                        \"first_name\": \"Barbara\"\n                    },\n                    \"matter_short_name\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\",\n                    \"modified_date\": \"2018-12-20T08:45:22.409362\",\n                    \"name\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\",\n                    \"open_date\": \"2018-09-29\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_60e4519697cb4aa4bc7f15ceae90c334/\"\n                }\n            ],\n            \"modified_date\": \"2018-10-18T14:58:10.833994\",\n            \"native_currency\": null,\n            \"native_net\": null,\n            \"native_tax\": null,\n            \"native_total\": null,\n            \"net\": null,\n            \"po\": null,\n            \"received_date\": \"2018-10-18\",\n            \"status\": \"Received\",\n            \"tax\": null,\n            \"total\": 260000,\n            \"url\": \"/invoices/57077/\",\n            \"vendor\": \"Fish and Co.\",\n            \"vendor_number\": null,\n            \"custom_attributes\": [\n                {\n                    \"type\": \"text\",\n                    \"attribute_group_sort\": 2,\n                    \"attribute_group\": \"Financial\",\n                    \"valid_values\": \"Any Text Value\",\n                    \"value\": \"8000\",\n                    \"name\": \"Exposure\",\n                    \"hash\": \"attr_d0567543486247709acf494df01a4a3a\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"b73a111d-66d5-4c74-9c24-6737074a6925"},{"name":"Retrieve an Invoice","id":"486cc898-35ec-4cc7-ac74-0e5b2c2e6c58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_ce8b3b1262bb563e8099f506a3ec6cd41c642a6d/","description":"<p>Retrieves the invoice with the given invoice hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>inv_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an invoice object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The invoice object contains header information about the invoice as well as an array of <code>lines</code> for that invoice. Each <code>line</code> is a Line Item object of an invoice. Each invoice has one or more line items. Each line item includes the detail of the line item including the <code>matters</code> that the <code>line</code> is billed to.</p>\n<p>The invoice object has both billed and native amounts. The native amounts represent the amounts billed in the <code>native_currency</code> while the billed amounts represent the amounts converted to the default client <code>currency</code> using the provided <code>exchange_rate</code>. Note that if the <code>native_currency</code> has the value <code>null</code>, this means that the native currency has value <code>USD</code>. Integration clients are advised to consume the <code>null</code> case without error now but not to explicitly depend on the <code>null</code> value. The simplest way would be to treat the <code>null</code> and <code>\"USD\"</code> values as identical. </p>\n<p>The invoice object contains an array of <code>matters</code> that the invoice is billed to.</p>\n<p>The invoice object contains an array of <code>approvers</code> that the invoice is assigned to, including their current approval status.</p>\n<p>The invoice object contains an array of <code>attachments</code> that the invoice has. Each file_url is a read-only URL where the uploaded file can be accessed for at least 10 minutes after url generation. The URL is not guaranteed to exist after the 10 minutes pass. </p>\n<p>The invoice object will contain an array of <code>allocations</code> identifying the allocations as specified for that invoice including percentage and any relevant objects set up for allocations. Note that the <code>other_attributes</code> field is a clone of the <code>custom_attributes</code> field and is deprecated. </p>\n<p>The invoice object will contain an array of <code>custom_attributes</code> if they exist.</p>\n","urlObject":{"protocol":"https","path":["api","v1","invoices","inv_ce8b3b1262bb563e8099f506a3ec6cd41c642a6d",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"3a492352-461a-4d81-a31e-f7c1f6039d96","name":"Retrieve an Invoice","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_ce8b3b1262bb563e8099f506a3ec6cd41c642a6d/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Wed, 04 Sep 2019 23:14:20 GMT"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, PATCH, HEAD, OPTIONS"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"4797"},{"key":"Set-Cookie","value":"sessionid=qx88npx1rfkqo99zigpekh3528u66rab; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"inv_ce8b3b1262bb563e8099f506a3ec6cd41c642a6d\",\n    \"obj_id\": 57077,\n    \"vendor_id\": \"ven_a9ff839951dad99e7b5ac9a7e1754c9f246550ce\",\n    \"allocation_summary\": [\n        {\n            \"amount\": 222000,\n            \"cost_code\": \"100.000.000\",\n            \"custom_attributes\": [\n                {\n                    \"code\": \"10001.12456.122.36\",\n                    \"name\": \"GL\"\n                }\n            ],\n            \"entity\": \"10012\",\n            \"matter\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\",\n            \"native_amount\": 200000,\n            \"other_attributes\": [\n                {\n                    \"code\": \"10001.12456.122.36\",\n                    \"name\": \"GL\"\n                }\n            ],\n            \"percentage\": 1\n        }\n    ],\n    \"api_url\": \"/api/v1/invoices/inv_ce8b3b1262bb563e8099f506a3ec6cd41c642a6d/\",\n    \"approvers\": [\n        {\n            \"id\": \"usr_1c4de9c4b73347280e6955e77f7793d1401e69a5\",\n            \"date\": \"2019-09-04T15:13:05.081418\",\n            \"email\": \"rjones2@example.com\",\n            \"first_name\": \"Rashida\",\n            \"last_name\": \"Jones\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": \"usr_478a56077eebf0041401a2e549a4eef7643c2cc2\",\n            \"date\": \"2019-09-04T15:13:05.058030\",\n            \"email\": \"newuser_3@simplelegal.com\",\n            \"first_name\": \"JoAnn\",\n            \"last_name\": \"Chang\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": \"usr_bf4a1e1820f6b17b0bc1047f69a59aa63ca4ca34\",\n            \"date\": \"2018-10-18T14:58:10.718890\",\n            \"email\": \"cfoster@example.com\",\n            \"first_name\": \"Caryn\",\n            \"last_name\": \"Foster\",\n            \"status\": \"approved\"\n        },\n        {\n            \"id\": \"usr_27ddb8ba33bd35ee40efb32db1a747e3ace3f816\",\n            \"date\": \"2018-10-18T14:54:56.528765\",\n            \"email\": \"alan+api@simplelegal.com\",\n            \"first_name\": \"Alan\",\n            \"last_name\": \"Chang\",\n            \"status\": \"approved\"\n        }\n    ],\n    \"attachments\": [],\n    \"billing_end_date\": \"2018-10-18\",\n    \"billing_start_date\": \"2018-10-18\",\n    \"currency\": \"USD\",\n    \"exchange_rate\": null,\n    \"final_amount\": 222000,\n    \"final_status_history\": [],\n    \"invoice_date\": \"2018-10-18\",\n    \"invoice_number\": \"123\",\n    \"invoice_subject\": \"For Services Rendered\",\n    \"matters\": [\n        {\n            \"client_matter_id\": \"outerapi-4814512\",\n            \"id\": \"mat_60e4519697cb4aa4bc7f15ceae90c334\",\n            \"close_date\": null,\n            \"created_date\": \"2018-09-29T14:42:34.027430\",\n            \"description\": \"jerry li\",\n            \"matter_description\": \"jerry li\",\n            \"matter_hash\": \"mat_60e4519697cb4aa4bc7f15ceae90c334\",\n            \"matter_lead\": {\n                \"last_name\": \"Smith\",\n                \"first_name\": \"Barbara\",\n                \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                \"email\": \"bsmith@example.com\"\n            },\n            \"matter_short_name\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\",\n            \"modified_date\": \"2019-09-04T15:35:38.668722\",\n            \"name\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\",\n            \"open_date\": \"2018-09-29\",\n            \"status\": \"open\",\n            \"url\": \"/api/v1/matters/mat_60e4519697cb4aa4bc7f15ceae90c334/\"\n        }\n    ],\n    \"modified_date\": \"2018-10-18T14:58:10.833994\",\n    \"native_currency\": null,\n    \"native_net\": 200000,\n    \"native_tax\": 22000,\n    \"native_total\": null,\n    \"net\": 200000,\n    \"po\": null,\n    \"received_date\": \"2018-10-18\",\n    \"status\": \"Received\",\n    \"tax\": 22000,\n    \"total\": 222000,\n    \"url\": \"/invoices/57077/\",\n    \"vendor\": \"Fish and Co.\",\n    \"vendor_number\": null,\n    \"custom_attributes\": [\n        {\n            \"valid_values\": \"Any Text Value\",\n            \"type\": \"text\",\n            \"value\": \"8000\",\n            \"attribute_group\": \"Financial\",\n            \"name\": \"Exposure\",\n            \"hash\": \"attr_d0567543486247709acf494df01a4a3a\",\n            \"attribute_group_sort\": 2\n        }\n    ],\n    \"other_attributes\": [\n        {\n            \"valid_values\": \"Any Text Value\",\n            \"type\": \"text\",\n            \"value\": \"8000\",\n            \"attribute_group\": \"Financial\",\n            \"name\": \"Exposure\",\n            \"hash\": \"attr_d0567543486247709acf494df01a4a3a\",\n            \"attribute_group_sort\": 2\n        }\n    ],\n    \"lines\": [\n        {\n            \"client_id\": \"outerapi\",\n            \"law_firm_matter_id\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\",\n            \"timekeeper_id\": \"\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 222000,\n                    \"native_amount\": 200000,\n                    \"cost_code\": \"100.000.000\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"10012\",\n                    \"matter\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\"\n                }\n            ],\n            \"date\": \"2018-10-18\",\n            \"description\": \"For Services Rendered\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 1,\n            \"line_item_type\": \"IF\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-4814512\",\n                    \"id\": \"mat_60e4519697cb4aa4bc7f15ceae90c334\",\n                    \"close_date\": null,\n                    \"created_date\": \"2018-09-29T14:42:34.027430\",\n                    \"description\": \"jerry li\",\n                    \"matter_description\": \"jerry li\",\n                    \"matter_hash\": \"mat_60e4519697cb4aa4bc7f15ceae90c334\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\",\n                    \"modified_date\": \"2019-09-04T15:35:38.668722\",\n                    \"name\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\",\n                    \"open_date\": \"2018-09-29\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_60e4519697cb4aa4bc7f15ceae90c334/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 2000000,\n            \"native_tax\": 22000,\n            \"native_total\": 200000,\n            \"rate\": 200000,\n            \"task_code\": \"\",\n            \"tax\": 22000,\n            \"tax_code\": {\n                \"code\": \"20\",\n                \"rate\": 11,\n                \"account_split\": \"4226050\",\n                \"account\": \"2113025\",\n                \"rate_split\": 6,\n                \"name\": \"GST & PST 11%\",\n                \"code_split\": \"40\"\n            },\n            \"tax_rate\": 0.11,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"\",\n            \"timekeeper_level\": \"\",\n            \"total\": 222000,\n            \"units\": 1\n        }\n    ]\n}"}],"_postman_id":"486cc898-35ec-4cc7-ac74-0e5b2c2e6c58"},{"name":"Retrieve an Invoice Detail PDF","id":"e05e6236-1f88-4378-ae78-a2d1628ed2b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"}],"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_19abed87732bf08e56c01e531d2ba1459f7aa078/pdf/","description":"<p>Retrieves the invoice detail PDF for the given invoice hash as a base64 encoded string.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>inv_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a base64 encoded string of the Invoice Detail PDF if a valid invoice hash was provided. Returns an error otherwise. The output has to be stripped of enclosing quotes and be decoded to PDF. </p>\n<p>An example call to retrieve and decode may look like this:</p>\n<p><code>curl -H 'Authorization: Token 86eaa6eb40012b5d305437f7dd31d2200f46f813' \\ http://local.simplelegal.com:8000/api/v1/invoices/inv_d54fea2a71a9486a2c619a3cb0551bcd2fc0c1ad/pdf/ &gt; Invoice123-Detail.txt \\ &amp;&amp; cat Invoice123-Detail.txt | sed 's/\\\"//g' | base64 --d &gt; Invoice123-Detail.pdf</code></p>\n","urlObject":{"protocol":"https","path":["api","v1","invoices","inv_19abed87732bf08e56c01e531d2ba1459f7aa078","pdf",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"82d89e2d-9782-4dcd-9bea-04f00234c3f7","name":"Retrieve an Invoice Detail PDF","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"},{"key":"Content-Type","value":"application/json","disabled":true}],"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_19abed87732bf08e56c01e531d2ba1459f7aa078/pdf/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 03 Dec 2017 00:54:31 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.6.0","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=pebmkgaciz9xrza8s2qrpairhrag7hcj; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"pebmkgaciz9xrza8s2qrpairhrag7hcj","key":"sessionid"}],"responseTime":null,"body":"\"JVBERi0xLjQNCiWTjIueIFJlcG9ydExhYiBHZW5lcmF0ZWQgUERGIGRvY3VtZW50IGh0dHA6Ly93d3cucmVwb3J0bGFiLmNvbQ0KMSAwIG9iag0KPDwgL0YxIDIgMCBSIC9GMiAzIDAgUiA+Pg0KZW5kb2JqDQoyIDAgb2JqDQo8PCAvQmFzZUZvbnQgL0hlbHZldGljYSAvRW5jb2RpbmcgL1dpbkFuc2lFbmNvZGluZyAvTmFtZSAvRjEgL1N1YnR5cGUgL1R5cGUxIC9UeXBlIC9Gb250ID4+DQplbmRvYmoNCjMgMCBvYmoNCjw8IC9CYXNlRm9udCAvSGVsdmV0aWNhLUJvbGQgL0VuY29kaW5nIC9XaW5BbnNpRW5jb2RpbmcgL05hbWUgL0YyIC9TdWJ0eXBlIC9UeXBlMSAvVHlwZSAvRm9udCA+Pg0KZW5kb2JqDQo0IDAgb2JqDQo8PCAvQ29udGVudHMgMTEgMCBSIC9NZWRpYUJveCBbIDAgMCA2MTIgNzkyIF0gL1BhcmVudCAxMCAwIFIgL1Jlc291cmNlcyA8PCAvRm9udCAxIDAgUiAvUHJvY1NldCBbIC9QREYgL1RleHQgL0ltYWdlQiAvSW1hZ2VDIC9JbWFnZUkgXSA+PiAvUm90YXRlIDAgL1RyYW5zIDw8ICA+PiANCiAgL1R5cGUgL1BhZ2UgPj4NCmVuZG9iag0KNSAwIG9iag0KPDwgL0NvbnRlbnRzIDEyIDAgUiAvTWVkaWFCb3ggWyAwIDAgNjEyIDc5MiBdIC9QYXJlbnQgMTAgMCBSIC9SZXNvdXJjZXMgPDwgL0ZvbnQgMSAwIFIgL1Byb2NTZXQgWyAvUERGIC9UZXh0IC9JbWFnZUIgL0ltYWdlQyAvSW1hZ2VJIF0gPj4gL1JvdGF0ZSAwIC9UcmFucyA8PCAgPj4gDQogIC9UeXBlIC9QYWdlID4+DQplbmRvYmoNCjYgMCBvYmoNCjw8IC9Db250ZW50cyAxMyAwIFIgL01lZGlhQm94IFsgMCAwIDYxMiA3OTIgXSAvUGFyZW50IDEwIDAgUiAvUmVzb3VyY2VzIDw8IC9Gb250IDEgMCBSIC9Qcm9jU2V0IFsgL1BERiAvVGV4dCAvSW1hZ2VCIC9JbWFnZUMgL0ltYWdlSSBdID4+IC9Sb3RhdGUgMCAvVHJhbnMgPDwgID4+IA0KICAvVHlwZSAvUGFnZSA+Pg0KZW5kb2JqDQo3IDAgb2JqDQo8PCAvQ29udGVudHMgMTQgMCBSIC9NZWRpYUJveCBbIDAgMCA2MTIgNzkyIF0gL1BhcmVudCAxMCAwIFIgL1Jlc291cmNlcyA8PCAvRm9udCAxIDAgUiAvUHJvY1NldCBbIC9QREYgL1RleHQgL0ltYWdlQiAvSW1hZ2VDIC9JbWFnZUkgXSA+PiAvUm90YXRlIDAgL1RyYW5zIDw8ICA+PiANCiAgL1R5cGUgL1BhZ2UgPj4NCmVuZG9iag0KOCAwIG9iag0KPDwgL091dGxpbmVzIDE1IDAgUiAvUGFnZU1vZGUgL1VzZU5vbmUgL1BhZ2VzIDEwIDAgUiAvVHlwZSAvQ2F0YWxvZyA+Pg0KZW5kb2JqDQo5IDAgb2JqDQo8PCAvQXV0aG9yIChcKGFub255bW91c1wpKSAvQ3JlYXRpb25EYXRlIChEOjIwMTcxMjAyMTY1NDMwKzA4JzAwJykgL0NyZWF0b3IgKFwodW5zcGVjaWZpZWRcKSkgL0tleXdvcmRzICgpIC9Nb2REYXRlIChEOjIwMTcxMjAyMTY1NDMwKzA4JzAwJykgL1Byb2R1Y2VyIChSZXBvcnRMYWIgUERGIExpYnJhcnkgLSB3d3cucmVwb3J0bGFiLmNvbSkgDQogIC9TdWJqZWN0IChcKHVuc3BlY2lmaWVkXCkpIC9UaXRsZSAoXChhbm9ueW1vdXNcKSkgL1RyYXBwZWQgL0ZhbHNlID4+DQplbmRvYmoNCjEwIDAgb2JqDQo8PCAvQ291bnQgNCAvS2lkcyBbIDQgMCBSIDUgMCBSIDYgMCBSIDcgMCBSIF0gL1R5cGUgL1BhZ2VzID4+DQplbmRvYmoNCjExIDAgb2JqDQo8PCAvRmlsdGVyIFsgL0FTQ0lJODVEZWNvZGUgL0ZsYXRlRGVjb2RlIF0gL0xlbmd0aCAyNjgwID4+DQpzdHJlYW0NCkdiISNePj5zUycnbjMnPHMzT2JrRUFqXVldLVFpPDQ+Py0tUjpJMyU4WS5lXyIuSFZDTyFNVys/Xz0rKkFScWpsPCxFQlonTjFQZTgqPjl1U1ZwMlNKVCJgaT9BL1o1PUpFdFhNQzpqOCM9Sl8yQl9fc18+YjdSOTU8a3BuPi08cy0uR1MqXGtAXlUjUW9wdDRlWTZxKWInRjEqQF1VLjs/RUMjYEQ/NmUqYCgyTjBtU1JuXi1NTU5GQi8vdFAyNENGV11GK1IxVmdoLllEWzdxRS4iM01YbVA6PytxOyNuLSk2VyYzNThVTkcwXiNCP2JdPUBCXXA6Kzg+PzQ/UlMkW29JYG1IbnBJPGo3dDdaND8mQnNRQHBSNzg3WEheRlg5aCdASFYkSVZwOjc5PVFrI3RnYjNfOyxPdU5GIy4pbFE9ZzpxYCR0I2RQL2I2cmlVYkZfc0txUjw/L0hWcy9pJj1TPWtCIV9RUSJnK1lHSjMiOz0rayxvcTNaY1I1KUY6QFgiJFglZjdeQ2tgcCVxN1s0STxcJUxYPz1cTW45NSFIcFlCOTk4ZkQ/MjdAdDJVTUk2MFsyJU90aVs1Sl1Qc11wdF1gYEhFRGYsNiw4QE1xWUU2TGM/NTpWUyE3SFQrQ0ZIKlRBUE41WTg/YHJmalRMK0Y1RFMtcl81UyVZITBCZSwxcFJEXSM0VWguSDRoMGgmUyEkR1hQXkI2UHVQRyxPMFBxblI7WThVSFtrLjRLZnM0XGM3VURcJ2RyclYnMUdKL2l1P2JocV5PNnU+MGI2PUVYcWNUIlQnMlZjKUY9UW5nKz1RcE1CKVFnaUxsXVtDYUJQXicxPF9wc0EyKDJXSCtRQVIyOTwoZ15VcFhoOlVmQ14jS2RLMm8xKUpOJVpLSG5JIkVjRCw+VEdcbUc4XWJvcD1uZGsjIlBCJWJcRSgwTjkrOk44TDc2KFNAI2FbaVghQSExRTRvXGxhKyZBO2pZXUdvJTlXPlQxOUcpR0hsN1hGLi8pYWtPdTFub2JeXkQxNzA8cilfaz0rcD1TUk8vKy5bUStrSjU4b2c+dDprVl1zITNqIm9LNG1fLVZORz46REVNUU5PXyEuKTAnUEpTS2dVNS0tV2IyOiMrOjZHPElVbVkiUUQuIy8/W3BoLD1VNkltZS5yajpuX2czRTQtRUhRVnVlKipPMiNVVVBTdWQjNmExK1ZXTVNqRDk5LGkqPSJCZS0mQWFeJDY1TlNaMzQ3UFxfOlIndF0jPHRGT0lFK2hjUTZcNUUlTCVuaG9wREZvUz5PXihIV1RMTWo3Py5AUDBYZDpXQERhcGdSL05gLjxbc1xyMlQ5ZThbUSVpSGJZNU1vMzJCQ1ZWaGFLLFZkXjVvP1ZNL2RBVDM5bClgVV5CbCo2QSsrZ2JTYVVVdXBMPyQsPmdjOFRqXD06T0VUS29vWVsoXS86SSEkXG8+TjxqclQqV25pW1pobGQ7SzYsUCJXVidwRFUmUzs+SkAvYVUpNVssXzZeb2sjKFVYQTRxbidJTWJsJlUxQ09AYCpbKSRBc3QrJDJrc29ANFRbcEwyQ0tbJzckO1BFKjx1a1dQNU0sKGtdWDZfOipUWE9aMm9eaGtecV4yKmkycjBeS209RitJRTYxM2M7VnU3NjBybjpDOEVmOEJTMjFwLmBVPWMlKDJORXFZckJrTGJvcypER1ErKDAoZ2BySV1KJix0PSxtREhuTlE1ZCxrKCswTmk2RnFaTVcqL2tBT2Y4YDtWYlk/SWk1UGFSbF46RHJZYickdFttZD5aPERhPDFcLiZiMGw6Z0RRZ0k1SCRhJ0dOQEtXViRIbEhLQmBHaStbYU5fc14oPWhLTi5hZ1heRiZOPzFKIUwwW0IoZVVvUG5PPk9QLEwrdCZcMF0xLTEsXyowaTgoLz0lZUY/NU9RIzNDJSMsMiNqbGc6J1UiVz07aydHJTJYNkQ2R1FKZlckOCdfRF9aaUlpWks0bUBpZUVcPmhwRGo3PyVMVWVxazdmOEkhZWYxQXAiXStRck4mSGhgYTFFVFNiIzYkXSUnaysmM0ljS0dwSFpral9ARklPNis5YyNPM11OSjp0ay1wYyUhWWJyWy5ScVIlaV4uVlgqI2ckRiJdWVNfZHU0M0pOcSlWP0I0YTJoX0FqQE1EYTo2NXA+SVsxWDIxUWxfODwlbXBUZ2VeQERqKlUmbTInXXRFIV1jODxHKzpSOVlTWUgsZVJsJC1WNj1acWY0ZVxqJEExNjxqRU05PzczPzhoUUxMWCtGPlVqR0pGa086Rzg/NjRbZi1Ec3FoOTEyPVI/IjRjUmBPLkdeJTdGPSlFYWdERU4nMExxJF5oNj5VaSYkPi9kPiRHLEFfTl4oVjtyS2UzLy5vTnNPczEuQCpwRGtIcVUoZGAxS0FGKS0/QUdoRjlvSl44aGokTCI5QkteRVYrSzpBLjlkUmgiQmJRcT1IOm10Kl1bYDdFbF8lVkU4PmwvUWBfTk1QSClZOGliOkg/LWBoXGM9VXQnSWFbOCtnbHEwTUhjZkxSaSFPXlpFIypSa2cmZ18mP2ZKS2c3S0F1Q2w9PT80T0lEcychZGc8VjhjaDQiVkc1VS9eczlDNUNSLk1cczhwUCI6Qz8/TCNdbUwiVCw9JFIhPypKOUMwViNCS3JPZGUzcigrajZRLGw8XyEyMy5ZdTBgJSEsa2A1cXFkMm5UbkBiSVctJDZrSUkxRUUzKlNiWVFJM2RtY11UJzJMWTElKEIybXBybzdAWVFxXTIwPDwrRyVecExxS2xsdUdoOGQ7TSdTK2lkJHUzYm9lPkVgXXJRaiFBSktCKmZTXzU2PEFBJ2YiYDhWVD4tQ1wmOFstSGtEQF5lRilbXFEyYjQtQnFpc24yRDBDY1xSWCFMS1BEckNhayxcLTNUazxoJkNlNFtxTk1URiE9bTlKKGYydHB1JzxWdERmM2pucShoUllYXmsuSzguVTg3bGxFPDw4ZzJOSD9MPiVuWz1KQmdZTD1lZE47ZmI0PyMzJ0xMTGQzRGk4WCdQNz1sXTVfTXBeYlYrQG9DaCIuLEcvKjBQR186KnQhQCJIQiUpOkcpVjs4JVlfMnRVX09tJENeTlY4O002cGUmZT1dKCwwY3RRIUsrMTA9Lmo7LilsTEhHQUs+TkVSK2kuOWtRKisnLS0yXCk3dVZsdU4nS3NAVGRAYEwrJlgidW4rQ2FwP1Y5OEtYWGxYcltuWWxGQCcuZyslYTBjNWdoYClLVSRoX1VkaWMwIz9yOEpxQEVaKENRaCldQkYnW0AxU0ohaWAhPiwvbGZHXS5cViZycGRtJyZwRkQwb28uXmleLUYqIlFEI181NzRdN2YtbVFxLVw8MmtjTEs8KEJIMUtgPUhyJHFJbnRYSExhIzJKLE1LJlUhM1BKWXNNLyIjJWZpXkNmIidQTj5rUExXIkRiWWtSOjUkXSIrazk/LVtdRXI0YiVTU2MxOnNyM0tLb05wN21fKytaVU5WUjFQRzkncEs+OCNAZktDYUNlXiEwMFwqaiN0N1IhS1lPUHJXaUZYSWxbfj5lbmRzdHJlYW0NCmVuZG9iag0KMTIgMCBvYmoNCjw8IC9GaWx0ZXIgWyAvQVNDSUk4NURlY29kZSAvRmxhdGVEZWNvZGUgXSAvTGVuZ3RoIDIzNjAgPj4NCnN0cmVhbQ0KR2F1YUFmbEdoKihrcUVBaiovOkVoMl1BYStNaFc6US5UZj8ySmw+clI5aFpgLGJfKEBLaEYyaGRoYS4zYTpyMW1PPy9naU0oUzYvMF8rRSokTlBiKHMxbidbSGshbUcpMGwqOSI7JC47IWwzLmpfPF84SzJuUWB0SD9mUFFbRms1OiI9QyxDLUtNMk0kU01QWj0xLF1SLi8/OmQkaXUqc0xPb2VfPThbaTJKQWs9XjYzUi08RU00QCZsJVZOPitUQUFaLWokWjdfLydSYG1dcVRGI1xPKmVmaF5FbV91IipObnRIaHA6Xl5vWDljYVZvT1FtQjtLVyxiNTMmMEhWM2o3YkVUcl5ARSssJiFuOzRNRCJZSDRrazZeNDoqXVlPOSRvKT9HXjModE1MYCFEZGdRby8jZGQnRWNjSW8mSmtqNEFiWClZbClAWDRwZyxySltLZ0dIOSdJbz1PYCQiN1gnZlxHb3MhWTxIIWdjSW9URGxZPGpQJ3JlUCxaMmErJ3A8PmlVO1xUQksxSTAoNyR0YzpYUmhbRlthS3FUQGhlQkN1R3NQJFRFKTttKDI1Zk9LYlpXZipxajUjb25mPXJnVCguRHU9ZGEyODw4WFh0Wj8iNypYWik0PWhfNzwlWFlYLzFyMiMiS2tabSJzXlhdRlxMSTBoPVMrdVpLOyY0RmtKNWEuMWQjN2dTbjtPVWcrbDxSI2A6blgkSSImUmUjVzNUSEJwJ1NwbV44WjQoLHQwaWlTWi1ESyVQcGlocUBiKlcjdDc+RiYwYnI5L3IucWB1M1wsRSJuaEYhakUrY1xZRlwjUHE8bWJnXlk0X0QiLjZhRV4yLCovbSFBSSlFJnNGakosNXJZWGkyaV0ib1RQbi9COT4qQHJWaVlUc15fNV43MEsqK3M0PFwuSiohVjU2V0Q3MFVlSkBhKWdvJiM+YGE/RWxqKWkxTXJsLE0vVmkkYVRjb0RUIy1wSyZoNUMwPTJ1cSQ3dVJBSG5VQSlVdWAxIUZdU0c4LUc2MktyOD5MRl1LT1g3UlsoOnNWZ21cOXI4O1w+Q3IzRmBncDBOVitCJT9ULDlWVVcocmRQN1M9dW4lbFFKbkBVYkk9QjMrKjluX0dJJXUwOWNuVDM2JGdba1dALSY6T1NPIWZBXGBcQUNUNUhlTmttPWM6PE8sT2MvOjpoKVBMczJabCxyKjY8WVBSUiFWaDFwbEAyJCJOPTQnMiJrbTJLQjlzUXRlPUohdVNqUiVmM3JwS108SUQsVEhucCQlb2xZL08vMDlQQz9NXjclOHBtKyo5cW0tL21rOkRyLXUvNTBwNDcyMCI0Pi9lNnNtT1dAK25CUFRAMS03S0soXl5fXWUnM2xBNl51VywoUV91QDUwViEwUjs0a0ltLiI1LG1BTlliIUZcQ0t1N1FrNnMtRF0ib20qU0t0M1YpUy5mSiY7R0AzU0NqU11BPWVUU0dpYltidFZjPEtILzpHMTEqITVfKVpGPW5ROzZhMzlnN0gtc2NCW0gxKyhHZiksM2NbQGZdRic/cSVrO1pnLzlWUDhBNyRManVsXUByck5nWyM0QSc2VmdOLS9fPzZPMEBUXE1NdG9GREtaWldsUU0jXWdQbkQ5UCM0UTVrXTUjXF9zblQoNFQiaTZnTUJtRmonNU5rOjg8KyRaYmolJi9ddTRMQ3M1Ik81LzFqX0g6ciUma2BMP1tzVkBGLi0yOk02NVRocTVtWWZtYjZjVEcjWGEqU149J09YWmshRERTIVdYJzxXIkZZK3RSP0NcPF4/MmVxX1VVPmJYQVxsTlIkKl1CNDkvcnRSSEVJZ0E/U2IvdSRwOSlPT0NKPUIhTWVJSlxGJSQjJ0UuNjUlOS8uOTA3MG1tR1c1KGdxOWNkUzptMFBRXjFJIidxclpfbCg3bXUwK2VDdFcqZFdqPiFvNTN1IiVTNl1MOFwhdDFlVkpgW2wrcmVzNlo6LVFkYUk2MDlMUltxV1hCZ29mISRFcic2V09MNiU5Ok42K0xWQTEzIkZUSSlfLGtiZUU7LDpWTWshKFZyJE8sISphLSNQUCQ3TTdhSDZyPS81TiVMOFReX1kwKz4xbEg9P2VrLTxZYmUsQ2lQP0FmbzIyPkMuWUZuV25zZChsLUxpOC84WlssNSZhVXFxJiIpZWQiKk9eMS8kTnE2SzlrZFJIP0k5Z0ouQ1lwXiVxb2hvXTs+TjJAbkBiRU5HOGM6PD9iJCcicixrcF1EcjhSQkNTSTA0MkhWSydAdGgjRjM0LGBKJk4xQUVqRkMiaDxoR3M5PCRRbW1VO0chSjxCbzc9O0FOY2JBLmAkLV5kXl0pTmsrJUBkKy1rKyVjJVJJY0ZfbCpZSVFtP2NKTWhRWTJiLU9oZVE/blw3M0ZJVU8rTEg8SjxIblwjUkZ0cVx1WVM/VkY3Y0UwcD8tZ1BtWC5aamNUTC8hVilcOCFbQUswWkQnNCVxRShjSl5dPSEzOWNeZyJvUFRKMTs8TU5pT282IVdOb2RxTTMkLmdWWCQ/LFdcTHJXZU9CKitmdDJsL0xoP280WmFLJEZcXThLblU9U2o8I3AmJzZQMiIjbUdiIiJiOCgwVixdUzorYjtmS1w+KyEkKD4rYXBRSihoWjxSMSdfMFhqRUJnPkI3W0Y9W2szJ1EoNVozYmxSYF9xRjpAazhTZzlXWSNMLl5lX1xqVFxdQnNkNE8/NUU6bHFiL1xpZTJ1MmA3QElNVGRwYVJEUyY5ISMwLjhlVD1hTWNTQDZaQCxZUV84XitMLUExM0FaOFF0WjtUZS4mSWcrZ2pHWS5VNnBgKk5PYkBXS0w0Nzg5TCRKW0kjLllRJnMwRE5IOC8mTlk/WjomNV8lOidkbFJgcEFBSkwtKk9kVW5tJidROjwuXEFvPSRwRWpjaUMnMUw7aGsrajZ1Zl1hb2k7TmMoTTJEaENiKi5HRC0uWWIuMUZcO3IxNGY8RGlhYjgjNWBKaSFva0xYPFsjS0QvV14wJ1J1TWg6O1tRWmBGRnBXPSwtQ0IiUyJHT2ZhaTI9I0Y5TD1YKzleJTNNS3NcTlA+TGdNS2wjPzVFZjFDZmQkIlJoQmMlYkVnXSpCdTxWXzhhK1hMR2A6NFdDQVFsWmldZjQiTjlMfj5lbmRzdHJlYW0NCmVuZG9iag0KMTMgMCBvYmoNCjw8IC9GaWx0ZXIgWyAvQVNDSUk4NURlY29kZSAvRmxhdGVEZWNvZGUgXSAvTGVuZ3RoIDI2ODEgPj4NCnN0cmVhbQ0KR2F1YFY/JCJhWSg0R3E5czIwOCNbYzklRXBnJCtcWi4mKkNlImk7WEk6YyNAaypkUHBKa0YmW2xQQ1pFUC1YMT9cNV5JWHEyPCo1K1BfVSVGIl4pIlEhXj9hUjhqNyUwJmInJSFlZUYyImlQVjQ9UGdqZG8pLmtDby8hLHEjLUpXWyxZbC1yam5pMidJY2VTcV5SRmlrPVkxUl1TZHRqQSpVOD1tPzUiRCEjLTRBLTZPTmNiMjpSJm4/ISNOdCxkM1lzNkFUOlRiNmhRXVYoTVFML0g2KyRUPVtSUm1rWiliJy4sT1oiKXFDQm0lMUhrQ1E8clpPdVFiZmArLVBVQTUwPUMkWE9wLXBPKHReME0yUUk1UF9gImB1b2VzM2hHWXRhUC5xKFlvZWFdKyZHIklAYyIhRDswKW1RK1dcSzFoR0VjdFxnMlk9MltUTDxhJ2ZVJmQ/aj00aDBZMkRPUGNiQ3MuXl5PPixEZlZEXz1ealk4L19FZ25mLnVvNkxCJj9JK1U+JSRWXE8oa11TQSNiTiREOEw1YFFaKilRIS8tIj4hZmZhLGktIz5OTlM5ZTlQRl1yRUhdblclaWdQWE9gRSI3aEZMQnNUO0dYNClZMG0vOyEnU0UtcSQpb3VlYXBZP1tULDFSIVlwIjRbMFFjT1omIy4sT05lVzwjYGthMnVLRipNSyp1Y2dmNSNQajhgdTY6JiI8anVvXDdLIlRwJ29HMlFXYltuPmxKViRZaClsWVBYOFxbVmJPPkgwXzFxTEBgdV5PMytjMmAqcVBnZFFCaWhFLykhKStiIUlqciFaLFFuTSEiU0oxa2BnU206XiRcQEkuSDpBRGswQD5KTVBFakkjLFdhUy9Mc3ImPVlBUUsjV0cmRiNuRFEyVyJCJ0hHVzJFM0hNPDFmQkldVW5rLFw6YjkyP2lAajBNVlByVD9VKyxmRCY/OGEwaEFTbCxxXillWCdkREI+MHRnQidWW2o5bVVpampMR0YrIWNUOjJsUW1nIUVtb08kKlRSOnBqSik2WU9AZiVpa0JTKlBMTjJXMywmYE87ZXBWWUZMZ0dCSk91YCInRXBKbFExI05sSyZsLiZMYDdeZUxhKnBeRC00QmldVWNrSCJeNzlgO18/XD0qXzFPJGkrcGteVlpuUDdyTE0uW2tcN01KSWBrQF5ULzpjVW0sYCVXSElJZF9vbioiO0IlVnA1OjVRJCJhU0NRVyxHUyFVJ1xCOk05Szw5JGhFLD1TXDBFV0BJUj1ZKihIbVU8TktMT3Beby1Lajk0O01JOmwwTm5QUW4jQ19qZD5JK04kUmlyJUlbQS9dXjdLSCtpJUBnUDotIyJcNU1dcD9nLyQqck5bUFppIkpyLGxlNCloQl5NbVA2SyNgRk9pa3IqKXJnMHImcGU5KFJlaCJNXkdDdFpTbzA5RVgzXjtzR1taayFZKk90Jj4rXDswRy8/PHU8J2k1PXFWWUJTVFZoci5OMV5mTiQ4cS8pJDhVKDQ4O11AQC9Yb0lDZE4uZ2dcZC5ULyRbTUNwTkAzMVheU1A9KDc6NThCNiJJIWloSF9ucDs4RC5VUj1aJk1vdSM6WixqQSNHLVIyQ2E4bm1qOzJaISRBWj05L3RNPi5NJURHVk4qSTtROk1IUVJTWCpJOFNIKDk1UD46ZkhNNSNEX2FDRWJPLVc/JyNsXDRJaEEzKWo+LSdmLmw6IkJbJT4zQkkwRTVzWUFDTiNlKTZfZEFjISM/QjhYOSRhMD4tPnFWV2BEN1JjZkM5WGdHREokXSNzaSQnJEtePUhVXSpPWVVTLWpGWWIiTl9Wa3NNYmE4RnJVLEhhKidJaWNwPCtGNjI7VW5TWkI/YTs/LEVhWE1CMTc2KUpbN0dSb1RxQS1oRSclKEcpMlU9Z0pHbS1HJWRmQXEzRWwxTjcsTCxLVkpwXGlCXzZiMVtrWiUlbUQoPnFWLDAsYUJrOU08cDhhZ1FHaWNNNycuN0AraHVOOGdUPiEuU0JOQ1cyQzgwWlY3PyNjVFVXPEJIZlxdaGldXTRMYi5wMlw9Pm86YGQjVixtRWdjMVMnZHQvLltmLlNQaikrbiJDSkFYZCFXQUJxNkNrNFA0OyJXKVFQWUBCcWs4b2xIKF9mQVxAX2U0MTRwSGYnL1dHOGFDNXVeNkFQdUdRJyEiKUJyXygtUThYSmxuZywwTGImM2YiJkQkQDZBPUhTa1ReP0ppJjhMZSZoNiFoNV5QIi9uIi9cTmd0cVJrXz0rKnRqQi1RJSN0Ry5UW2tdLk48NyFtNy5PN2IjS1FPLCEkUllYWigpLG4pQjdNJj5BVXJLb0ZRSGJBN1o3RWU+WTRDUDhoISE4MGhmbjYobDdYTihnS1pAP0VbSlsybjohUV10MyxaQnMpayJNSz9NUm1qb3VlIylLV08iczNTYExDQmQ/YyFfV1A/VFByYyJvdW9abmFsZyc6JVtHRSxAW0xaITlNPkcxMlMpKGVkTzEoUWA2bFFTYV1ybC9HZydLb1wuSEk9MlZuJFEpLEY1ZGs8IkctIS5XPzJZcCpUMyhvT2w3a3JASjhSWiNLNV4tNyxCXS5zJztFSWZHX20rQSwrdW5mSFdwJEBmaVJmbFAxTl1gWW48Sz9wQzopb1Y9Y15uV1QvJzcxU3U0QCktNU9QTjRyR0trTztrXEdmVV1FSzA6QmQiTUcnUjprRlx0J09JS0NlYyEkMkhJL0RYRS1eU0ZaWFVMSU9qVUcucUdzbmAqIXInQS07STFCZyp0by80WksuJk5nM1BCaCp0Pi1kWHJwL2kyaWcyOnMjcXBcbU5JU0JsXWNuWjRHUT9VVipOI2kqR2FBPDxGZGtuIWFgY09mNy4lUl1fciM6RFxnckQ/LUIkWGRtdDkkMFRqZz82Iz5CSiEiPGl0KnNFMSssaWQlLmxtIyRbUVg5TD8mU1NyN3FqLCZNWThVX11qMT9aYCslQ1VHPEJlWD9EOnVvL09mUjlRJCsyaiMsRVhwQy5mbXJXU2hATGhOa2hPWT5ZXkA1cD01XmgmZzwsZiZbRiQhSkI1W01ebzsqQCkqYVFZUj1jbVk1TWhYSTU+XD5BMHI6R0tmUjhNOEhgQWxcPVpiM1RUJTcwL2MlXDAqSy5dbWVNcCdUNCFfU2NeUjYlOyFRcSdoU1QldWFsZyYiU1tvVEAwLSMpTW9bIzQ/YlsnZDtTXmdZa1xGWm85LTVULSg8Ly1FIjZ1QWc0PVlhVDA3Qj0rbDNdTzlCWGEoPyYwNWUhM2xGZT9hLF8zKjFHdUlqMlVqUHVLM0RSVnVmZFtbKlYsUURHISdHRSZLNlNLZVRhalZmP2JpSF0tJSlQU004SFxNQnFaQWtOLVI4ciJMKzYmZmZZMk4wJls1XnRVanEqKCYvRGB0QT1ML0pCbkpmM1BQSWw0W0glZTpIMlRGMU5paDE7RCc0ZFpBLUlmJiU3QTtkVkgwTTU2RTtmKUosXUQrMl0zQjExM1NXNTQkRW1CbW5hcSc1YzgrRkVgXklZIkQwKGhiV0NWZFNyLWIhU2hlKUBzSWVKOEBUKFVKfj5lbmRzdHJlYW0NCmVuZG9iag0KMTQgMCBvYmoNCjw8IC9GaWx0ZXIgWyAvQVNDSUk4NURlY29kZSAvRmxhdGVEZWNvZGUgXSAvTGVuZ3RoIDEwNDcgPj4NCnN0cmVhbQ0KR2F1YFM5NWlRRSZBQitRSiFlXiU+OWpYNyt1Y0RgW1RIcGFCcXIrTFhbRk9PLGdobUEoQip0SmFhMW1WPkxVYCdARy5tLHEpSUdfaG9zRlUuKSZnYFI/ZGlWQF5wYS1KOHBDU15hLCRSXk9zO11wJDFqaGA8S084TSkhNFY6cHIvTmJPcGAwZktdJnJIPCMpZyZJJC0laUJoVXFBLmlWXmdEPVBFQEsxRyhLLzshUmloSWtAKkJlK0VSUigycWsiWDo4NTleIi1uVmM4ZmtyS0swJzViOWsnLzdeKUdPTz40ZUtKbk8vLmtAPmZybzI+M29AP1VZPHFfRjE7XC1ELWk/NC5UbCoyWVAmX2BwU1dPdXE6RnFKUDtLNG1tZlhGRWEnSXRGZ2w2MCw0RUhCKUplJWBnYWlkWnVuP3A0Qkg4LEtoRSVlLVU0b3EuPllNM0IkOFk6aUBQUyImIXJtWkslYTM6SGJEcTotTnVVNm4qSyNCI1JoaUZVY1RXaFU7NCVyKCFsXVhlOV1LbCgtQjxKaiNEXzpQKlVpUltsN1JQcS0jKjFYSS1dIjYucUgmPGspZi1wKDpqa2glJydrRmBMUUZsVjdQKm1oPlZHQCtAM2w/X1lwNSU7RWo6IWY5NSpXUk4jMWwrYUc9aDE6bW43W0YrcFpRRmAhVSdnO0ZzOS8xYEltPDNMdF5AIzpQOmUyZkY8P1ZeXiNebmQzU20tUm9zbiwiMSYvJkwhJ1khPGU3NVdfaztQJnM6dVNwOzMyPTE5KFg9VDchNGtwXUlgKS0xS1dUals3UTFPNG48NmNuY1ouQD5vaiZkPXRiOypXW3BtMExWbUpKczdELyhxdDRxJTk+V0lVJCxJMSpqNjI4SCErVTRrOylRZjA6S2Q2Kio9SFBXQTVjXHExJWRJOVl0RSlYMz1RbEpAcmBdXko0IXBXdTE1cFJvMkBlPy5nZE5lMW4lWFQ5bEpZOjEvUTctVmtJYydQL3RrT2UtTnIjNXRWSzxGViducnE1MDRVOkpUXyVFKEpnX2JNNyQhTmhZWVRQa0hLaDx1Y1xNS0xZOT9GbUxaPW03LWlhJ11PJCpxOT4tZ0BMK0IkTThpYXAscUs2a1s7NENZTVldaCw9XDFRJUtlSGBKPSdEYDs3SSYyWDNQKTJFcCpkOi5UNCdXNVdwMHUsdUozS01KdFclMFMnV2VVTUdWOTUhRnAkUFs8QEpZdCIkV2ArYVdqJGpzPTM7Y2pJKUAhaEs2MGs/IkUuRSRITF8oViU7OlYrRilVIWAqPD9vTy5sO1RqIiZPI0hLK0ZsXUspaFkqQUw9PWcvNGgjQmtwQDFmJDpaNyg9TmRgVTAzP1VjdDorclpdU19yIXRTS189VVhZQXRHLH4+ZW5kc3RyZWFtDQplbmRvYmoNCjE1IDAgb2JqDQo8PCAvQ291bnQgMCAvVHlwZSAvT3V0bGluZXMgPj4NCmVuZG9iag0KeHJlZg0KMCAxNg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDc1IDAwMDAwIG4NCjAwMDAwMDAxMTkgMDAwMDAgbg0KMDAwMDAwMDIyOSAwMDAwMCBuDQowMDAwMDAwMzQ0IDAwMDAwIG4NCjAwMDAwMDA1NDMgMDAwMDAgbg0KMDAwMDAwMDc0MiAwMDAwMCBuDQowMDAwMDAwOTQxIDAwMDAwIG4NCjAwMDAwMDExNDAgMDAwMDAgbg0KMDAwMDAwMTIyOSAwMDAwMCBuDQowMDAwMDAxNTE2IDAwMDAwIG4NCjAwMDAwMDE1OTcgMDAwMDAgbg0KMDAwMDAwNDM3NCAwMDAwMCBuDQowMDAwMDA2ODMxIDAwMDAwIG4NCjAwMDAwMDk2MDkgMDAwMDAgbg0KMDAwMDAxMDc1MyAwMDAwMCBuDQp0cmFpbGVyDQo8PCAvSUQgDQogJSBSZXBvcnRMYWIgZ2VuZXJhdGVkIFBERiBkb2N1bWVudCAtLSBkaWdlc3QgKGh0dHA6Ly93d3cucmVwb3J0bGFiLmNvbSkNCiBbKFwyNjY6P1wzNzVHcVwyMzVcMjQ1XDMxNWdcMDM2XDI2NkZQRk0pIChcMjY2Oj9cMzc1R3FcMjM1XDI0NVwzMTVnXDAzNlwyNjZGUEZNKV0NCiAvSW5mbyA5IDAgUiAvUm9vdCA4IDAgUiAvU2l6ZSAxNiA+Pg0Kc3RhcnR4cmVmDQoxMDgwMw0KJSVFT0YNCg==\""}],"_postman_id":"e05e6236-1f88-4378-ae78-a2d1628ed2b8"},{"name":"Retrieve an Invoice Summary PDF","id":"fb27e7d4-5f8f-4fc1-aa65-4947d70838d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"}],"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_19abed87732bf08e56c01e531d2ba1459f7aa078/pdf/summary/","description":"<p>Retrieves the invoice summary PDF for the given invoice hash as a base64 encoded string.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>inv_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a base64 encoded string of the Invoice Summary PDF if a valid invoice hash was provided. Returns an error otherwise. The output has to be stripped of enclosing quotes and be decoded to PDF. </p>\n<p>An example call to retrieve and decode may look like this:</p>\n<p><code>curl -H 'Authorization: Token 86eaa6eb40012b5d305437f7dd31d2200f46f813' \\ http://local.simplelegal.com:8000/api/v1/invoices/inv_d54fea2a71a9486a2c619a3cb0551bcd2fc0c1ad/pdf/summary/ &gt; Invoice123-Summary.txt \\ &amp;&amp; cat Invoice123-Summary.txt | sed 's/\\\"//g' | base64 --d &gt; Invoice123-Summary.pdf</code></p>\n","urlObject":{"protocol":"https","path":["api","v1","invoices","inv_19abed87732bf08e56c01e531d2ba1459f7aa078","pdf","summary",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"5d99185d-db9c-44d6-88ea-939a84d61902","name":"Retrieve an Invoice Summary PDF","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"},{"key":"Content-Type","value":"application/json","disabled":true}],"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_19abed87732bf08e56c01e531d2ba1459f7aa078/pdf/summary/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 03 Dec 2017 00:55:23 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.6.0","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=pebmkgaciz9xrza8s2qrpairhrag7hcj; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"pebmkgaciz9xrza8s2qrpairhrag7hcj","key":"sessionid"}],"responseTime":null,"body":"\"JVBERi0xLjQNCiWTjIueIFJlcG9ydExhYiBHZW5lcmF0ZWQgUERGIGRvY3VtZW50IGh0dHA6Ly93d3cucmVwb3J0bGFiLmNvbQ0KMSAwIG9iag0KPDwgL0YxIDIgMCBSIC9GMiAzIDAgUiA+Pg0KZW5kb2JqDQoyIDAgb2JqDQo8PCAvQmFzZUZvbnQgL0hlbHZldGljYSAvRW5jb2RpbmcgL1dpbkFuc2lFbmNvZGluZyAvTmFtZSAvRjEgL1N1YnR5cGUgL1R5cGUxIC9UeXBlIC9Gb250ID4+DQplbmRvYmoNCjMgMCBvYmoNCjw8IC9CYXNlRm9udCAvSGVsdmV0aWNhLUJvbGQgL0VuY29kaW5nIC9XaW5BbnNpRW5jb2RpbmcgL05hbWUgL0YyIC9TdWJ0eXBlIC9UeXBlMSAvVHlwZSAvRm9udCA+Pg0KZW5kb2JqDQo0IDAgb2JqDQo8PCAvQ29udGVudHMgOSAwIFIgL01lZGlhQm94IFsgMCAwIDYxMiA3OTIgXSAvUGFyZW50IDggMCBSIC9SZXNvdXJjZXMgPDwgL0ZvbnQgMSAwIFIgL1Byb2NTZXQgWyAvUERGIC9UZXh0IC9JbWFnZUIgL0ltYWdlQyAvSW1hZ2VJIF0gPj4gL1JvdGF0ZSAwIC9UcmFucyA8PCAgPj4gDQogIC9UeXBlIC9QYWdlID4+DQplbmRvYmoNCjUgMCBvYmoNCjw8IC9Db250ZW50cyAxMCAwIFIgL01lZGlhQm94IFsgMCAwIDYxMiA3OTIgXSAvUGFyZW50IDggMCBSIC9SZXNvdXJjZXMgPDwgL0ZvbnQgMSAwIFIgL1Byb2NTZXQgWyAvUERGIC9UZXh0IC9JbWFnZUIgL0ltYWdlQyAvSW1hZ2VJIF0gPj4gL1JvdGF0ZSAwIC9UcmFucyA8PCAgPj4gDQogIC9UeXBlIC9QYWdlID4+DQplbmRvYmoNCjYgMCBvYmoNCjw8IC9PdXRsaW5lcyAxMSAwIFIgL1BhZ2VNb2RlIC9Vc2VOb25lIC9QYWdlcyA4IDAgUiAvVHlwZSAvQ2F0YWxvZyA+Pg0KZW5kb2JqDQo3IDAgb2JqDQo8PCAvQXV0aG9yIChcKGFub255bW91c1wpKSAvQ3JlYXRpb25EYXRlIChEOjIwMTcxMjAyMTY1NTIzKzA4JzAwJykgL0NyZWF0b3IgKFwodW5zcGVjaWZpZWRcKSkgL0tleXdvcmRzICgpIC9Nb2REYXRlIChEOjIwMTcxMjAyMTY1NTIzKzA4JzAwJykgL1Byb2R1Y2VyIChSZXBvcnRMYWIgUERGIExpYnJhcnkgLSB3d3cucmVwb3J0bGFiLmNvbSkgDQogIC9TdWJqZWN0IChcKHVuc3BlY2lmaWVkXCkpIC9UaXRsZSAoXChhbm9ueW1vdXNcKSkgL1RyYXBwZWQgL0ZhbHNlID4+DQplbmRvYmoNCjggMCBvYmoNCjw8IC9Db3VudCAyIC9LaWRzIFsgNCAwIFIgNSAwIFIgXSAvVHlwZSAvUGFnZXMgPj4NCmVuZG9iag0KOSAwIG9iag0KPDwgL0ZpbHRlciBbIC9BU0NJSTg1RGVjb2RlIC9GbGF0ZURlY29kZSBdIC9MZW5ndGggMTI3MSA+Pg0Kc3RyZWFtDQpHYiEjXGdOJmNTJjpJV0ZyaDNbc2pfUTIhPHRLWCVaRitbRUU/IzpzLlpaLCFIViRlZiI1JHJbcj0xYWk5QURYTVo8T1VnImZWPD86XFU6Kz9wTyIwWl9QOD1wdScjIk5XQmY0RFpEU0dKXC1GZ0c8I0BQKjhvZ1o3X2c1NGo0UkZzPyZgYFciOCxtMjFQWlJQPkBpX0NIO3JSbC4oKy87SVc+PkpJISxfPmpsUSdWW0JrRDZlYFk5KG8lUkFmXk91RFJrMz9hVVwqIjxGM0xsRTdFcFRVayhJI3BVKE46R1BhQ3NsY0pJR2FnOyVwSDYxMDtnIkE0YWxFOF4vP1FfdXVRUWkkMT0yJ2YuNi8rUEtTbjdDXFhcLmtZWDVIYjROX29PS0NcMDlQMUhDTi85OHFMT3VoXENIdVIoPiJHQGJrQiRTcCtLOFY6clBnQE9DYjdoOisudDtgdUxLXTxJYVFKJkBdIkhTWjVkWGhFVitDJytxXTA3KihsMENJL1JqKVpgZj8kZGFaOlpPK0tRXC5oZF9mOkAuJ2NMSitGX0FPQzMiNid0TEQkTlM4SV5Vaz9TOzsmbktVMF04U1YiLDgxTmNZR1NWbCdcSyJLPUo5ZWtvKmEkUCRVSj5JSnJgMW9ybktmWFxcZz5NOXFITUJaRChgWnU9YDNCOGtxNTpmWmlHZ2dfMUNmcWwoLSdMYDJSJzRFMkVvQnJtSTVrMDdzYEhdaE0yQ3NHQl0wc1cqQEkuS1pFayssZU9hKFwyKlM0U1JsRilTMEglMTFNMVM5PTAnZmk4aXIzREIoby5KNk49IzxEbV9ra0w5SSZ0WGQ2KHFQRmdvJmtcV29saCNzPXVkcV9rLlh1dGpARE5oKEorYzhlQmBlS1deRCtlbltdcTUxRC1jM0B1VzRaVTBMaVYzS1llUGlcKGksY1ZlZ10vZ0JaMFgkKmd0LVguYSQiKnFPKWVJZisqWzZrYGZmTk0uWFJUYDMkJmxaUzJdS1JgO0lJJj84aGlJRV4zLFF0O3VBIU82YSFRdVlQb1pGWzdtXFt1cj9ZMiQlRGBgUC9MZGwqOm4zKXNfMyhMYz1abU5OV1BERHU1c14ickJzMixcMjUyYGZQX2NocU40N0w1ZDdMIW05UFI6MkVJPDRhQjcuby51U1FeNnJPQVtPM1kjKCNtSTZsSy5sQU1nL0MyZU8iTmRSWi5DLDUhM0skUERvLFAwJUAvUWNzKXFRbD5VS1ohUW5iOU1fKzApSE5Fc0tNUllZTWIoVzVsIz4nUG0tSFtQSUBxaj85a109WF4maHAoXUdKRkluajVRc0k1dW5JIjFHNFRYMkEoSVs7cyYvOj91ZTZRMytsO1MrbENeTyNjQ2JRUU43QXA5NTZSUzU2bGZKTU1qVWVZV1ZlYzZQXXVrIk8pPl05P1cnaGpyRDNhJVItMWVDbSZVQCVvR0lCSWAqYDtVNmVkKSFoJm4mWHEvRGBEXS9aZ1VCSnJlMTN0KnJcIm5xSkZoWSlCWE1MN2MoZSNQSE8mUjhxLnNpSGtBNSo2Z0BTa2QtU2ZFUVZzLyE7aF5GcXNpayIqTy5aayJhVCZCUDc5cTdxZj87XCpHJj5OZjJeRVU1XydFSnFBQmBkbGU1KCZ1J0dxQDJDRGdASlIoRG9BbWxQRSlTW1NxRSkqO2cxOzRvNkV+PmVuZHN0cmVhbQ0KZW5kb2JqDQoxMCAwIG9iag0KPDwgL0ZpbHRlciBbIC9BU0NJSTg1RGVjb2RlIC9GbGF0ZURlY29kZSBdIC9MZW5ndGggNDYyID4+DQpzdHJlYW0NCkdhdD1oPnUvPGsnU2MoQ2xwJSNgQDBDcWdGV1pzI0BQQz5MRzAqSXQrWDsqSDtGQ0JWRnAybSQhNC9ja1JlSEIlVDxsdV1KYG0+NTU4PTBoKSIpXFU4ME9RKkg3XVplIUJlPC9va0BYP010SkokREBwYnVNNCdWTltcYGBYPzdwbjVCSVVOVlU4Lz9AVCIuYVVLUlBpJlY7TmlKWk5lPlVMaTg2bU1lT0liZipAcEdqKWVbPSY7YF1LJ25BSjltTS5qcWEiLDowaVhORmhALGQuLlxRImQ0LjpHZFNyPUMvUkxjSF1fUCJgXGUhc3AuJ0MzUjhObTBBUk5YMldec1ZCcWAyckRnS1EwUjNEW05wIUlNYVsxU2xUaWIsIUM2N3Eva2lRP25aWXBbLEVhO1x0LDsnYExZLUNPSnIiXz11XjJfOUBLIjRgMVlgXCFGUHRpIStiQ2o0a251clwpb1ZZZ1tfc2UtLTtDVlYxW0QkbkYkXT1zZipXPy45SkVTbHRNKFdEPi5wUGo+XDBOSGQ1OEUia1tUXFZ0ajxHWVo/UVxxWl9UJyRpNkE6KDhKOWZucycja1kobEonNHNtSHBTYF5wXFtsPU1qXC9+PmVuZHN0cmVhbQ0KZW5kb2JqDQoxMSAwIG9iag0KPDwgL0NvdW50IDAgL1R5cGUgL091dGxpbmVzID4+DQplbmRvYmoNCnhyZWYNCjAgMTINCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDA3NSAwMDAwMCBuDQowMDAwMDAwMTE5IDAwMDAwIG4NCjAwMDAwMDAyMjkgMDAwMDAgbg0KMDAwMDAwMDM0NCAwMDAwMCBuDQowMDAwMDAwNTQxIDAwMDAwIG4NCjAwMDAwMDA3MzkgMDAwMDAgbg0KMDAwMDAwMDgyNyAwMDAwMCBuDQowMDAwMDAxMTE0IDAwMDAwIG4NCjAwMDAwMDExODIgMDAwMDAgbg0KMDAwMDAwMjU0OSAwMDAwMCBuDQowMDAwMDAzMTA3IDAwMDAwIG4NCnRyYWlsZXINCjw8IC9JRCANCiAlIFJlcG9ydExhYiBnZW5lcmF0ZWQgUERGIGRvY3VtZW50IC0tIGRpZ2VzdCAoaHR0cDovL3d3dy5yZXBvcnRsYWIuY29tKQ0KIFsoe0RcMjMxXDI0MFwwMjEvaSJTXDMxM0RcMzM2XDIyNFwyNzBcMzI0RCkgKHtEXDIzMVwyNDBcMDIxL2kiU1wzMTNEXDMzNlwyMjRcMjcwXDMyNEQpXQ0KIC9JbmZvIDcgMCBSIC9Sb290IDYgMCBSIC9TaXplIDEyID4+DQpzdGFydHhyZWYNCjMxNTcNCiUlRU9GDQo=\""}],"_postman_id":"fb27e7d4-5f8f-4fc1-aa65-4947d70838d1"},{"name":"Update an Invoice","id":"1b40fda3-df73-438d-a1c8-b2999ca0ea3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Paid\",\n  \"received_date\": \"2017-04-01\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_19abed87732bf08e56c01e531d2ba1459f7aa078/","description":"<p>You can update an invoice using either the <code>PATCH</code> or <code>POST</code> method.</p>\n<p>Updates the specified invoice by setting the values of the parameters passed. Any parameters not provided will be left unchanged.</p>\n<p>This request accepts only the <code>received_date</code> and <code>invoice_status</code> as arguments.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>inv_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>received_date</strong></td>\n<td><code>date</code></td>\n<td><code>2017-04-01</code></td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td><code>string</code></td>\n<td><code>Paid</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an invoice object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n","urlObject":{"protocol":"https","path":["api","v1","invoices","inv_19abed87732bf08e56c01e531d2ba1459f7aa078",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"526006e9-b008-48d9-bbb5-8895bf51cc27","name":"Update an Invoice","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Paid\",\n  \"received_date\": \"2017-04-01\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_19abed87732bf08e56c01e531d2ba1459f7aa078/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Tue, 27 Aug 2019 20:42:55 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Length","value":"89604"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, PATCH, HEAD, OPTIONS"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Set-Cookie","value":"sessionid=qx88npx1rfkqo99zigpekh3528u66rab; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"inv_19abed87732bf08e56c01e531d2ba1459f7aa078\",\n    \"obj_id\": 5432,\n    \"vendor_id\": \"ven_b78675eff0770ea74cb6456743234af43cf0cac3\",\n    \"allocation_summary\": [\n        {\n            \"amount\": 32544.55,\n            \"cost_code\": \"100.000.200\",\n            \"custom_attributes\": [\n                {\n                    \"code\": \"10001.12456.122.36\",\n                    \"name\": \"GL\"\n                }\n            ],\n            \"entity\": \"US, Inc.\",\n            \"matter\": \"Patent Matter 10001.ABC\",\n            \"native_amount\": 32544.55,\n            \"other_attributes\": [\n                {\n                    \"code\": \"10001.12456.122.36\",\n                    \"name\": \"GL\"\n                }\n            ],\n            \"percentage\": 1\n        }\n    ],\n    \"api_url\": \"/api/v1/invoices/inv_19abed87732bf08e56c01e531d2ba1459f7aa078/\",\n    \"approvers\": [\n        {\n            \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n            \"date\": \"2017-12-02T16:43:36.065294\",\n            \"email\": \"bsmith@example.com\",\n            \"first_name\": \"Barbara\",\n            \"last_name\": \"Smith\",\n            \"status\": \"pending\"\n        }\n    ],\n    \"attachments\": [],\n    \"billing_end_date\": \"2016-05-28\",\n    \"billing_start_date\": \"2016-04-01\",\n    \"currency\": \"USD\",\n    \"exchange_rate\": null,\n    \"final_amount\": 32544.55,\n    \"final_status_history\": [\n        {\n            \"date\": \"2017-12-02T16:57:43.251216\",\n            \"to_status\": \"Paid\"\n        }\n    ],\n    \"invoice_date\": \"2016-06-27\",\n    \"invoice_number\": \"33645150630\",\n    \"invoice_subject\": \"Lease Review - New HQ\",\n    \"matters\": [\n        {\n            \"client_matter_id\": \"outerapi-5801\",\n            \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n            \"close_date\": null,\n            \"created_date\": \"2017-12-02T16:14:58.573937\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"matter_description\": \"Newly created patent matter in multiple countries.\",\n            \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n            \"matter_lead\": {\n                \"last_name\": \"Smith\",\n                \"first_name\": \"Barbara\",\n                \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                \"email\": \"bsmith@example.com\"\n            },\n            \"matter_short_name\": \"Patent Matter 10001.ABC\",\n            \"modified_date\": \"2018-12-20T08:46:55.820793\",\n            \"name\": \"Patent Matter 10001.ABC\",\n            \"open_date\": \"2017-12-02\",\n            \"status\": \"open\",\n            \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n        }\n    ],\n    \"modified_date\": \"2019-08-27T13:42:54.403147\",\n    \"native_currency\": null,\n    \"native_net\": null,\n    \"native_tax\": null,\n    \"native_total\": null,\n    \"net\": null,\n    \"po\": null,\n    \"received_date\": \"2017-04-01\",\n    \"status\": \"Paid\",\n    \"tax\": null,\n    \"total\": 32544.55,\n    \"url\": \"/invoices/5432/\",\n    \"vendor\": \"Rosato and Associates\",\n    \"vendor_number\": \"34.330.001-3\",\n    \"custom_attributes\": [\n        {\n            \"attribute_group\": \"Financial\",\n            \"name\": \"Exposure\",\n            \"valid_values\": \"Any Text Value\",\n            \"type\": \"text\",\n            \"attribute_group_sort\": 2,\n            \"value\": null,\n            \"hash\": \"attr_d0567543486247709acf494df01a4a3a\"\n        }\n    ],\n    \"other_attributes\": [\n        {\n            \"attribute_group\": \"Financial\",\n            \"name\": \"Exposure\",\n            \"valid_values\": \"Any Text Value\",\n            \"type\": \"text\",\n            \"attribute_group_sort\": 2,\n            \"value\": null,\n            \"hash\": \"attr_d0567543486247709acf494df01a4a3a\"\n        }\n    ],\n    \"lines\": [\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1020,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-06\",\n            \"description\": \"Confer with E. Gardner regarding financing documents; Review draft financing documents and provide comments to same.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 12,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 1020,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 1020,\n            \"units\": 1.5\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 527,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-06\",\n            \"description\": \"Correspondence in regard to the financing documents; draft legal opinion\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 13,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 527,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 527,\n            \"units\": 1.7\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1078,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-06\",\n            \"description\": \"Drafting building lease financing documents. Preparing pro forma captialization table.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 14,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 1078,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1078,\n            \"units\": 2.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1088,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-07\",\n            \"description\": \"Telephone call with client regarding document review of financing documents; review and respond to e-mails related to the financing.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 15,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 1088,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 1088,\n            \"units\": 1.6\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 93,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-07\",\n            \"description\": \"Update the legal opinion; correspondence in regard to the same.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 16,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 93,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 93,\n            \"units\": 0.3\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1274,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-07\",\n            \"description\": \"Review legal opinion draft. Call with client to walk through documents.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 17,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 1274,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1274,\n            \"units\": 2.6\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 686,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-08\",\n            \"description\": \"Drafting building lease documents. Sending building lease document initial drafts to Wilson.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 18,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 686,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 686,\n            \"units\": 1.4\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 62,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-09\",\n            \"description\": \"Correspondence in regard to the financing documents.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 19,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 62,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 62,\n            \"units\": 0.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Jones, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 900,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-10\",\n            \"description\": \"Review and comment on building lease financing opinion documents.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 20,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 750,\n            \"native_tax\": 0,\n            \"native_total\": 900,\n            \"rate\": 750,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Jones, Tyler\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 900,\n            \"units\": 1.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 403,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-11\",\n            \"description\": \"Revise the legal opinion documents per opinion committee's comments; correspndence in regard to the same.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 21,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 403,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 403,\n            \"units\": 1.3\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 204,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-13\",\n            \"description\": \"Review and respond to e-mails regarding financing issues.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 22,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 204,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 204,\n            \"units\": 0.3\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 588,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-13\",\n            \"description\": \"Reviewing and marking up draft ancillary documents, including legal opinion. Attending to diligence questions.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 23,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 588,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 588,\n            \"units\": 1.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 558,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-14\",\n            \"description\": \"Prepare for and attend phone conference in regard to the disclosure schedule; conference in regard to the disclosure schedule; draft disclosure schedule.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 24,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 558,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 558,\n            \"units\": 1.8\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1862,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-14\",\n            \"description\": \"Conference call with client to walk through disclosure schedules. Coordinationg diligence responses. Reviewing and summarizing Wilson changes to building lease documents.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 25,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 1862,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1862,\n            \"units\": 3.8\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 544,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-15\",\n            \"description\": \"Review comments to the documents and confer with E. Gardner regarding comments to same.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 26,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 544,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 544,\n            \"units\": 0.8\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 837,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-15\",\n            \"description\": \"Update the Disclosure Schedule; correspnodence in regard to the same; correspondence in regard to the outstanding due diligence items; phone conference in regard to the Disclosure Schedule.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 27,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 837,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 837,\n            \"units\": 2.7\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1568,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-15\",\n            \"description\": \"Reviewing and preparing summary of Wilson comments to building lease financing documetns. Drating disclosure schedules. Reviewing financing document changes with Sam Prusak. Diligence call with Wilson.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 28,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 1568,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1568,\n            \"units\": 3.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 884,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-16\",\n            \"description\": \"Telephone call with client regarding comments and issues raised by the fiancing documents; review and respond to e-mails regarding the same.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 29,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 884,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 884,\n            \"units\": 1.3\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1674,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-16\",\n            \"description\": \"Correspondence in regard to the building lease diligence items and Disclosure Schedule; phone convference in regard to the same; update legal Opinion Board and Stockholder Consents and other ancillary documents; update the Disclosure Schedule.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 30,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 1674,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1674,\n            \"units\": 5.4\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1568,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-16\",\n            \"description\": \"Conference call regarding ESI contract. Conference call with client regarding financing documents. Revising financing documetns and sending to Wilson.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 31,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 1568,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1568,\n            \"units\": 3.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 204,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-17\",\n            \"description\": \"Review and respond to e-mails regarding financing issue.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 32,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 204,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 204,\n            \"units\": 0.3\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 392,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-17\",\n            \"description\": \"Negotiating fianancing documents with investor counsel.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 33,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 392,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 392,\n            \"units\": 0.8\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 124,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-20\",\n            \"description\": \"Correspondence in regard to ancillaries, update board and stockholder consents.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 34,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 124,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 124,\n            \"units\": 0.4\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Taylor, Stephanie\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 577.5,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-21\",\n            \"description\": \"Prepare signature packets; update financing documents.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 35,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 275,\n            \"native_tax\": 0,\n            \"native_total\": 577.5,\n            \"rate\": 275,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Taylor, Stephanie\",\n            \"timekeeper_level\": \"Paralegal\",\n            \"total\": 577.5,\n            \"units\": 2.1\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 408,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-21\",\n            \"description\": \"Review and respond to e-mails regarding financing issues; Telephone call with client regarding same\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 36,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 408,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 408,\n            \"units\": 0.6\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1054,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-21\",\n            \"description\": \"Correspondence in regard to Management Rights letters and Indemnification Agreements; edit the same; create signature pages; correspondence in regard to Disclosure Schedule and Legal Opinion.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 37,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 1054,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1054,\n            \"units\": 3.4\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1029,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-21\",\n            \"description\": \"Reviewing changes to Legal Opinion and revising legal opinion. Discussing changes with M. Lantos and S. Prusak. Reviewing investor commetns to main financing documents and summarizing for client. Assembling sig packets for investors and client. Discussing founder vesting provisions with Wilson.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 38,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 1029,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1029,\n            \"units\": 2.1\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 816,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-22\",\n            \"description\": \"Telephone call with client regarding open issues and status; Review comments of investor's counsel to the financing documents; Review and respond to e-mails regarding same.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 39,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 816,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 816,\n            \"units\": 1.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Jones, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 150,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-22\",\n            \"description\": \"Review of investor counsel's comment on building lease opinion; send comments to Mr. Gardner.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 40,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 750,\n            \"native_tax\": 0,\n            \"native_total\": 150,\n            \"rate\": 750,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Jones, Tyler\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 150,\n            \"units\": 0.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1764,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-22\",\n            \"description\": \"Discussing issues with Sam Prusak. Summarizing issues list for Sam Pruask for call with Bob at Fidelity. Reviewing and marking up MRLs and ESI Payoff Letter.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 41,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 1764,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1764,\n            \"units\": 3.6\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Taylor, Stephanie\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 385,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-23\",\n            \"description\": \"Update disclosure schedule; review securities files in connection with same.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 42,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 275,\n            \"native_tax\": 0,\n            \"native_total\": 385,\n            \"rate\": 275,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Taylor, Stephanie\",\n            \"timekeeper_level\": \"Paralegal\",\n            \"total\": 385,\n            \"units\": 1.4\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 816,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-23\",\n            \"description\": \"Review and respond to e-mails regarding financing issues and closing; Telephone calls with client and counsel for investors; Review proposed changes to documents.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 43,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 816,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 816,\n            \"units\": 1.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 93,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-23\",\n            \"description\": \"Update Disclosure Schedule; correspondence in regard to the Disclosure Schedule and Management Rights Letters.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 44,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 93,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 93,\n            \"units\": 0.3\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1127,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-23\",\n            \"description\": \"Negotiationg MRLs. Revising and negotiating tenant contract Amendments. Compiling additional sig packets.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 45,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 1127,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1127,\n            \"units\": 2.3\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 748,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-24\",\n            \"description\": \"Review revised document changes and related e-mails; Telephone calls with client regarding same; Confer with E. Gardner regarding closing.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 46,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 748,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 748,\n            \"units\": 1.1\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 0,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-24\",\n            \"description\": \"Correspondence in regard to Rhode Island filings.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 47,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 0,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 0,\n            \"units\": 0\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1225,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-24\",\n            \"description\": \"Revising legal opinion, disclosure scheduels, ancillary documents, and financing documents. Finalizing pro forma cap table. Gathering signature pages.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 48,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 1225,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 1225,\n            \"units\": 2.5\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 204,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-27\",\n            \"description\": \"Review and respond to e-mails regarding final open issues and closing schedule.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 49,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 204,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 204,\n            \"units\": 0.3\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Taylor, Stephanie\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 192.5,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-28\",\n            \"description\": \"Attention to closing of financing; order good standing certificates; receive an dreview closing deliverables; update financing documents and shareroom.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 50,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 275,\n            \"native_tax\": 0,\n            \"native_total\": 192.5,\n            \"rate\": 275,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Taylor, Stephanie\",\n            \"timekeeper_level\": \"Paralegal\",\n            \"total\": 192.5,\n            \"units\": 0.7\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Orosco, Theresa\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 544,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-28\",\n            \"description\": \"Review draft legal opinion and related documents; Respond to e-mails regarding closing.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 51,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 680,\n            \"native_tax\": 0,\n            \"native_total\": 544,\n            \"rate\": 680,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Orosco, Theresa\",\n            \"timekeeper_level\": \"Partner\",\n            \"total\": 544,\n            \"units\": 0.8\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 62,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-28\",\n            \"description\": \"Correrspondence in regard to the closing items.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 52,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 62,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 62,\n            \"units\": 0.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 392,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-28\",\n            \"description\": \"Attending to final closing mechanics.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 53,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 392,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 392,\n            \"units\": 0.8\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Taylor, Stephanie\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 357.5,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-26\",\n            \"description\": \"Prepare closing volume; review and update financing documents in connection with same.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 54,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 275,\n            \"native_tax\": 0,\n            \"native_total\": 357.5,\n            \"rate\": 275,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Taylor, Stephanie\",\n            \"timekeeper_level\": \"Paralegal\",\n            \"total\": 357.5,\n            \"units\": 1.3\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 217,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-26\",\n            \"description\": \"Conduct post-closing diligence; create closing volume; correspondence in regard to the same.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 55,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 217,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 217,\n            \"units\": 0.7\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Taylor, Stephanie\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 330,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-27\",\n            \"description\": \"Prepare post-building lease legal document from client; update closing volume; update corporate client files and ledgers; prepare stock certificates.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 56,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 275,\n            \"native_tax\": 0,\n            \"native_total\": 330,\n            \"rate\": 275,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Taylor, Stephanie\",\n            \"timekeeper_level\": \"Paralegal\",\n            \"total\": 330,\n            \"units\": 1.2\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 124,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-27\",\n            \"description\": \"Review legal document from client; correspondence in regard to the same.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 57,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 124,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 124,\n            \"units\": 0.4\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Kowalski, Tyler\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 245,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-27\",\n            \"description\": \"Coordinating post-closing matters.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 58,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 490,\n            \"native_tax\": 0,\n            \"native_total\": 245,\n            \"rate\": 490,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Kowalski, Tyler\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 245,\n            \"units\": 0.5\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Taylor, Stephanie\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 192.5,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-28\",\n            \"description\": \"Update closing volume; update corporate client files and shareroom.\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 59,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 275,\n            \"native_tax\": 0,\n            \"native_total\": 192.5,\n            \"rate\": 275,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Taylor, Stephanie\",\n            \"timekeeper_level\": \"Paralegal\",\n            \"total\": 192.5,\n            \"units\": 0.7\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"Simmons, Wilson\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 0,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-28\",\n            \"description\": \"Correspondence in regard to stock certificates\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 60,\n            \"line_item_type\": \"F\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 310,\n            \"native_tax\": 0,\n            \"native_total\": 0,\n            \"rate\": 310,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"Simmons, Wilson\",\n            \"timekeeper_level\": \"Associate\",\n            \"total\": 0,\n            \"units\": 0\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 165,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-26\",\n            \"description\": \"Good Standing Certificates - VENDOR: ELSE Enterprises\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 61,\n            \"line_item_type\": \"E\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 165,\n            \"native_tax\": 0,\n            \"native_total\": 165,\n            \"rate\": 165,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"\",\n            \"timekeeper_level\": \"\",\n            \"total\": 165,\n            \"units\": 1\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 150,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-27\",\n            \"description\": \"Good Standing Certificate - VENDOR: ELSE Enterprises\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 62,\n            \"line_item_type\": \"E\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 150,\n            \"native_tax\": 0,\n            \"native_total\": 150,\n            \"rate\": 150,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"\",\n            \"timekeeper_level\": \"\",\n            \"total\": 150,\n            \"units\": 1\n        },\n        {\n            \"client_id\": \"7113\",\n            \"law_firm_matter_id\": \"7113-009\",\n            \"timekeeper_id\": \"\",\n            \"activity_code\": \"\",\n            \"adjustment\": 0,\n            \"allocations\": [\n                {\n                    \"amount\": 1038.55,\n                    \"cost_code\": \"100.000.200\",\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_44df2dbfb6674b8480d83b860497e686\",\n                            \"list_option_id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"description\": \"GL\",\n                            \"list_option_description\": \"10001.12456.122.36\",\n                            \"list_option_name\": \"10001.12456.122.36\",\n                            \"name\": \"GL\"\n                        }\n                    ],\n                    \"entity\": \"US, Inc.\",\n                    \"matter\": \"Patent Matter 10001.ABC\"\n                }\n            ],\n            \"date\": \"2016-05-28\",\n            \"description\": \"Voice &amp; Data Communications\",\n            \"expense_code\": \"\",\n            \"line_item_number\": 63,\n            \"line_item_type\": \"E\",\n            \"matters\": [\n                {\n                    \"client_matter_id\": \"outerapi-5801\",\n                    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"close_date\": null,\n                    \"created_date\": \"2017-12-02T16:14:58.573937\",\n                    \"description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_description\": \"Newly created patent matter in multiple countries.\",\n                    \"matter_hash\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n                    \"matter_lead\": {\n                        \"last_name\": \"Smith\",\n                        \"first_name\": \"Barbara\",\n                        \"id\": \"usr_a67ae2a752174f44a511a2888db866c1\",\n                        \"email\": \"bsmith@example.com\"\n                    },\n                    \"matter_short_name\": \"Patent Matter 10001.ABC\",\n                    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n                    \"name\": \"Patent Matter 10001.ABC\",\n                    \"open_date\": \"2017-12-02\",\n                    \"status\": \"open\",\n                    \"url\": \"/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n                }\n            ],\n            \"native_adjustment\": 0,\n            \"native_rate\": 1038.55,\n            \"native_tax\": 0,\n            \"native_total\": 1038.55,\n            \"rate\": 1038.55,\n            \"task_code\": \"\",\n            \"tax\": 0,\n            \"tax_code\": null,\n            \"tax_rate\": null,\n            \"tax_type\": \"\",\n            \"timekeeper\": \"\",\n            \"timekeeper_level\": \"\",\n            \"total\": 1038.55,\n            \"units\": 1\n        }\n    ]\n}"}],"_postman_id":"1b40fda3-df73-438d-a1c8-b2999ca0ea3c"},{"name":"List All Payments for an Invoice","id":"76e93d36-0b68-4d06-9bab-cf612b030c4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"}],"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_19abed87732bf08e56c01e531d2ba1459f7aa078/payments/","description":"<p>Retrieves the payment info for an invoice with the given invoice hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>inv_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an array of payment objects if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The invoice object contains header information about the invoice as well as an array of <code>lines</code> for that invoice. Each <code>line</code> provides line item level information, including the <code>matters</code> that the <code>line</code> is billed to.</p>\n<p>The invoice object has both billed and native amounts. The native amounts represent the amounts billed in the <code>native_currency</code> while the billed amounts represent the amounts converted to the default client <code>currency</code> using the provided <code>exchange_rate</code>.</p>\n<p>The invoice object contains an array of <code>matters</code> that the invoice is billed to.</p>\n<p>The invoice object contains an array of <code>approvers</code> that the invoice is assigned to, including their current approval status.</p>\n","urlObject":{"protocol":"https","path":["api","v1","invoices","inv_19abed87732bf08e56c01e531d2ba1459f7aa078","payments",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"3761e45d-f7c4-4d69-b6e1-d5419e96091b","name":"Retrieve Payment Info for an Invoice","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"}],"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_19abed87732bf08e56c01e531d2ba1459f7aa078/payments/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 03 Dec 2017 01:01:32 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.6.0","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=pebmkgaciz9xrza8s2qrpairhrag7hcj; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"pebmkgaciz9xrza8s2qrpairhrag7hcj","key":"sessionid"}],"responseTime":null,"body":"[{\"id\":\"pmt_310c712d791021f7b243ac9633b3aefa13ebbddb\",\"payment_method\":\"check\",\"reference_number\":\"85858\",\"amount\":32544.55,\"currency\":\"USD\",\"memo\":null,\"batch\":null,\"payment_date\":\"2017-06-01\",\"created_date\":\"2017-12-02T17:00:11.828946\",\"modified_date\":\"2017-12-02T17:00:11.828953\"}]"}],"_postman_id":"76e93d36-0b68-4d06-9bab-cf612b030c4f"},{"name":"Create Payment for an Invoice","id":"e2f8e429-93ce-4b64-bfb5-f9fea9364816","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 345511c5b79a8690aded405c1d574d487978ed0a"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"http://local.simplelegal.com:8000/api/v1/invoices/inv_9a5fcafe53b1c64dca9441536962e874c32f7717/payments/","description":"<p>Create a payment for an invoice with the given invoice hash. Optionally, you can also update the invoce satus to <code>paid</code> by specifiying <code>\"status\": \"paid\"</code></p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>payment_method</strong></td>\n<td><code>string</code></td>\n<td><code>check</code></td>\n</tr>\n<tr>\n<td><strong>amount</strong></td>\n<td><code>integer</code></td>\n<td><code>100000</code></td>\n</tr>\n<tr>\n<td><strong>currency</strong></td>\n<td><code>string</code></td>\n<td><code>USD</code></td>\n</tr>\n<tr>\n<td><strong>payment_date</strong></td>\n<td><code>date</code></td>\n<td><code>2017-06-01</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>reference_number</strong></td>\n<td><code>string</code></td>\n<td><code>AB1013</code></td>\n</tr>\n<tr>\n<td><strong>memo</strong></td>\n<td><code>string</code></td>\n<td><code>Thanks for the work!</code></td>\n</tr>\n<tr>\n<td><strong>batch</strong></td>\n<td><code>string</code></td>\n<td><code>B100-33</code></td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td><code>string</code></td>\n<td><code>paid</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an array of payment objects if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["api","v1","invoices","inv_9a5fcafe53b1c64dca9441536962e874c32f7717","payments",""],"host":["local","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"96154b9d-d220-4cb5-a941-d9f43a018e26","name":"Create Payment for an Invoice","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"  {\n    \"payment_method\": \"check\",\n    \"reference_number\": \"85858\",\n    \"amount\": 32544.55,\n    \"currency\": \"USD\",\n    \"memo\": \"Should post tomorrow.\",\n    \"payment_date\": \"2017-06-01\",\n    \"status\": \"paid\"\n  }"},"url":"https://falcon.simplelegal.com/api/v1/invoices/inv_19abed87732bf08e56c01e531d2ba1459f7aa078/payments/"},"status":"CREATED","code":201,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 03 Dec 2017 01:00:11 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.6.0","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=pebmkgaciz9xrza8s2qrpairhrag7hcj; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"pebmkgaciz9xrza8s2qrpairhrag7hcj","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"pmt_310c712d791021f7b243ac9633b3aefa13ebbddb\",\"payment_method\":\"check\",\"reference_number\":\"85858\",\"amount\":32544.55,\"currency\":\"USD\",\"memo\":null,\"batch\":null,\"payment_date\":\"2017-06-01\",\"created_date\":\"2017-12-02T17:00:11.828946\",\"modified_date\":\"2017-12-02T17:00:11.828953\"}"}],"_postman_id":"e2f8e429-93ce-4b64-bfb5-f9fea9364816"}],"id":"0570dba7-9856-4df9-98f2-4a6ca32b6c0e","_postman_id":"0570dba7-9856-4df9-98f2-4a6ca32b6c0e","description":""},{"name":"Matter Groups","item":[{"name":"List All Matter Groups","id":"fbc4c57f-62dc-4e74-bae1-ace8febfa756","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matter-groups/","description":"<p>You can list all matter groups that the api user has access to. The matter groups are returned sorted by matter group name alphabetically.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h2 id=\"filters\">Filters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=mgp_123456</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>N/A</td>\n<td>?description=matter group description</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>icontains</td>\n<td>?name=matter-group-01</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>icontains</td>\n<td>?description=patent matters</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte, range</td>\n<td>?created_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>modified_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte, range</td>\n<td>?modified_date__gt=2018-03-01</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of matter groups. Each entry in the array is a separate matter group object. If no more matter groups are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matter-groups",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"a53aebd8-569b-495d-bccc-5608a980ef69","name":"List All Matter Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matter-groups/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"450","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 24 Aug 2018 21:58:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qx3kkrh5jhk0kmknx1ajp5c4kor7bysv; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qx3kkrh5jhk0kmknx1ajp5c4kor7bysv","key":"sessionid"}],"responseTime":null,"body":"{\"count\":1,\"next\":null,\"previous\":null,\"results\":[{\"id\":\"mgp_38d49e70c194c61a3f01b396132c44a6cf992020\",\"name\":\"Patents\",\"description\":\"All US patent matters.\",\"accruals_enabled\":false,\"created_date\":\"2018-02-06T05:28:42.496205\",\"modified_date\":\"2018-02-06T09:15:10.140481\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_groups/663/\"}]}"}],"_postman_id":"fbc4c57f-62dc-4e74-bae1-ace8febfa756"},{"name":"Retrieve a Matter Group","id":"fc26fb5b-4731-4b1e-945e-ba7612364aa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/","description":"<p>Retrieves the matter group with the given matter group hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>mgp_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a matter group object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The matter group object contains information about the matter group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matter-groups","mgp_38d49e70c194c61a3f01b396132c44a6cf992020",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"efb94ac0-9fe0-4b43-93da-611018f8a022","name":"Retrieve a Matter Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"333","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 13:31:19 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=lkzc3bm92lmqmeiw7aocxxmcu4qnyhyf; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"lkzc3bm92lmqmeiw7aocxxmcu4qnyhyf","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"mgp_38d49e70c194c61a3f01b396132c44a6cf992020\",\"name\":\"Patents\",\"description\":\"All US patent matters.\",\"accruals_enabled\":false,\"created_date\":\"2018-02-06T05:28:42.496205\",\"modified_date\":\"2018-02-06T05:28:42.496213\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/\"}"}],"_postman_id":"fc26fb5b-4731-4b1e-945e-ba7612364aa7"},{"name":"Create a Matter Group","id":"a2050e3e-63e0-4763-81d8-9f4cc09ebd53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Patents\",\n\t\"description\": \"All US patent matters.\",\n\t\"accruals_enabled\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/matter-groups/","description":"<p>You can create a matter group.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>SL-1000</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>Legal Expense</code></td>\n</tr>\n<tr>\n<td><strong>accruals_enabled</strong></td>\n<td><code>boolean</code></td>\n<td><code>false</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created matter group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matter-groups",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"f9428a7d-00a0-4e8b-8862-19b5870e4e2f","name":"Create a Matter Group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Patents\",\n\t\"description\": \"All US patent matters.\",\n\t\"accruals_enabled\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/matter-groups/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"333","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 13:28:42 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=lkzc3bm92lmqmeiw7aocxxmcu4qnyhyf; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"lkzc3bm92lmqmeiw7aocxxmcu4qnyhyf","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"mgp_38d49e70c194c61a3f01b396132c44a6cf992020\",\"name\":\"Patents\",\"description\":\"All US patent matters.\",\"accruals_enabled\":false,\"created_date\":\"2018-02-06T05:28:42.496205\",\"modified_date\":\"2018-02-06T05:28:42.496213\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/\"}"}],"_postman_id":"a2050e3e-63e0-4763-81d8-9f4cc09ebd53"},{"name":"Update a Matter Group","id":"be98ef16-da1f-4d5f-b029-d6a9bdba10c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Patents\",\n  \"description\": \"All US patent matters.\",\n  \"accruals_enabled\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/","description":"<p>You update a matter group using either the <code>PATCH</code> or <code>POST</code> method.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>SL-1000</code></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>Legal Expense</code></td>\n</tr>\n<tr>\n<td><strong>accruals_enabled</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the updated matter group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matter-groups","mgp_38d49e70c194c61a3f01b396132c44a6cf992020",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"2bca5ab2-da6b-4307-a16e-6e53c2fe1de4","name":"Update a Matter Group","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Patents\",\n  \"description\": \"All US patent matters.\",\n  \"accruals_enabled\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"333","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 17:15:10 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=ltj4ppx0dl9ryel6oa36g01r2e4qw3ya; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"ltj4ppx0dl9ryel6oa36g01r2e4qw3ya","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"mgp_38d49e70c194c61a3f01b396132c44a6cf992020\",\"name\":\"Patents\",\"description\":\"All US patent matters.\",\"accruals_enabled\":false,\"created_date\":\"2018-02-06T05:28:42.496205\",\"modified_date\":\"2018-02-06T09:15:10.140481\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/\"}"}],"_postman_id":"be98ef16-da1f-4d5f-b029-d6a9bdba10c0"}],"id":"b94c8727-3ba2-44df-bcc8-7647bd474dca","description":"<p>Note that Matter Groups by default can also be named <code>Practice Area</code>. </p>\n<p>Matter Groups can have a variety of customized names other than <code>Matter Group</code> or <code>Practice Area</code>. </p>\n","event":[{"listen":"prerequest","script":{"id":"a87467e2-4ab8-4e99-9b6b-b2ff82163aa7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e680f5f5-707f-41d4-99fc-a7a2bad2112d","type":"text/javascript","exec":[""]}}],"_postman_id":"b94c8727-3ba2-44df-bcc8-7647bd474dca"},{"name":"Matters","item":[{"name":"Matter Custom Attributes","item":[{"name":"List All Attributes for Matter","id":"c9c71793-4d0a-48e2-ac10-e7b64d7ea01d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/","description":"<p>You can list all attributes for a matter that the api user has access to.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<table>\n    <tr>\n        <th>Required</th>\n        <th>Type</th>\n        <th>Sample Value</th>\n    </tr>\n    <tr>\n        <td>id</td>\n        <td>`string`</td>\n        <td>`mat_1234567890`</td>\n    </tr>\n    <tr>\n        <th>Optional</th>\n        <th>Type</th>\n        <th>Sample Value</th>\n    </tr>\n    <tr>\n        <td>name</td>\n        <td>`string`</td>\n        <td>`?name=Country`</td>\n    </tr>\n</table>\n\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of attributes. Each entry in the array is a separate attribute object. If no more attributes are available, the resulting array will be empty.</p>\n<p>Note that the <code>value_extras</code> list may or may not be empty, please refer to the individual attribute value documentation for how to parse the <code>value_extras</code> field.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matters","mat_a77a50b4fdea43c1b6f7871d60eeb6ad","attributes",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"4e796ca1-88df-472e-969d-3ac8f5b91cbf","name":"List All Attributes for Matter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"707","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 16 Mar 2018 22:29:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\n    \"count\": 2,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"name\": \"Country\",\n            \"hash\": \"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\n            \"type\": \"list\",\n            \"valid_values\": [\n                \"CA\",\n                \"US\"\n            ],\n            \"attribute_group\": \"Locale\",\n            \"attribute_group_sort\": \"1\",\n            \"value\": \"US\",\n            \"extra_values\": [\n                {\n                    \"name\": \"id\",\n                    \"value\": \"attr_opt_e57c9508edb242fc8146984d0f3daaa6\"\n                },\n                {\n                    \"name\": \"name\",\n                    \"value\": \"US\"\n                },\n                {\n                    \"name\": \"description\",\n                    \"value\": \"Description for United States\"\n                },\n                {\n                    \"name\": \"code\",\n                    \"value\": \"Accounting Code for Unitied States\"\n                },\n                {\n                    \"name\": \"api_url\",\n                    \"value\": \"https://falcon.simplelegal.com/api/v1/attributes/attr_d0567543486247709acf494df01a4a3a/options/attr_opt_e57c9508edb242fc8146984d0f3daaa6/\"\n                },\n                {\n                    \"name\": \"url\",\n                    \"value\": \"http://local.simplelegal.com:8000/manage/matter_attributes/1330/\"\n                },\n                {\n                    \"name\": \"status\",\n                    \"value\": \"Active\"\n                }\n            ],\n            \"api_url\": \"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/\"\n        },\n        {\n            \"name\": \"Exposure\",\n            \"hash\": \"attr_d0567543486247709acf494df01a4a3a\",\n            \"type\": \"text\",\n            \"valid_values\": \"Any Text Value\",\n            \"attribute_group\": \"Financial\",\n            \"attribute_group_sort\": \"2\",\n            \"value\": \"No Exposure\",\n            \"extra_values\": [],\n            \"api_url\": \"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_d0567543486247709acf494df01a4a3a/\"\n        }\n    ]\n}"}],"_postman_id":"c9c71793-4d0a-48e2-ac10-e7b64d7ea01d"},{"name":"Retrieve an Attribute for Matter","id":"81c1aac0-889f-438e-99a1-077273116bf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/","description":"<p>Retrieves the matter attribute for the given matter hash with the given attribute hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>mat_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an attribute object if a valid set of <code>id's</code> was provided. Returns an error otherwise.</p>\n<p>The attribute object contains information about the attribute for the matter.</p>\n<p>Note that the <code>valid_values</code> field provides information on how to make semantic sense of the <code>values</code> field (which is always guaranteed to be of type <code>string</code>).</p>\n<p>Note that if an attribute is of type <code>list</code>, additional information associated with the <code>list_option</code> object is stored in the field <code>extra_values</code>. </p>\n<p>The <code>extra_values</code> field can be parsed as an object instead of a list, by mapping each <code>name</code> value to an object key and each <code>value</code> value to the corresponding key's value. </p>\n<p>An example transformation would be: [{\"name\": \"id\", \"value\": \"attr_opt_123456\"}, {\"name\": \"name\", \"value\": \"USA\"}] -&gt; \n{\"id\": \"attr_opt123456\", \"value\": \"USA\"}</p>\n","urlObject":{"protocol":"https","path":["api","v1","matters","mat_a77a50b4fdea43c1b6f7871d60eeb6ad","attributes","attr_4a6f44669cf54e3bb6be2e640514a0fd",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"f59c093e-5e8b-44f7-9a7f-62ef9ba46ac1","name":"Retrieve an Attribute for Matter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"318","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 16 Mar 2018 22:29:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"name\":\"Country\",\"hash\":\"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\"type\":\"list\",\"valid_values\":[\"CA\",\"US\"],\"attribute_group\":\"Locale\",\"attribute_group_sort\":\"1\",\"value\":\"US\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/\"}"}],"_postman_id":"81c1aac0-889f-438e-99a1-077273116bf6"},{"name":"Update an Attribute for Matter","id":"e8a0e872-78b1-42f5-84d5-55a5f825d54d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"CA\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/","description":"<p>One value is required:</p>\n<p>{\"value\": }</p>\n<p>The format of the string varies and depends on what the 'valid_values' field of the return JSON states.</p>\n<p>You can update an attribute on a matter.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>mat_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>value</strong></td>\n<td><code>string</code></td>\n<td><code>CA</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>value</strong> - The format of the string varies and depends on what the <code>valid_values</code> field of the return JSON states.</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the updated attribute.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matters","mat_a77a50b4fdea43c1b6f7871d60eeb6ad","attributes","attr_4a6f44669cf54e3bb6be2e640514a0fd",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"28dd0478-7cf0-40f5-baef-f0c48a0be2ca","name":"Invalid List Value","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"MX\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"152","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 12 Mar 2018 17:55:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"non_field_errors\":[\"MX is not a valid option for a matter_attribute:Country. Valid options are: <Other_Attribute_Value_ListQuerySet [u'CA', u'US']>\"]}"},{"id":"a2d653a3-7d16-4503-9f24-f72383144b77","name":"Update an Attribute for Matter","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"value\": \"US\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"223","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 12 Mar 2018 17:53:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"name\":\"Country\",\"value\":\"US\",\"hash\":\"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/\"}"}],"_postman_id":"e8a0e872-78b1-42f5-84d5-55a5f825d54d"}],"id":"282cb349-3e43-4715-9752-95bb69efbada","_postman_id":"282cb349-3e43-4715-9752-95bb69efbada","description":""},{"name":"Matter Allocations","item":[{"name":"Retrieve Matter Allocations","id":"a303f498-a3ff-461f-8b01-fe164cb12c92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/allocations/","description":"<p>Retrieves the allocations for the matter with the given matter hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>mat_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an allocations array if a valid <code>id</code> was provided. Returns an error otherwise.\nThis array will always have length of at least 1, as all the allocations need to have their percentages total up to 1. Each allocation will have an <code>entity</code> object, <code>cost code</code> object and custom attributes array with <code>custom attributes</code> objects.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matters","mat_a77a50b4fdea43c1b6f7871d60eeb6ad","allocations",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"6bcc5ff7-9b4d-479b-ab39-a221d6f2efb0","name":"Retrieve Matter Allocations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/allocations/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1458","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 29 Jun 2018 22:01:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qqdzfpnkh55wg0infv8esq3j8ftt3vgn; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qqdzfpnkh55wg0infv8esq3j8ftt3vgn","key":"sessionid"}],"responseTime":null,"body":"{\"allocations\":[{\"percentage\":\"0.3000\",\"entity\":{\"id\":\"ent_0738fd999f98479e9d70cf73e6aa272a\",\"name\":\"US HQ\",\"description\":\"US Headquarters.\",\"accounting_code\":\"10012\",\"address_1\":\"742 Evergreen Terrace\",\"address_2\":\"Unit 2\",\"city\":\"Springfield\",\"state\":\"MA\",\"zip\":\"01020\",\"country\":\"US\",\"custom_attributes\":[],\"api_url\":\"https://falcon.simplelegal.com/api/v1/entities/ent_0738fd999f98479e9d70cf73e6aa272a/\"},\"cost_code\":{\"id\":\"cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750\",\"name\":\"SL-1000\",\"description\":\"Legal Expense\",\"accounting_code\":\"100.000.000\"},\"custom_attributes\":[{\"id\":\"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\"name\":\"10001.12456.122.36\",\"description\":\"10001.12456.122.36\",\"code\":\"10001.12456.122.36\",\"active\":true}]},{\"percentage\":\"0.7000\",\"entity\":{\"id\":\"ent_1010fcec077f4c8da3bd84c6c3cff417\",\"name\":\"US, Inc.\",\"description\":\"US Domestic entity\",\"accounting_code\":\"US, Inc.\",\"address_1\":\"123 Anywhere St\",\"address_2\":\"Suite 5931\",\"city\":\"San Francisco\",\"state\":\"CA\",\"zip\":\"94117\",\"country\":\"USA\",\"custom_attributes\":[],\"api_url\":\"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/\"},\"cost_code\":{\"id\":\"cos_2a52cc9edb7c4c968afd37a679036526\",\"name\":\"SL-2000\",\"description\":\"Legal Patent Expenses\",\"accounting_code\":\"100.000.200\"},\"custom_attributes\":[{\"id\":\"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\"name\":\"10001.12456.122.36\",\"description\":\"10001.12456.122.36\",\"code\":\"10001.12456.122.36\",\"active\":true}]}]}"}],"_postman_id":"a303f498-a3ff-461f-8b01-fe164cb12c92"},{"name":"Create Matter Allocations","id":"6837a90d-c855-4595-af50-5a4e9ce521d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"allocations\": [{\n\t\t\t\"percentage\": 0.7,\n\t\t\t\"entity\": {\n\t\t\t\t\"id\": \"ent_1010fcec077f4c8da3bd84c6c3cff417\"\n\t\t\t},\n\t\t\t\"cost_code\": {\n\t\t\t\t\"id\": \"cos_2a52cc9edb7c4c968afd37a679036526\"\n\t\t\t},\n\t\t\t\"custom_attributes\": [{\n\t\t\t\t\"id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\"\n\t\t\t}]\n\t\t},\n\t\t{\n\t\t\t\"percentage\": 0.3,\n\t\t\t\"entity\": {\n\t\t\t\t\"id\": \"ent_0738fd999f98479e9d70cf73e6aa272a\"\n\t\t\t},\n\t\t\t\"cost_code\": {\n\t\t\t\t\"id\": \"cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750\"\n\t\t\t},\n\t\t\t\"custom_attributes\": [{\n\t\t\t\t\"id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\"\n\t\t\t}]\n\t\t}\n\t]\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/allocations/","description":"<p>Creates the allocations for the matter with the given matter hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>mat_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>percentage</strong></td>\n<td><code>number</code></td>\n<td><code>1</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>entity.id</strong></td>\n<td><code>hash</code></td>\n<td><code>ent_12345</code></td>\n</tr>\n<tr>\n<td><strong>cost_code.id</strong></td>\n<td><code>hash</code></td>\n<td><code>cos_12345</code></td>\n</tr>\n<tr>\n<td><strong>custom_attributes.list.id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_opt_12345</code></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>percentage</strong> - allocations percentages need to add up to 1 (100%).\n<strong>custom_attributes</strong> - The id in the custom attributes is the id of an <code>attribute option</code> for an attribute that is allocatable. \nNote that this is not the same as the id for ann attribute (which starts with 'attr_').\n<strong>Optional ids</strong> To not allocate to an <code>entity</code> or <code>cost_code</code>, replacing the object wholesale with <code>null</code> will not allocate on any <code>entity</code> or <code>cost_code</code>. To not allocate on custom attributes, pass the empty list <code>[]</code>. </p>\n<h2 id=\"returns\">Returns</h2>\n<p>Returns an allocations array if a valid <code>id</code> was provided. Returns an error otherwise.\nThis array will always have length of at least 1, as all the allocations need to have their percentages total up to 1. Each allocation will optionally have an <code>entity</code> object, <code>cost code</code> object and custom attributes array with <code>custom attributes</code> objects.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matters","mat_a77a50b4fdea43c1b6f7871d60eeb6ad","allocations",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"4cc966b1-be18-4554-a702-6cee1ef659ed","name":"Create Empty Matter Allocation","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5","disabled":true},{"key":"Content-Type","value":"application/json","disabled":true},{"key":"Authorization","value":"Token 3dda38d5f4ceadcfb6d91c0afa24ff298980df45","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"allocations\": [{\n\t\t\t\"percentage\": 1.0,\n\t\t\t\"entity\": null,\n\t\t\t\"cost_code\": null,\n\t\t\t\"custom_attributes\": []\n\t\t}\n\t]\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/allocations/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Mon, 23 Sep 2019 22:36:07 GMT"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Length","value":"95"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json"},{"key":"Set-Cookie","value":"sessionid=b6f6do0u326iqchiv4mujtuznp8a6sn1; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"allocations\": [\n        {\n            \"percentage\": \"1.0000\",\n            \"entity\": null,\n            \"cost_code\": null,\n            \"custom_attributes\": []\n        }\n    ]\n}"},{"id":"619a2139-1c94-4270-b447-2a01f2508c61","name":"Create Simple Matter Allocation","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"allocations\": [{\n\t\t\"percentage\": 1,\n\t\t\"entity\": {\n\t\t\t\"id\": \"ent_1010fcec077f4c8da3bd84c6c3cff417\"\n\t\t},\n\t\t\"cost_code\": {\n\t\t\t\"id\": \"cos_2a52cc9edb7c4c968afd37a679036526\"\n\t\t},\n\t\t\"custom_attributes\": [{\n\t\t\t\"id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\"\n\t\t}]\n\t}]\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/allocations/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"742","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 17 Jun 2018 17:13:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=02n7ku7vrpzla6u1sgt2zll3kz0wbxoq; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"02n7ku7vrpzla6u1sgt2zll3kz0wbxoq","key":"sessionid"}],"responseTime":null,"body":"{\"allocations\":[{\"percentage\":\"1.0000\",\"entity\":{\"id\":\"ent_1010fcec077f4c8da3bd84c6c3cff417\",\"name\":\"US, Inc.\",\"description\":\"US Domestic entity\",\"accounting_code\":\"US, Inc.\",\"address_1\":\"123 Anywhere St\",\"address_2\":\"Suite 5931\",\"city\":\"San Francisco\",\"state\":\"CA\",\"zip\":\"94117\",\"country\":\"USA\",\"custom_attributes\":[],\"api_url\":\"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/\"},\"cost_code\":{\"id\":\"cos_2a52cc9edb7c4c968afd37a679036526\",\"name\":\"SL-2000\",\"description\":\"Legal Patent Expenses\",\"accounting_code\":\"100.000.200\"},\"custom_attributes\":[{\"id\":\"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\"name\":\"10001.12456.122.36\",\"description\":\"10001.12456.122.36\",\"code\":\"10001.12456.122.36\",\"active\":true}]}]}"},{"id":"ec24291b-f151-4101-8c0b-eb4527f46853","name":"Create Complex Matter Allocations","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"allocations\": [{\n\t\t\t\"percentage\": 0.7,\n\t\t\t\"entity\": {\n\t\t\t\t\"id\": \"ent_1010fcec077f4c8da3bd84c6c3cff417\"\n\t\t\t},\n\t\t\t\"cost_code\": {\n\t\t\t\t\"id\": \"cos_2a52cc9edb7c4c968afd37a679036526\"\n\t\t\t},\n\t\t\t\"custom_attributes\": [{\n\t\t\t\t\"id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\"\n\t\t\t}]\n\t\t},\n\t\t{\n\t\t\t\"percentage\": 0.3,\n\t\t\t\"entity\": {\n\t\t\t\t\"id\": \"ent_0738fd999f98479e9d70cf73e6aa272a\"\n\t\t\t},\n\t\t\t\"cost_code\": {\n\t\t\t\t\"id\": \"cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750\"\n\t\t\t},\n\t\t\t\"custom_attributes\": [{\n\t\t\t\t\"id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\"\n\t\t\t}]\n\t\t}\n\t]\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/allocations/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1458","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 17 Jun 2018 17:32:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=j7iky8a7damrhshj4n9p3xfjtkt2ljbx; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"j7iky8a7damrhshj4n9p3xfjtkt2ljbx","key":"sessionid"}],"responseTime":null,"body":"{\"allocations\":[{\"percentage\":\"0.3000\",\"entity\":{\"id\":\"ent_0738fd999f98479e9d70cf73e6aa272a\",\"name\":\"US HQ\",\"description\":\"US Headquarters.\",\"accounting_code\":\"10012\",\"address_1\":\"742 Evergreen Terrace\",\"address_2\":\"Unit 2\",\"city\":\"Springfield\",\"state\":\"MA\",\"zip\":\"01020\",\"country\":\"US\",\"custom_attributes\":[],\"api_url\":\"https://falcon.simplelegal.com/api/v1/entities/ent_0738fd999f98479e9d70cf73e6aa272a/\"},\"cost_code\":{\"id\":\"cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750\",\"name\":\"SL-1000\",\"description\":\"Legal Expense\",\"accounting_code\":\"100.000.000\"},\"custom_attributes\":[{\"id\":\"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\"name\":\"10001.12456.122.36\",\"description\":\"10001.12456.122.36\",\"code\":\"10001.12456.122.36\",\"active\":true}]},{\"percentage\":\"0.7000\",\"entity\":{\"id\":\"ent_1010fcec077f4c8da3bd84c6c3cff417\",\"name\":\"US, Inc.\",\"description\":\"US Domestic entity\",\"accounting_code\":\"US, Inc.\",\"address_1\":\"123 Anywhere St\",\"address_2\":\"Suite 5931\",\"city\":\"San Francisco\",\"state\":\"CA\",\"zip\":\"94117\",\"country\":\"USA\",\"custom_attributes\":[],\"api_url\":\"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/\"},\"cost_code\":{\"id\":\"cos_2a52cc9edb7c4c968afd37a679036526\",\"name\":\"SL-2000\",\"description\":\"Legal Patent Expenses\",\"accounting_code\":\"100.000.200\"},\"custom_attributes\":[{\"id\":\"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\"name\":\"10001.12456.122.36\",\"description\":\"10001.12456.122.36\",\"code\":\"10001.12456.122.36\",\"active\":true}]}]}"}],"_postman_id":"6837a90d-c855-4595-af50-5a4e9ce521d4"}],"id":"8bf15393-83b7-4510-bf05-c4003bd2004b","_postman_id":"8bf15393-83b7-4510-bf05-c4003bd2004b","description":""},{"name":"Referrals","item":[{"name":"List All Referrals on a Matter","id":"59e9571d-9b93-4522-8b4a-9fbe958931c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","urlObject":{"query":[],"variable":[]}},"response":[{"id":"59966c42-8644-43c4-aae9-05171e96d9f0","name":"List All Referrals on a Maatter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/referrals/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1275","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 00:51:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qx3kkrh5jhk0kmknx1ajp5c4kor7bysv; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qx3kkrh5jhk0kmknx1ajp5c4kor7bysv","key":"sessionid"}],"responseTime":null,"body":"{\"count\":2,\"next\":null,\"previous\":null,\"results\":[{\"id\":\"ven_b78675eff0770ea74cb6456743234af43cf0cac3\",\"name\":\"Rosato and Associates\",\"vendor_number\":\"34.330.001-3\",\"primary_contact\":\"Jill Doe\",\"phone\":\"+1-555-555-5555\",\"email\":\"jsmith@example.com\",\"address_1\":\"123 Anywhere St\",\"address_2\":\"\",\"city\":\"San Francisco\",\"state\":\"CA\",\"zip\":\"94117\",\"country\":\"USA\",\"ein\":\"00-0000003\",\"additional_text\":null,\"created_date\":\"2017-04-29T14:02:04.858760\",\"modified_date\":\"2017-12-02T17:24:34.120932\",\"url\":\"https://falcon.simplelegal.com/invoices/vendors/1129/\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/vendors/ven_b78675eff0770ea74cb6456743234af43cf0cac3/\"},{\"id\":\"ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14\",\"name\":\"Boston Legal\",\"vendor_number\":\"34.330.003\",\"primary_contact\":\"Ashley White\",\"phone\":\"+1-555-555-5555\",\"email\":\"jameson_assoc@example.com\",\"address_1\":\"456 Anywhere St\",\"address_2\":\"Suite 11\",\"city\":\"San Francisco\",\"state\":\"CA\",\"zip\":\"94117\",\"country\":\"USA\",\"ein\":\"00-0000002\",\"additional_text\":null,\"created_date\":\"2017-04-29T14:02:04.885175\",\"modified_date\":\"2018-09-21T14:12:40.193432\",\"url\":\"https://falcon.simplelegal.com/invoices/vendors/1130/\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/vendors/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/\"}]}"}],"_postman_id":"59e9571d-9b93-4522-8b4a-9fbe958931c2"},{"name":"Create a Referral on a Matter","id":"a5a18180-689c-4213-9be8-38e7bb190a87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"id","value":"ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14","type":"text"}]},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/referrals/","urlObject":{"protocol":"https","path":["api","v1","matters","mat_a77a50b4fdea43c1b6f7871d60eeb6ad","referrals",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"e820bcde-99a4-4cd0-aee0-1d767d97c49a","name":"Create a Referral on a Matter","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"id","value":"ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14","type":"text"}]},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/referrals/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"615","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 01:01:08 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qx3kkrh5jhk0kmknx1ajp5c4kor7bysv; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qx3kkrh5jhk0kmknx1ajp5c4kor7bysv","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14\",\"name\":\"Boston Legal\",\"vendor_number\":\"34.330.003\",\"primary_contact\":\"Ashley White\",\"phone\":\"+1-555-555-5555\",\"email\":\"jameson_assoc@example.com\",\"address_1\":\"456 Anywhere St\",\"address_2\":\"Suite 11\",\"city\":\"San Francisco\",\"state\":\"CA\",\"zip\":\"94117\",\"country\":\"USA\",\"ein\":\"00-0000002\",\"additional_text\":null,\"created_date\":\"2017-04-29T14:02:04.885175\",\"modified_date\":\"2018-09-21T14:12:40.193432\",\"url\":\"https://falcon.simplelegal.com/invoices/vendors/1130/\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/vendors/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/\"}"}],"_postman_id":"a5a18180-689c-4213-9be8-38e7bb190a87"},{"name":"Delete a Referral on a Matter","id":"ae239c0e-3527-43f4-9f0b-304121f30eea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/referrals/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/","urlObject":{"protocol":"https","path":["api","v1","matters","mat_a77a50b4fdea43c1b6f7871d60eeb6ad","referrals","ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"4bc8f073-e736-4e80-b2b1-ed1c6607f728","name":"Delete a Referral on a Matter","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/referrals/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, DELETE, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 06 Oct 2018 00:59:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qx3kkrh5jhk0kmknx1ajp5c4kor7bysv; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qx3kkrh5jhk0kmknx1ajp5c4kor7bysv","key":"sessionid"}],"responseTime":null,"body":""}],"_postman_id":"ae239c0e-3527-43f4-9f0b-304121f30eea"},{"name":"Get a Referral on a Matter","id":"e49320ce-e71a-4ab1-9f1e-c0d80c86baa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/referrals/ven_b78675eff0770ea74cb6456743234af43cf0cac3/","urlObject":{"protocol":"https","path":["api","v1","matters","mat_a77a50b4fdea43c1b6f7871d60eeb6ad","referrals","ven_b78675eff0770ea74cb6456743234af43cf0cac3",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e49320ce-e71a-4ab1-9f1e-c0d80c86baa8"}],"id":"80a89864-1390-46e7-959d-b4ab679abed6","_postman_id":"80a89864-1390-46e7-959d-b4ab679abed6","description":""},{"name":"List All Matters","id":"e6cf5864-d170-4160-b98f-3b969e3dceb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 3dda38d5f4ceadcfb6d91c0afa24ff298980df45"}],"url":"https://falcon.simplelegal.com/api/v1/matters/","description":"<p>You can list all matters that the api user has access to. The matters are returned sorted by matter name alphabetically.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=mat_123456</td>\n</tr>\n<tr>\n<td>client_matter_id</td>\n<td>string</td>\n<td>exact</td>\n<td>?client_matter_id=outerapi-562</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>exact</td>\n<td>?status=open</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>exact</td>\n<td>?name=patent</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>exact</td>\n<td>?description=hello</td>\n</tr>\n<tr>\n<td>open_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte</td>\n<td>?open_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?created_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>available_to_ipfolio</td>\n<td>boolean</td>\n<td>N/A</td>\n<td>?available_to_ipfolio=true</td>\n</tr>\n<tr>\n<td>search</td>\n<td>string</td>\n<td>N/A</td>\n<td>?search=description_or_name_field_value</td>\n</tr>\n</tbody>\n</table>\n</div><p>Available modifiers can be added onto the end of a search string joined by a double dash and\nare generally shorthands for more advanced searches that can be done:</p>\n<ul>\n<li>lt -&gt; less than</li>\n<li>lte -&gt; less than equal to</li>\n<li>gt -&gt; greater than</li>\n<li>gt -&gt; greater than equal to</li>\n<li>icontains -&gt; contains, case insensitive</li>\n</ul>\n<p>Note that for datetime either a time has to be specified and matched exactly, or specifying a date and using\ncombinations gt or lt to obtain it. eg. for datetime <code>2018-05-07T17:16:59.130270</code> the parameters should be \n<code>?created_date__gt=2018-05-07&amp;created_date__lt=2018-05-08</code></p>\n<p>For boolean fields, the values MUST be exactly the strings <code>true</code> or <code>false</code>. The values are case sensitive. </p>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of matters. Each entry in the array is a separate matter object. If no more matters are available, the resulting array will be empty.</p>\n<p>Each matter will contain an <code>allocations</code> array identifying the allocations as defined for that matter including <code>percentage</code> and any relevant objects set up for allocations.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matters",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"63842362-e110-481e-bafe-4cb5ad673ff0","name":"List All Matters","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matters/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Thu, 13 Dec 2018 00:42:06 GMT"},{"key":"Content-Length","value":"19616"},{"key":"Content-Type","value":"application/json"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Vary","value":"Cookie"},{"key":"Set-Cookie","value":"sessionid=eimjv3zrz0xlv0oy2b7dy0oof0zdrujc; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n            \"name\": \"Patent Matter 10001.ABC\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-5801\",\n            \"matter_lead_email\": \"bsmith@example.com\",\n            \"matter_lead_is_approver\": false,\n            \"template\": null,\n            \"entity\": null,\n            \"status\": \"open\",\n            \"is_confidential\": false,\n            \"matter_group\": {\n                \"id\": \"mgp_38d49e70c194c61a3f01b396132c44a6cf992020\",\n                \"name\": \"Patents\",\n                \"description\": \"All US patent matters.\",\n                \"api_url\": \"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/\"\n            },\n            \"open_date\": \"2017-12-02\",\n            \"close_date\": null,\n            \"available_to_ipfolio\": true,\n            \"created_date\": \"2017-12-02T16:14:58.573937\",\n            \"modified_date\": \"2018-09-30T11:48:16.122254\",\n            \"allocations\": [\n                {\n                    \"percentage\": \"0.3000\",\n                    \"entity\": {\n                        \"id\": \"ent_0738fd999f98479e9d70cf73e6aa272a\",\n                        \"name\": \"US HQ\",\n                        \"description\": \"US Headquarters.\",\n                        \"accounting_code\": \"10012\",\n                        \"address_1\": \"742 Evergreen Terrace\",\n                        \"address_2\": \"Unit 2\",\n                        \"city\": \"Springfield\",\n                        \"state\": \"MA\",\n                        \"zip\": \"01020\",\n                        \"country\": \"US\",\n                        \"custom_attributes\": [],\n                        \"api_url\": \"https://falcon.simplelegal.com/api/v1/entities/ent_0738fd999f98479e9d70cf73e6aa272a/\"\n                    },\n                    \"cost_code\": {\n                        \"id\": \"cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750\",\n                        \"name\": \"SL-1000\",\n                        \"description\": \"Legal Expense\",\n                        \"accounting_code\": \"100.000.000\"\n                    },\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"name\": \"10001.12456.122.36\",\n                            \"description\": \"10001.12456.122.36\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"active\": true\n                        }\n                    ]\n                },\n                {\n                    \"percentage\": \"0.7000\",\n                    \"entity\": {\n                        \"id\": \"ent_1010fcec077f4c8da3bd84c6c3cff417\",\n                        \"name\": \"US, Inc.\",\n                        \"description\": \"US Domestic entity\",\n                        \"accounting_code\": \"US, Inc.\",\n                        \"address_1\": \"123 Anywhere St\",\n                        \"address_2\": \"Suite 5931\",\n                        \"city\": \"San Francisco\",\n                        \"state\": \"CA\",\n                        \"zip\": \"94117\",\n                        \"country\": \"USA\",\n                        \"custom_attributes\": [],\n                        \"api_url\": \"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/\"\n                    },\n                    \"cost_code\": {\n                        \"id\": \"cos_2a52cc9edb7c4c968afd37a679036526\",\n                        \"name\": \"SL-2000\",\n                        \"description\": \"Legal Patent Expenses\",\n                        \"accounting_code\": \"100.000.200\"\n                    },\n                    \"custom_attributes\": [\n                        {\n                            \"id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                            \"name\": \"10001.12456.122.36\",\n                            \"description\": \"10001.12456.122.36\",\n                            \"code\": \"10001.12456.122.36\",\n                            \"active\": true\n                        }\n                    ]\n                }\n            ],\n            \"accept_invoices_until\": null,\n            \"url\": \"https://falcon.simplelegal.com/manage/matters/v2/5801/\",\n            \"api_url\": \"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"\n        }\n    ]\n}"}],"_postman_id":"e6cf5864-d170-4160-b98f-3b969e3dceb4"},{"name":"List all Matters and Aggregate Vendor Spend","id":"00e90230-bcb8-49b0-930f-286038b339c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://falcon.simplelegal.com/api/v1/matters/billing/","description":"<p>Lists all matters, and the total spend that each vendor referred to matters have billed to it.</p>\n<p>You can list all matters that the api user has access to. The matters are returned sorted by matter name alphabetically.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=mat_123456</td>\n</tr>\n<tr>\n<td>client_matter_id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?client_matter_id=outerapi-562</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>N/A</td>\n<td>?status=open</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>icontains</td>\n<td>?name=patent</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>icontains</td>\n<td>?description=hello</td>\n</tr>\n<tr>\n<td>open_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte</td>\n<td>?open_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?created_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>modified_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?modified_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>search</td>\n<td>string</td>\n<td>N/A</td>\n<td>?search=description_or_name_field_value</td>\n</tr>\n<tr>\n<td>available_to_ipfolio</td>\n<td>boolean</td>\n<td>N/A</td>\n<td>?available_to_ipfolio=true</td>\n</tr>\n</tbody>\n</table>\n</div><p>Available modifiers can be added onto the end of a search string joined by a double dash and\nare generally shorthands for more advanced searches that can be done:</p>\n<ul>\n<li>lt -&gt; less than</li>\n<li>lte -&gt; less than equal to</li>\n<li>gt -&gt; greater than</li>\n<li>gt -&gt; greater than equal to</li>\n<li>icontains -&gt; contains, case insensitive</li>\n<li>range -&gt; two dates, everything between the dates matches (inclusive for the first, exclusive for second)</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of matters. Each entry in the array is a separate matter object. If no more matters are available, the resulting array will be empty.</p>\n<p>Each matter will contain an <code>referrals</code> array identifying the vendors referred to that for that matter. The sum total of invoices billed against that matter is recorded in the vendor dictionary's <code>sum_total</code> field, in the currency for the matter.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matters","billing",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"18e9188e-3b7d-4d86-aefc-ce63b41d9fec","name":"Aggregate Referrals","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 3dda38d5f4ceadcfb6d91c0afa24ff298980df45","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/matters/billing/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Thu, 06 Dec 2018 21:18:20 GMT"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Vary","value":"Cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"Content-Length","value":"6627"},{"key":"Set-Cookie","value":"sessionid=eimjv3zrz0xlv0oy2b7dy0oof0zdrujc; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 23,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"mat_60e4519697cb4aa4bc7f15ceae90c334\",\n            \"name\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT\",\n            \"description\": \"jerry li\",\n            \"client_matter_id\": \"outerapi-4814512\",\n            \"referrals\": [\n                {\n                    \"vendor_name\": \"Fish and Co.\",\n                    \"sum_total\": 260000,\n                    \"id\": \"ven_a9ff839951dad99e7b5ac9a7e1754c9f246550ce\"\n                }\n            ],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_fd0e32d2a32349a5a01df637c62e07a4\",\n            \"name\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT        POLYESTERS\",\n            \"description\": \"AD6455-GR-EPT-IMPROVED PROCESS FOR PREPARING HIGH MOLECULAR WEIGHT        POLYESTERS\",\n            \"client_matter_id\": \"outerapi-16474\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n            \"name\": \"Patent Matter 10001.ABC\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-5801\",\n            \"referrals\": [\n                {\n                    \"vendor_name\": \"Rosato and Associates\",\n                    \"sum_total\": 32544.55,\n                    \"id\": \"ven_b78675eff0770ea74cb6456743234af43cf0cac3\"\n                },\n                {\n                    \"vendor_name\": \"Boston Legal\",\n                    \"sum_total\": 14966.59,\n                    \"id\": \"ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14\"\n                }\n            ],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_98873d7f5d18403aa38374323b6e7d51\",\n            \"name\": \"Patent Matter 10001.ABC.AB\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-11324\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_1c351b5aa1ef42fd96f1dacfbb67a719\",\n            \"name\": \"Patent Matter 10001.ABC.CA\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-12942\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_98bccde7b86f4c5784fd9f8990a8aefa\",\n            \"name\": \"Patent Matter 10001.ABC.CA.1\",\n            \"description\": \"Updated patent matter in multiple countries.-TestUpdate\",\n            \"client_matter_id\": \"10001ABC-CA.1\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_97cf347a059640f9b695a0d18ba97c99\",\n            \"name\": \"Patent Matter 10001.ABC.MX\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-11323\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_2e537fdfa32c4561ad28bc0b405023e4\",\n            \"name\": \"Patent Matter 10001.ABC.US\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-8491\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_477d2195c60441869eb2ae1f2063e12e\",\n            \"name\": \"Patent Matter 10002.ABC.CA\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-12950\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_e2e5c8891b294fd691a687b2e94b3168\",\n            \"name\": \"Patent Matter 10002.ABC.CA S\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-22230\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_b183a53644964fa8b7c56178758b8f22\",\n            \"name\": \"Patent Matter 10002.ABC.CD\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-13605\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_41cd4d731fb940ab9cc06aee2a044ca9\",\n            \"name\": \"Patent Matter 10002.ABC.CE\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-13606\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_4ad44465639b4b52a3cffd4159546039\",\n            \"name\": \"Patent Matter 10002.ABC.CT\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-45254\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_abd5b0d967a44c318dcab4ad0cb8c06e\",\n            \"name\": \"Patent Matter 10003.ABC.CA\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-13553\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_842738cb3acd40c988893e6ad77eb8fd\",\n            \"name\": \"Patent Matter 10005.ABC.CA\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-13554\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_e5f23239e0c24f78b8d1ea6e9101c883\",\n            \"name\": \"Patent Matter 10006.ABC.CA\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-13565\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_041f325d52cc4a5b915adf8ab8fbfb5f\",\n            \"name\": \"Patent Matter 10007.ABC.CA\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-13569\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_9a8de645b39f49ab8c9a55614df6aaf1\",\n            \"name\": \"Patent Matter 10007.ABC.CA2\",\n            \"description\": \"Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-39492\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_8f41c3722d744bc8b6af39f93a443543\",\n            \"name\": \"Patent Matter 10007.ABC.CATEST2-Newly created patent matter in multiple countries-Newly created patent matter in multiple countries-Newly created patent matter in multiple countries-Newly created patent matter in multiple countries\",\n            \"description\": \"Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-39493\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_19737d9e3e4f4fd4a18dd0a88d14d9ed\",\n            \"name\": \"Patent Matter 10011.ABC.CA\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-13557\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_a7a5226cbc2f446f9e0f6abc7b7055fb\",\n            \"name\": \"Patent Matter 10012.ABC.CA\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-13558\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_38ac998053634628b8618c8a8ce88ceb\",\n            \"name\": \"Patent Matter 10013.ABC.CA\",\n            \"description\": \"Newly created patent matter in multiple countries.\",\n            \"client_matter_id\": \"outerapi-13559\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        },\n        {\n            \"id\": \"mat_499e08ebbd6346f7ae4cab49a32a7bf7\",\n            \"name\": \"Test-12345-Process for testing with complexes\",\n            \"description\": \"Test-12345-Process for testing with complexesTest-12345-Process for testing with complexesTest-12345-Process for testing with complexesTest-12345-Process for testing with complexes\",\n            \"client_matter_id\": \"outerapi-45263\",\n            \"referrals\": [],\n            \"currency_code\": \"USD\"\n        }\n    ]\n}"}],"_postman_id":"00e90230-bcb8-49b0-930f-286038b339c2"},{"name":"Retrieve a Matter","id":"5005be42-fc0e-4c93-9a47-7b246815d223","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/","description":"<p>Retrieves the matter with the given matter hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>mat_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a matter object if a valid <code>id</code> was provided. Returns an error otherwise. </p>\n<p><strong>Note:</strong> unlike the list endpoint above, there are custom attribute values attached to the matters endpoint done in the same vein of <code>List All Attributes For Matter</code> endpint. </p>\n<p>The matter object contains header information about the matter.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matters","mat_a77a50b4fdea43c1b6f7871d60eeb6ad",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"0c2709e0-e5da-4345-abfa-8b7f8f30d8e1","name":"Retrieve a Matter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Authorization","value":"Token 3dda38d5f4ceadcfb6d91c0afa24ff298980df45","type":"text","disabled":true}],"url":"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Fri, 05 Apr 2019 18:35:06 GMT"},{"key":"Content-Length","value":"3512"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, PATCH, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=vrbfqaken1fwqlyc1hq3ico94jaa1v0z; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\n    \"name\": \"Patent Matter 10001.ABC\",\n    \"description\": \"Newly created patent matter in multiple countries.\",\n    \"client_matter_id\": \"outerapi-5801\",\n    \"matter_lead_email\": \"bsmith@example.com\",\n    \"matter_lead_is_approver\": false,\n    \"template\": null,\n    \"entity\": null,\n    \"status\": \"open\",\n    \"is_confidential\": false,\n    \"matter_group\": {\n        \"id\": \"mgp_38d49e70c194c61a3f01b396132c44a6cf992020\",\n        \"name\": \"Patents\",\n        \"description\": \"All US patent matters.\",\n        \"api_url\": \"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/\"\n    },\n    \"open_date\": \"2017-12-02\",\n    \"close_date\": null,\n    \"available_to_ipfolio\": true,\n    \"created_date\": \"2017-12-02T16:14:58.573937\",\n    \"modified_date\": \"2018-12-20T08:46:55.820793\",\n    \"allocations\": [\n        {\n            \"percentage\": \"0.3000\",\n            \"entity\": {\n                \"id\": \"ent_0738fd999f98479e9d70cf73e6aa272a\",\n                \"name\": \"US HQ\",\n                \"description\": \"US Headquarters.\",\n                \"accounting_code\": \"10012\",\n                \"address_1\": \"742 Evergreen Terrace\",\n                \"address_2\": \"Unit 2\",\n                \"city\": \"Springfield\",\n                \"state\": \"MA\",\n                \"zip\": \"01020\",\n                \"country\": \"US\",\n                \"custom_attributes\": [],\n                \"api_url\": \"https://falcon.simplelegal.com/api/v1/entities/ent_0738fd999f98479e9d70cf73e6aa272a/\"\n            },\n            \"cost_code\": {\n                \"id\": \"cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750\",\n                \"name\": \"SL-1000\",\n                \"description\": \"Legal Expense\",\n                \"accounting_code\": \"100.000.000\"\n            },\n            \"custom_attributes\": [\n                {\n                    \"id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                    \"name\": \"10001.12456.122.36\",\n                    \"description\": \"10001.12456.122.36\",\n                    \"code\": \"10001.12456.122.36\",\n                    \"active\": true\n                }\n            ]\n        },\n        {\n            \"percentage\": \"0.7000\",\n            \"entity\": {\n                \"id\": \"ent_1010fcec077f4c8da3bd84c6c3cff417\",\n                \"name\": \"US, Inc.\",\n                \"description\": \"US Domestic entity\",\n                \"accounting_code\": \"US, Inc.\",\n                \"address_1\": \"123 Anywhere St\",\n                \"address_2\": \"Suite 5931\",\n                \"city\": \"San Francisco\",\n                \"state\": \"CA\",\n                \"zip\": \"94117\",\n                \"country\": \"USA\",\n                \"custom_attributes\": [],\n                \"api_url\": \"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/\"\n            },\n            \"cost_code\": {\n                \"id\": \"cos_2a52cc9edb7c4c968afd37a679036526\",\n                \"name\": \"SL-2000\",\n                \"description\": \"Legal Patent Expenses\",\n                \"accounting_code\": \"100.000.200\"\n            },\n            \"custom_attributes\": [\n                {\n                    \"id\": \"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\n                    \"name\": \"10001.12456.122.36\",\n                    \"description\": \"10001.12456.122.36\",\n                    \"code\": \"10001.12456.122.36\",\n                    \"active\": true\n                }\n            ]\n        }\n    ],\n    \"accept_invoices_until\": null,\n    \"api_url\": \"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\",\n    \"url\": \"https://falcon.simplelegal.com/manage/matters/v2/5801/\",\n    \"custom_attributes\": [\n        {\n            \"id\": \"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\n            \"name\": \"Country\",\n            \"hash\": \"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\n            \"type\": \"list\",\n            \"valid_values\": [\n                \"CA\",\n                \"US\"\n            ],\n            \"attribute_group\": \"Locale\",\n            \"attribute_group_sort\": \"1\",\n            \"value\": null,\n            \"extra_values\": null,\n            \"modified_date\": \"2018-03-12T10:43:25.553317\"\n        },\n        {\n            \"id\": \"attr_d0567543486247709acf494df01a4a3a\",\n            \"name\": \"Exposure\",\n            \"hash\": \"attr_d0567543486247709acf494df01a4a3a\",\n            \"type\": \"text\",\n            \"valid_values\": \"Any Text Value\",\n            \"attribute_group\": \"Financial\",\n            \"attribute_group_sort\": \"2\",\n            \"value\": null,\n            \"extra_values\": [],\n            \"modified_date\": \"2018-03-12T10:44:34.539724\"\n        },\n        {\n            \"id\": \"attr_932d666b54f942468939da9d702ea607\",\n            \"name\": \"Agent1\",\n            \"hash\": \"attr_932d666b54f942468939da9d702ea607\",\n            \"type\": \"text\",\n            \"valid_values\": \"Any Text Value\",\n            \"attribute_group\": \"Financial\",\n            \"attribute_group_sort\": \"2\",\n            \"value\": null,\n            \"extra_values\": [],\n            \"modified_date\": \"2018-09-19T13:39:37.863829\"\n        },\n        {\n            \"id\": \"attr_b326f2a15b5c4375a3b1a4cc13c21595\",\n            \"name\": \"Contract Value\",\n            \"hash\": \"attr_b326f2a15b5c4375a3b1a4cc13c21595\",\n            \"type\": \"currency\",\n            \"valid_values\": \"<Decimal> <ISO4217 currency code>\",\n            \"attribute_group\": \"Financial\",\n            \"attribute_group_sort\": \"2\",\n            \"value\": null,\n            \"extra_values\": [],\n            \"modified_date\": \"2018-12-20T08:45:03.724155\"\n        }\n    ]\n}"}],"_postman_id":"5005be42-fc0e-4c93-9a47-7b246815d223"},{"name":"Create a Matter","id":"20983852-70ae-44b6-876b-68c612950051","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"<p>Active Token</p>\n","key":"Authorization","type":"text","value":"Token 3dda38d5f4ceadcfb6d91c0afa24ff298980df45"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Patent Matter with custom attributes\",\n    \"description\": \"A matter with all attributes defined on the default template\",\n    \"client_matter_id\": \"api-example-002\",\n    \"matter_lead_email\": \"bsmith@example.com\",\n    \"matter_lead_is_approver\": false,\n    \"template\": null,\n    \"entity\": {\n        \"id\": \"ent_0738fd999f98479e9d70cf73e6aa272a\"\n    },\n    \"status\": \"open\",\n    \"is_confidential\": false,\n    \"matter_group\": {\n        \"id\": \"mgp_38d49e70c194c61a3f01b396132c44a6cf992020\"\n    },\n    \"open_date\": \"2017-12-02\",\n    \"close_date\": \"2017-12-05\",\n    \"allocations\": [\n        {\n            \"percentage\": \"1.0000\",\n            \"entity\": null,\n            \"cost_code\": null,\n            \"custom_attributes\": []\n        }\n    ],\n    \"custom_attributes\": [\n        {\n            \"id\": \"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\n            \"value\": \"CA\"\n        },\n        {\n            \"id\": \"attr_d0567543486247709acf494df01a4a3a\",\n            \"value\": \"exposure attribute value\"\n        },\n        {\n            \"id\": \"attr_932d666b54f942468939da9d702ea607\",\n            \"value\": \"agent attribute value\"\n        },\n        {\n            \"id\": \"attr_b326f2a15b5c4375a3b1a4cc13c21595\",\n            \"value\": \"100.0 USD\"\n        }\n    ]\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/","description":"<p>Note that \"optional\" below merely means that the system doesn't globally require it. \nHowever the template (either explicitly specified as a field in the POST\nor the default template if unspecified) can require certain fields to be filled out \nno matter what. </p>\n<p>If the fields required by the template are not present in the creation JSON,\nAn error message stating the missing fields will be returned and the matter will \nnot be created.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>Patent 0001</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>Patent 0001 System for creating cool widgets.</code></td>\n</tr>\n<tr>\n<td><strong>client_matter_id</strong></td>\n<td><code>string</code></td>\n<td><code>PATENTS-0001-1</code></td>\n</tr>\n<tr>\n<td><strong>matter_lead_email</strong></td>\n<td><code>email</code></td>\n<td><code>patent_atty@simplelegal.com</code></td>\n</tr>\n<tr>\n<td><strong>matter_lead_is_approver</strong></td>\n<td><code>boolean</code></td>\n<td>true</td>\n</tr>\n<tr>\n<td><strong>template</strong></td>\n<td><code>id</code></td>\n<td><code>tpml_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>matter_group</strong></td>\n<td><code>id</code></td>\n<td><code>mat_grp_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>entity</strong></td>\n<td><code>id</code></td>\n<td><code>ent_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td><code>string</code></td>\n<td><code>open</code></td>\n</tr>\n<tr>\n<td><strong>open_date</strong></td>\n<td><code>date</code></td>\n<td>\"2017-12-02\"</td>\n</tr>\n<tr>\n<td><strong>close_date</strong></td>\n<td><code>date</code></td>\n<td>\"2017-12-05\"</td>\n</tr>\n<tr>\n<td><strong>accept_invoices_until</strong></td>\n<td><code>date</code></td>\n<td>\"2017-12-05\"</td>\n</tr>\n<tr>\n<td><strong>available_to_ipfolio</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>matter_lead_email</strong> - <code>matter_lead_email</code> must be the email address of a valid SimpleLegal user. Note that <code>matter_lead_is_approver</code> must also be specified if <code>matter_lead_email</code> has a non-null value. (Missing fields are interpeted as a field with a null value).</li>\n<li><strong>matter_lead_is_approver</strong> - Setting this to <code>true</code> with a provided <code>matter_lead_email</code> sets the user associated with the email as an approver on the created matter.</li>\n<li><strong>status</strong> - <code>status</code> must be one of the following valid values <code>open</code>, <code>closed</code>, <code>inactive</code>, <code>voided</code> or <code>draft</code>. Not providing the <code>status</code> field defaults to <code>draft</code>.</li>\n<li><strong>open_date</strong> - This field is set to the current UTC date upon transition from <code>draft</code> to <code>open</code>. It can also be explicitly set. </li>\n<li><strong>close_date</strong> - This field is automatically set to <code>null</code> if the <code>status</code> is <code>open</code>. It's set to the current UTC date upon transitioning to the <code>closed</code> <code>status</code>. </li>\n<li><strong>accept_invoices_until</strong> - is the date past when invoices sent to the matter will no longer be accepted. Allows closed matters to accept invoices after they are closed.</li>\n<li><strong>available_to_ipfolio</strong> - determines whether a matter can be accessed by IPFolio if you have an IPFolio integration. It affects nothing if there is no IPFolio integration. (Defaults to <code>false</code> if no value is provided)</li>\n<li>Both <code>template</code> and <code>matter_group</code> lists provide <code>id</code>s for the corresponding optional fields.</li>\n<li>Note that an <code>id</code> key-value is of form <code>\"field\" : {\"id\": \"id_123456789\"}</code></li>\n</ul>\n<h2 id=\"template-rules\">Template Rules</h2>\n<p>Templates are an additional validation step applied to any matter associated with a template, with\nvarious additional transformations and/or validation applied to a matter being created, such as mandating\nthat descriptions are required or specifying that matters of a certain type do not have matter groups. </p>\n<p>Templates apply to all matters, even if they are not explicitly passed or defined in a matter that's \ncreated, a default template is assigned instead. The <code>optional</code> tag above assumes no template rule\nrequires the field, but a template rule can require an <code>optional</code> field and cause an error on matter creation.</p>\n<p>If matters are being stored separately and SimpleLegal is being used as the canonical store for a matter,\nmake sure to store the matter in the response, not in the request, as a template rule may have changed an\nexisting field or filled in a missing value.</p>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created matter.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matters",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"221bbf54-5a01-4c94-94f8-7c927051a1e5","name":"Create a Matter with all fields, optional and not optional","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token ffe8d121629bc14e9f11d315be479caf0388c152"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Token 3dda38d5f4ceadcfb6d91c0afa24ff298980df45","description":"Active Token","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Patent Matter without attributes\",\n    \"description\": \"Newly created patent matter in multiple countries.\",\n    \"client_matter_id\": \"api-example-001\",\n    \"matter_lead_email\": \"bsmith@example.com\",\n    \"matter_lead_is_approver\": false,\n    \"template\": null,\n    \"entity\": {\n    \t\"id\": \"ent_0738fd999f98479e9d70cf73e6aa272a\"\n    },\n    \"status\": \"open\",\n    \"is_confidential\": false,\n    \"matter_group\": {\n        \"id\": \"mgp_38d49e70c194c61a3f01b396132c44a6cf992020\"\n    },\n    \"open_date\": \"2017-12-02\",\n    \"close_date\": \"2017-12-05\",\n    \"available_to_ipfolio\": true,\n    \"accept_invoices_until\": null,\n    \"allocations\": []\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"gunicorn/19.7.1"},{"key":"Date","value":"Fri, 05 Apr 2019 21:04:01 GMT"},{"key":"Content-Length","value":"2521"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"Content-Type","value":"application/json"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=vrbfqaken1fwqlyc1hq3ico94jaa1v0z; httponly; Path=/; secure"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"mat_5032eca373ff489fb72dca78c143f2c0\",\n    \"name\": \"Patent Matter without attributes\",\n    \"description\": \"Newly created patent matter in multiple countries.\",\n    \"client_matter_id\": \"api-example-001\",\n    \"matter_lead_email\": \"bsmith@example.com\",\n    \"matter_lead_is_approver\": false,\n    \"template\": null,\n    \"entity\": {\n        \"id\": \"ent_0738fd999f98479e9d70cf73e6aa272a\",\n        \"name\": \"US HQ\",\n        \"description\": \"US Headquarters.\",\n        \"accounting_code\": \"10012\",\n        \"address_1\": \"742 Evergreen Terrace\",\n        \"address_2\": \"Unit 2\",\n        \"city\": \"Springfield\",\n        \"state\": \"MA\",\n        \"zip\": \"01020\",\n        \"country\": \"US\",\n        \"custom_attributes\": [],\n        \"api_url\": \"https://falcon.simplelegal.com/api/v1/entities/ent_0738fd999f98479e9d70cf73e6aa272a/\"\n    },\n    \"status\": \"open\",\n    \"is_confidential\": false,\n    \"matter_group\": {\n        \"id\": \"mgp_38d49e70c194c61a3f01b396132c44a6cf992020\",\n        \"name\": \"Patents\",\n        \"description\": \"All US patent matters.\",\n        \"api_url\": \"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/\"\n    },\n    \"open_date\": \"2017-12-02\",\n    \"close_date\": \"2017-12-05\",\n    \"available_to_ipfolio\": true,\n    \"created_date\": \"2019-04-05T14:04:01.347644\",\n    \"modified_date\": \"2019-04-05T14:04:01.774632\",\n    \"allocations\": [\n        {\n            \"percentage\": \"1.0000\",\n            \"entity\": null,\n            \"cost_code\": null,\n            \"custom_attributes\": []\n        }\n    ],\n    \"accept_invoices_until\": null,\n    \"api_url\": \"https://falcon.simplelegal.com/api/v1/matters/mat_5032eca373ff489fb72dca78c143f2c0/\",\n    \"url\": \"https://falcon.simplelegal.com/manage/matters/v2/98701/\"\n}"},{"id":"eb642f8d-dc50-4d5c-9ad5-954d8dbacf7c","name":"Basic Matter creation with minimal fields","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Patent Matter 10002.ABC.CA\",\n  \"description\": \"Newly created patent matter in multiple countries.\",\n  \"matter_lead_email\": \"bsmith@example.com\",\n  \"matter_lead_is_approver\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"517","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 29 Jun 2018 22:00:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qqdzfpnkh55wg0infv8esq3j8ftt3vgn; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qqdzfpnkh55wg0infv8esq3j8ftt3vgn","key":"sessionid"}],"responseTime":null,"body":"{\n    \"id\": \"mat_477d2195c60441869eb2ae1f2063e12e\",\n    \"name\": \"Patent Matter 10002.ABC.CA\",\n    \"description\": \"Newly created patent matter in multiple countries.\",\n    \"client_matter_id\": \"outerapi-12950\",\n    \"matter_lead_email\": \"bsmith@example.com\",\n    \"matter_lead_is_approver\": false,\n    \"template\": null,\n    \"entity\": null,\n    \"status\": \"open\",\n    \"matter_group\": null,\n    \"open_date\": \"2018-06-29\",\n    \"close_date\": null,\n    \"available_to_ipfolio\": false,\n    \"created_date\": \"2018-06-29T15:00:16.179368\",\n    \"modified_date\": \"2018-06-29T15:00:16.348566\",\n    \"allocations\": [\n        {\n            \"percentage\": \"1.0000\",\n            \"entity\": null,\n            \"cost_code\": null,\n            \"custom_attributes\": []\n        }\n    ],\n    \"accept_invoices_until\": null,\n    \"api_url\": \"https://falcon.simplelegal.com/api/v1/matters/mat_477d2195c60441869eb2ae1f2063e12e/\",\n    \"url\": \"https://falcon.simplelegal.com/manage/matters/v2/98700/\"\n}"}],"_postman_id":"20983852-70ae-44b6-876b-68c612950051"},{"name":"Update a Matter","id":"984f8c0a-bf67-4f8a-9dc3-90f66d64232f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Token 3dda38d5f4ceadcfb6d91c0afa24ff298980df45","type":"text"}],"body":{"mode":"raw","raw":" {\n \t\"custom_attributes\": [\n        {\n            \"id\": \"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\n            \"value\": \"US\"\n        },\n        {\n            \"id\": \"attr_d0567543486247709acf494df01a4a3a\",\n            \"value\": \"Exposure Attribute Text value\"\n        },\n        {\n            \"id\": \"attr_932d666b54f942468939da9d702ea607\",\n\t\t    \"value\": \"Agent1 Attribute Text Value\"\n        },\n        {\n            \"id\": \"attr_b326f2a15b5c4375a3b1a4cc13c21595\",\n\t\t\t\"value\": \"24.4 USD\"\n        }\n    ]\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_98bccde7b86f4c5784fd9f8990a8aefa/","description":"<p>You can a matter using either the <code>PATCH</code> or <code>POST</code> method.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>mat_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>Patent 0001</code></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>Patent 0001 System for creating cool widgets.</code></td>\n</tr>\n<tr>\n<td><strong>matter_lead_email</strong></td>\n<td><code>email</code></td>\n<td><code>patent_atty@simplelegal.com</code></td>\n</tr>\n<tr>\n<td><strong>matter_lead_is_approver</strong></td>\n<td><code>boolean</code></td>\n<td>true</td>\n</tr>\n<tr>\n<td><strong>client_matter_id</strong></td>\n<td><code>string</code></td>\n<td><code>PATENTS-0001-1</code></td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td><code>string</code></td>\n<td><code>open</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>matter_lead_email</strong> - <code>matter_lead_email</code> must be the email address of a valid SimpleLegal user. Note that <code>matter_lead_is_approver</code> must also be specified if <code>matter_lead_email</code> has a non-null value. (Missing fields are interpeted as a field with a null value).</li>\n<li><strong>matter_lead_is_approver</strong> - Setting this to <code>true</code> with a provided <code>matter_lead_email</code> sets the user associated with the email as an approver on the created matter. Setting it to <code>false</code> means that the user is only a lead, but not an approver. Unlike other fields on patch, adding another field (<code>matter_lead_email</code>) requires that this one also have a value.</li>\n<li><strong>client_matter_id</strong> - <code>client_matter_id</code> must be a unique client matter id</li>\n<li><strong>status</strong> - <code>status</code> must be one of the following valid values <code>open</code>, <code>closed</code>, <code>inactive</code>, <code>voided</code> or <code>draft</code>.</li>\n<li><strong>accept_invoices_until</strong> - is the date past when invoices sent to the matter will no longer be accepted. Allows closed matters to accept invoices after they are closed.</li>\n<li><strong>available_to_ipfolio</strong> - determines whether a matter can be accessed by IPFolio if you have an IPFolio integration. It affects nothing if there is no IPFolio integration.</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the updated matter.</p>\n","urlObject":{"protocol":"https","path":["api","v1","matters","mat_98bccde7b86f4c5784fd9f8990a8aefa",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"0941a11d-3548-4b7b-8ed1-45364e69daf0","name":"Basic Update a Matter","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token ffe8d121629bc14e9f11d315be479caf0388c152"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Patent Matter 10001.ABC.CA.1\",\n  \"description\": \"Updated patent matter in multiple countries.\",\n  \"matter_lead_email\": \"cfoster@example.com\",\n  \"matter_lead_is_approver\": false,\n  \"client_matter_id\": \"10001ABC-CA.1\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/matters/mat_98bccde7b86f4c5784fd9f8990a8aefa/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 12 Jan 2018 17:12:38 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.6.0","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=sxp0akpk316aidwk05a2kv9kqoex88yp; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"sxp0akpk316aidwk05a2kv9kqoex88yp","key":"sessionid"}],"responseTime":null,"body":"{\n    \"id\": \"mat_98bccde7b86f4c5784fd9f8990a8aefa\",\n    \"name\": \"Patent Matter 10001.ABC.CA.1\",\n    \"description\": \"Updated patent matter in multiple countries.\",\n    \"client_matter_id\": \"10001ABC-CA.1\",\n    \"matter_lead_email\": \"cfoster@example.com\",\n    \"matter_lead_is_approver\": false,\n    \"template\": null,\n    \"entity\": null,\n    \"status\": \"closed\",\n    \"matter_group\": null,\n    \"open_date\": \"2018-01-12\",\n    \"close_date\": null,\n    \"available_to_ipfolio\": false,\n    \"created_date\": \"2018-01-12T09:09:03.812037\",\n    \"modified_date\": \"2018-06-29T15:01:08.878960\",\n    \"allocations\": [\n        {\n            \"percentage\": \"1.0000\",\n            \"entity\": null,\n            \"cost_code\": null,\n            \"custom_attributes\": []\n        }\n    ],\n    \"accept_invoices_until\": null,\n    \"url\": \"https://falcon.simplelegal.com/manage/matters/v2/8492/\",\n    \"api_url\": \"https://falcon.simplelegal.com/api/v1/matters/mat_98bccde7b86f4c5784fd9f8990a8aefa/\"\n}"}],"_postman_id":"984f8c0a-bf67-4f8a-9dc3-90f66d64232f"},{"name":"List all Templates","id":"254eb264-e824-41e1-9d6a-61ef8328f9c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>You can list all templates that the api user has access to. The templates are returned sorted by ascending creation order.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h2 id=\"filters\">Filters</h2>\n<p>There are no filters currently implemented for Templates.</p>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of templates. Each entry in the array is a separate template object. If no more templates are available, the resulting array will be empty.</p>\n","urlObject":{"query":[],"variable":[]}},"response":[{"id":"a1597eab-7ea3-408d-9063-478457e598ce","name":"List all Templates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/matters/templates/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"52","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 27 Jun 2018 23:34:09 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qqdzfpnkh55wg0infv8esq3j8ftt3vgn; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qqdzfpnkh55wg0infv8esq3j8ftt3vgn","key":"sessionid"}],"responseTime":null,"body":"{\n    \"count\": 0,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n    \t{\n            \"id\": \"tmpl_3ea0822c0b6d4f1eb0b106dfe598c270\",\n            \"name\": \"Default\",\n            \"status\": \"published\"\n        }\n    ]\n}"}],"_postman_id":"254eb264-e824-41e1-9d6a-61ef8328f9c5"}],"id":"3dc36d72-b66b-4fa6-bdb9-c39aeecef869","_postman_id":"3dc36d72-b66b-4fa6-bdb9-c39aeecef869","description":""},{"name":"Purchase Orders","item":[{"name":"List all Purchase Orders","id":"68b42356-9ba5-4edc-b850-5d9412383668","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 41ae8e421cece30d38d1b1828f4878edfa538e9a\t","type":"text"}],"url":"http://falcon.simplelegal.com/api/v1/purchase-orders/","description":"<p>You can list all purchase orders that the api user has access to. The purchase orders are returned sorted in reverse chronological order.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of purchase orders. Each entry in the array is a separate purchase order object. The purchase order object contains information about the purchase order. If no more purchase orders are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"http","path":["api","v1","purchase-orders",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"d674b35a-b71c-4b5e-8706-426b0846bed5","name":"List all Purchase Orders","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 41ae8e421cece30d38d1b1828f4878edfa538e9a\t","type":"text"}],"url":"http://falcon.simplelegal.com/api/v1/purchase-orders/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 00:47:52 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.14"},{"key":"Vary","value":"Accept, Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"480"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=7enzfumnl4rywm1x5961jlh7axpttdm2; expires=Fri, 16-Nov-2018 00:47:52 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"po_2f5aeee373a748b2ba2af9aae2ed0c1f\",\n            \"name\": \"12031\",\n            \"description\": \"first purchase order description\",\n            \"amount\": \"2000.00\",\n            \"currency\": \"USD\",\n            \"balance\": 2000,\n            \"open\": true,\n            \"url\": \"http://local.simplelegal.com:8000/invoices/po/2964/\",\n            \"api_url\": \"http://local.simplelegal.com:8000/api/v1/purchase-orders/po_2f5aeee373a748b2ba2af9aae2ed0c1f/\",\n            \"created_date\": \"2018-11-01T17:39:54.899146\",\n            \"modified_date\": \"2018-11-01T17:39:54.899280\"\n        }\n    ]\n}"}],"_postman_id":"68b42356-9ba5-4edc-b850-5d9412383668"},{"name":"Retrieve a Purchase Order","id":"152fc500-240e-4ad0-a5ba-27c8c248f8f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 41ae8e421cece30d38d1b1828f4878edfa538e9a\t","type":"text"}],"url":"http://falcon.simplelegal.com/api/v1/purchase-orders/po_2f5aeee373a748b2ba2af9aae2ed0c1f","description":"<p>Retrieves the purchase with the given purchase order id.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>po_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a purchase order object if a valid <code>id</code> was provided. Returns a 404 if a corresponding purchase order doesn't exist.</p>\n","urlObject":{"protocol":"http","path":["api","v1","purchase-orders","po_2f5aeee373a748b2ba2af9aae2ed0c1f"],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"8ccfbad7-4c87-4b22-a019-b0fcaba57376","name":"Retrieve a Purchase Order","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 41ae8e421cece30d38d1b1828f4878edfa538e9a\t","type":"text"}],"url":"http://falcon.simplelegal.com/api/v1/purchase-orders/po_2f5aeee373a748b2ba2af9aae2ed0c1f/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 01:16:53 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.14"},{"key":"Vary","value":"Accept, Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"428"},{"key":"Allow","value":"GET, POST, PATCH, DELETE, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=7enzfumnl4rywm1x5961jlh7axpttdm2; expires=Fri, 16-Nov-2018 01:16:53 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"po_2f5aeee373a748b2ba2af9aae2ed0c1f\",\n    \"name\": \"12031\",\n    \"description\": \"first purchase order description\",\n    \"amount\": \"2000.00\",\n    \"currency\": \"USD\",\n    \"balance\": 2000,\n    \"open\": true,\n    \"url\": \"http://local.simplelegal.com:8000/invoices/po/2964/\",\n    \"api_url\": \"http://local.simplelegal.com:8000/api/v1/purchase-orders/po_2f5aeee373a748b2ba2af9aae2ed0c1f/\",\n    \"created_date\": \"2018-11-01T17:39:54.899146\",\n    \"modified_date\": \"2018-11-01T17:39:54.899280\"\n}"}],"_postman_id":"152fc500-240e-4ad0-a5ba-27c8c248f8f2"},{"name":"Create a Purchase Order","id":"8de77d1d-fc57-46fd-8860-e6d8b4f2c3fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Token 41ae8e421cece30d38d1b1828f4878edfa538e9a\t","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"po_2f5aeee373a748b2ba2af9aae2ed0c1f\",\n    \"name\": \"12032\",\n    \"description\": \"second purchase order description\",\n    \"amount\": \"3000.00\",\n    \"currency\": \"USD\"\n}"},"url":"http://falcon.simplelegal.com/api/v1/purchase-orders/","description":"<p>You can create a purchase order.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>PO1230</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>PO description</code></td>\n</tr>\n<tr>\n<td><strong>amount</strong></td>\n<td><code>decimal</code></td>\n<td><code>2000.00</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary that is the newly created purchase order.</p>\n","urlObject":{"protocol":"http","path":["api","v1","purchase-orders",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"a685d0bb-5889-4ad4-9e35-82dc1a569837","name":"Create a Purchase Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Token 41ae8e421cece30d38d1b1828f4878edfa538e9a\t","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"po_2f5aeee373a748b2ba2af9aae2ed0c1f\",\n    \"name\": \"12032\",\n    \"description\": \"second purchase order description\",\n    \"amount\": \"3000.00\",\n    \"currency\": \"USD\"\n}"},"url":"http://falcon.simplelegal.com/api/v1/purchase-orders/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 01:21:39 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.14"},{"key":"Vary","value":"Accept, Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"429"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=7enzfumnl4rywm1x5961jlh7axpttdm2; expires=Fri, 16-Nov-2018 01:21:39 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"po_f263042c2d5c48aabc74a7358f0c843f\",\n    \"name\": \"12032\",\n    \"description\": \"second purchase order description\",\n    \"amount\": \"3000.00\",\n    \"currency\": \"USD\",\n    \"balance\": 3000,\n    \"open\": true,\n    \"url\": \"http://local.simplelegal.com:8000/invoices/po/2965/\",\n    \"api_url\": \"http://local.simplelegal.com:8000/api/v1/purchase-orders/po_f263042c2d5c48aabc74a7358f0c843f/\",\n    \"created_date\": \"2018-11-01T18:21:39.506523\",\n    \"modified_date\": \"2018-11-01T18:21:39.506741\"\n}"}],"_postman_id":"8de77d1d-fc57-46fd-8860-e6d8b4f2c3fa"},{"name":"Update a Purchase Order","id":"656b24c2-bc1d-4b7f-9843-fb060fb3e521","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 41ae8e421cece30d38d1b1828f4878edfa538e9a\t","type":"text"}],"url":"http://falcon.simplelegal.com/api/v1/purchase-orders/po_2f5aeee373a748b2ba2af9aae2ed0c1f/","description":"<p>You can update a purchase order using either the <code>PATCH</code> or <code>POST</code> method.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Required</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>PO1230</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>PO description</code></td>\n</tr>\n<tr>\n<td><strong>amount</strong></td>\n<td><code>decimal</code></td>\n<td><code>2000.00</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary that is the updated purchase order.</p>\n","urlObject":{"protocol":"http","path":["api","v1","purchase-orders","po_2f5aeee373a748b2ba2af9aae2ed0c1f",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"f5e9c57f-f162-42df-9613-7d63b5eb6015","name":"Update a Purchase Order","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 41ae8e421cece30d38d1b1828f4878edfa538e9a\t","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"12031\",\n    \"description\": \"first purchase order description\",\n    \"amount\": \"2000.00\"\n}"},"url":"http://falcon.simplelegal.com/api/v1/purchase-orders/po_2f5aeee373a748b2ba2af9aae2ed0c1f/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 01:54:55 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.14"},{"key":"Vary","value":"Accept, Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"428"},{"key":"Allow","value":"GET, POST, PATCH, DELETE, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=7enzfumnl4rywm1x5961jlh7axpttdm2; expires=Fri, 16-Nov-2018 01:54:55 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"po_2f5aeee373a748b2ba2af9aae2ed0c1f\",\n    \"name\": \"12031\",\n    \"description\": \"first purchase order description\",\n    \"amount\": \"2000.00\",\n    \"currency\": \"USD\",\n    \"balance\": 2000,\n    \"open\": true,\n    \"url\": \"http://local.simplelegal.com:8000/invoices/po/2964/\",\n    \"api_url\": \"http://local.simplelegal.com:8000/api/v1/purchase-orders/po_2f5aeee373a748b2ba2af9aae2ed0c1f/\",\n    \"created_date\": \"2018-11-01T17:39:54.899146\",\n    \"modified_date\": \"2018-11-01T17:39:54.899280\"\n}"}],"_postman_id":"656b24c2-bc1d-4b7f-9843-fb060fb3e521"}],"id":"51318d7c-d8ed-4fdf-b43f-3d945d2cc354","_postman_id":"51318d7c-d8ed-4fdf-b43f-3d945d2cc354","description":""},{"name":"Users","item":[{"name":"Retrieve All Users","id":"485aa285-3f99-4e61-af16-9ee4881580c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"}],"url":"https://falcon.simplelegal.com/api/v1/users/","description":"<p>You can list all users that are in the account. The users are returned sorted by <code>created_date</code>, with the most recently created user first.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=mat_123456</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>N/A</td>\n<td>?email=<a href=\"mailto:user@example.com\">user@example.com</a></td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>N/A</td>\n<td>?status=open</td>\n</tr>\n<tr>\n<td>first_name</td>\n<td>string</td>\n<td>exact</td>\n<td>?first_name=jane</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td>string</td>\n<td>exact</td>\n<td>?last_name=doe</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>exact</td>\n<td>?phone=5551234567</td>\n</tr>\n<tr>\n<td>orgrole</td>\n<td>string</td>\n<td>exact</td>\n<td>?orgrole=poweruser</td>\n</tr>\n<tr>\n<td>open_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte</td>\n<td>?open_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?created_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>modified_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?modified_date__gt=2018-03-01</td>\n</tr>\n</tbody>\n</table>\n</div><p>Available modifiers can be added onto the end of a search string joined by a double dash and\nare generally shorthands for more advanced searches that can be done:</p>\n<ul>\n<li>lt -&gt; less than</li>\n<li>lte -&gt; less than equal to</li>\n<li>gt -&gt; greater than</li>\n<li>gt -&gt; greater than equal to</li>\n<li>icontains -&gt; contains, case insensitive</li>\n<li>range -&gt; two dates, everything between the dates matches (inclusive for the first, exclusive for second)</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of users. Each entry in the array is a separate user object. If no more users are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"485aa285-3f99-4e61-af16-9ee4881580c7"},{"name":"Retrieve a User","id":"3d15a109-ac20-4836-9c5a-0a398947a665","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 306b3d8279d7f651d294dd14a93859df5e0d0365"}],"url":"https://falcon.simplelegal.com/api/v1/users/usr_a67ae2a752174f44a511a2888db866c1/","description":"<p>Retrieves the user with the given user hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>usr_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a user object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The user object contains information about the user.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users","usr_a67ae2a752174f44a511a2888db866c1",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"32170cf9-2839-4857-9d8c-1b35248bf290","name":"Retrieve a User","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 306b3d8279d7f651d294dd14a93859df5e0d0365"}],"url":"https://falcon.simplelegal.com/api/v1/users/usr_a67ae2a752174f44a511a2888db866c1/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 12 Jan 2018 17:45:32 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.6.0","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=sxp0akpk316aidwk05a2kv9kqoex88yp; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"sxp0akpk316aidwk05a2kv9kqoex88yp","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"usr_a67ae2a752174f44a511a2888db866c1\",\"email\":\"bsmith@example.com\",\"first_name\":\"Barbara\",\"last_name\":\"Smith\",\"phone\":\"None\",\"orgrole\":\"admin\",\"active\":true,\"approval_authority\":null,\"two_factor_authentication\":false,\"last_login_date\":\"2017-04-29T14:01:41.808548\",\"created_date\":\"2017-04-29T14:01:41.733163\",\"modified_date\":\"2017-04-29T14:01:41.733175\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/users/usr_a67ae2a752174f44a511a2888db866c1/\",\"url\":\"https://falcon.simplelegal.com/company/user/397/\"}"}],"_postman_id":"3d15a109-ac20-4836-9c5a-0a398947a665"},{"name":"Create a User","id":"8eda5809-172a-4cee-b074-2acd7b3207e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"cjones@example.com\",\n  \"first_name\": \"Calvin\",\n  \"last_name\": \"Jones\",\n  \"phone\": \"2125551212\",\n  \"orgrole\": \"admin\",\n  \"active\": true,\n  \"two_factor_authentication\": false,\n  \"password\": \"X39dhdahdh3ud9!\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/users/","description":"<p>Authorized users can create users in their account.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>email</strong></td>\n<td><code>email</code></td>\n<td><code>newuser_3@simplelegal.com</code></td>\n</tr>\n<tr>\n<td><strong>first_name</strong></td>\n<td><code>string</code></td>\n<td><code>JoAnn</code></td>\n</tr>\n<tr>\n<td><strong>last_name</strong></td>\n<td><code>string</code></td>\n<td><code>Chang</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>first_name</strong></td>\n<td><code>string</code></td>\n<td><code>JoAnn</code></td>\n</tr>\n<tr>\n<td><strong>last_name</strong></td>\n<td><code>string</code></td>\n<td><code>Chang</code></td>\n</tr>\n<tr>\n<td><strong>orgrole</strong></td>\n<td><code>string</code></td>\n<td><code>admin</code></td>\n</tr>\n<tr>\n<td><strong>phone</strong></td>\n<td><code>string</code></td>\n<td><code>2125551212</code></td>\n</tr>\n<tr>\n<td><strong>active</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><strong>password</strong></td>\n<td><code>string</code></td>\n<td><code>X39dhdahdh3ud9!</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>orgrole</strong> - Supported choices are: <code>admin</code>, <code>filtered</code>, <code>poweruser</code>, <code>finance</code>, <code>emailonly</code>, <code>emailonly_filtered</code></li>\n<li><strong>active</strong> - Defines whether a user is activated or deactivated. Deactivated users can not log in. Default is <code>true</code>.</li>\n<li><strong>two_factor_authentication</strong> - Defines whether a user requires Two Factor Authentication to be enabled. Default is <code>false</code>.</li>\n<li><strong>password</strong> - Password is optional, if a password is not provided, a string password will be generated for the user. Passwords are not returned.</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created user. Users will not be automatically notified of account creation. It is the developers responsibility to notify users.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8eda5809-172a-4cee-b074-2acd7b3207e0"},{"name":"Deactivate a User","id":"66541722-c71f-4806-a2ab-a930cb8a1aaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/users/usr_42a74898d69314a63ea101ed79dd877804f5557c/","description":"<p>Deactivates the user with the given user hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>usr_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a user object for the deactivated user if a valid id was provided. Returns an error otherwise.\nThe user object contains information about the user</p>\n","urlObject":{"protocol":"https","path":["api","v1","users","usr_42a74898d69314a63ea101ed79dd877804f5557c",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"0ba20eb5-3ca1-4a41-91c2-c44adbe27d7d","name":"Deactivate a User","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/users/usr_a67ae2a752174f44a511a2888db866c1/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, DELETE, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"512","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 05 Feb 2018 22:30:28 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=lkzc3bm92lmqmeiw7aocxxmcu4qnyhyf; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"lkzc3bm92lmqmeiw7aocxxmcu4qnyhyf","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"usr_a67ae2a752174f44a511a2888db866c1\",\"email\":\"bsmith@example.com\",\"first_name\":\"Barbara\",\"last_name\":\"Smith\",\"phone\":\"None\",\"orgrole\":\"admin\",\"active\":false,\"approval_authority\":null,\"two_factor_authentication\":false,\"last_login_date\":\"2017-04-29T14:01:41.808548\",\"created_date\":\"2017-04-29T14:01:41.733163\",\"modified_date\":\"2018-02-05T14:30:28.359976\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/users/usr_a67ae2a752174f44a511a2888db866c1/\",\"url\":\"https://falcon.simplelegal.com/company/user/397/\"}"}],"_postman_id":"66541722-c71f-4806-a2ab-a930cb8a1aaa"},{"name":"Update a User","id":"eb1a1c33-1abb-4b41-afa9-6b6460eae73b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"rjones2@example.com\",\n  \"first_name\": \"Rashida\",\n  \"last_name\": \"Jones\",\n  \"phone\": \"2125553434\",\n  \"orgrole\": \"admin\",\n  \"active\": true,\n  \"two_factor_authentication\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/users/usr_1c4de9c4b73347280e6955e77f7793d1401e69a5/","description":"<p>Authorized users can update users in their account using either the <code>PATCH</code> or <code>POST</code> method.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>usr_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>email</strong></td>\n<td><code>email</code></td>\n<td><code>newuser_3@simplelegal.com</code></td>\n</tr>\n<tr>\n<td><strong>first_name</strong></td>\n<td><code>string</code></td>\n<td><code>JoAnn</code></td>\n</tr>\n<tr>\n<td><strong>last_name</strong></td>\n<td><code>string</code></td>\n<td><code>Chang</code></td>\n</tr>\n<tr>\n<td><strong>orgrole</strong></td>\n<td><code>string</code></td>\n<td><code>admin</code></td>\n</tr>\n<tr>\n<td><strong>phone</strong></td>\n<td><code>string</code></td>\n<td><code>2125551212</code></td>\n</tr>\n<tr>\n<td><strong>active</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><strong>two_factor_authentication</strong></td>\n<td><code>boolean</code></td>\n<td><code>false</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>**email ** - Updating email checks for duplicates, so you currently can't update to the same email address.</li>\n<li><strong>orgrole</strong> - Supported choices are: <code>admin</code>, <code>filtered</code>, <code>poweruser</code>, <code>finance</code>, <code>emailonly</code>, <code>emailonly_filtered</code></li>\n<li><strong>active</strong> - Defines whether a user is activated or deactivated. Deactivated users can not log in. Default is <code>true</code>.</li>\n<li><strong>two_factor_authentication</strong> - Defines whether a user requires Two Factor Authentication to be enabled. Default is <code>false</code>.</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created user. Users will not be automatically notified of account creation. It is the developers responsibility to notify users.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users","usr_1c4de9c4b73347280e6955e77f7793d1401e69a5",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"2ae1d17c-57af-4fb4-b491-5c5e2b60c139","name":"Update a User","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"rjones2@example.com\",\n  \"first_name\": \"Rashida\",\n  \"last_name\": \"Jones\",\n  \"phone\": \"2125553434\",\n  \"orgrole\": \"admin\",\n  \"active\": true,\n  \"two_factor_authentication\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/users/usr_1c4de9c4b73347280e6955e77f7793d1401e69a5/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, PATCH, DELETE, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"351","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 17 Jun 2018 16:45:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=ghio2dp32nmjtag2m0xg2qcmjvzoultj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"ghio2dp32nmjtag2m0xg2qcmjvzoultj","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"usr_1c4de9c4b73347280e6955e77f7793d1401e69a5\",\"email\":\"rjones2@example.com\",\"first_name\":\"Rashida\",\"last_name\":\"Jones\",\"phone\":\"2125553434\",\"orgrole\":\"admin\",\"active\":true,\"approval_authority\":null,\"two_factor_authentication\":false,\"last_login_date\":null,\"created_date\":\"2018-06-17T09:42:48.504173\",\"modified_date\":\"2018-06-17T09:45:41.364936\"}"},{"id":"3b00d620-e274-4481-8835-f60b655a0d9d","name":"Duplicate Email","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"rjones2@example.com\",\n  \"first_name\": \"Rashida\",\n  \"last_name\": \"Jones\",\n  \"phone\": \"2125553434\",\n  \"orgrole\": \"admin\",\n  \"active\": true,\n  \"two_factor_authentication\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/users/usr_1c4de9c4b73347280e6955e77f7793d1401e69a5/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, PATCH, DELETE, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"65","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 17 Jun 2018 16:46:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=q2xnltu73ufggkbrlovggeaps8xroh9a; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"q2xnltu73ufggkbrlovggeaps8xroh9a","key":"sessionid"}],"responseTime":null,"body":"{\"email\":[\"Email is not unique! User already exists in system.\"]}"}],"_postman_id":"eb1a1c33-1abb-4b41-afa9-6b6460eae73b"}],"id":"c608a61e-715e-4fb1-b463-9ff378a8e868","_postman_id":"c608a61e-715e-4fb1-b463-9ff378a8e868","description":""},{"name":"Vendors","item":[{"name":"Matter Referrals","item":[{"name":"List all associated Referrals","id":"62c9e8c7-c4dc-4e0d-a272-45fe4fc819bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_b78675eff0770ea74cb6456743234af43cf0cac3/referrals/","description":"<p>You can list all active matters that the specified vendor the api user has access to. The referred matters are returned sorted by vendor name alphabetically.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>ven_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"filters\">Filters</h3>\n<p>The search and filters are identical to the ones on the List All Matters section. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=mat_123456</td>\n</tr>\n<tr>\n<td>client_matter_id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?client_matter_id=outerapi-562</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>N/A</td>\n<td>?status=open</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>icontains</td>\n<td>?name=patent</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>icontains</td>\n<td>?description=hello</td>\n</tr>\n<tr>\n<td>open_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte</td>\n<td>?open_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?created_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>modified_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?modified_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>search</td>\n<td>string</td>\n<td>N/A</td>\n<td>?search=description_or_name_field_value</td>\n</tr>\n</tbody>\n</table>\n</div><p>Available modifiers can be added onto the end of a search string joined by a double dash and\nare generally shorthands for more advanced searches that can be done:</p>\n<ul>\n<li>lt -&gt; less than</li>\n<li>lte -&gt; less than equal to</li>\n<li>gt -&gt; greater than</li>\n<li>gt -&gt; greater than equal to</li>\n<li>icontains -&gt; contains, case insensitive</li>\n<li>range -&gt; two dates, everything between the dates matches (inclusive for the first, exclusive for second)</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of matters. Each entry in the array is a separate matter object. If no more matters are available, the resulting array will be empty.</p>\n<p>Each matter will contain an <code>allocations</code> array identifying the allocations as defined for that matter including <code>percentage</code> and any relevant objects set up for allocations.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendors","ven_b78675eff0770ea74cb6456743234af43cf0cac3","referrals",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"3cf73da8-5e9c-47e4-8483-dedba03fc0fa","name":"List all associated Referrals","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_b78675eff0770ea74cb6456743234af43cf0cac3/referrals/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2302","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 07 Sep 2018 17:38:11 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qx3kkrh5jhk0kmknx1ajp5c4kor7bysv; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qx3kkrh5jhk0kmknx1ajp5c4kor7bysv","key":"sessionid"}],"responseTime":null,"body":"{\"count\":1,\"next\":null,\"previous\":null,\"results\":[{\"id\":\"mat_a77a50b4fdea43c1b6f7871d60eeb6ad\",\"name\":\"Patent Matter 10001.ABC\",\"description\":\"Newly created patent matter in multiple countries.\",\"client_matter_id\":\"outerapi-5801\",\"matter_lead_email\":\"bsmith@example.com\",\"template\":null,\"entity\":null,\"status\":\"open\",\"matter_group\":{\"id\":\"mgp_38d49e70c194c61a3f01b396132c44a6cf992020\",\"name\":\"Patents\",\"description\":\"All US patent matters.\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/matter-groups/mgp_38d49e70c194c61a3f01b396132c44a6cf992020/\"},\"open_date\":\"2017-12-02\",\"close_date\":null,\"created_date\":\"2017-12-02T16:14:58.573937\",\"modified_date\":\"2018-07-16T11:46:04.512698\",\"allocations\":[{\"percentage\":\"0.3000\",\"entity\":{\"id\":\"ent_0738fd999f98479e9d70cf73e6aa272a\",\"name\":\"US HQ\",\"description\":\"US Headquarters.\",\"accounting_code\":\"10012\",\"address_1\":\"742 Evergreen Terrace\",\"address_2\":\"Unit 2\",\"city\":\"Springfield\",\"state\":\"MA\",\"zip\":\"01020\",\"country\":\"US\",\"custom_attributes\":[],\"api_url\":\"https://falcon.simplelegal.com/api/v1/entities/ent_0738fd999f98479e9d70cf73e6aa272a/\"},\"cost_code\":{\"id\":\"cos_047ca2710cdec5968a68bdbd2ad5f39165ecc750\",\"name\":\"SL-1000\",\"description\":\"Legal Expense\",\"accounting_code\":\"100.000.000\"},\"custom_attributes\":[{\"id\":\"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\"name\":\"10001.12456.122.36\",\"description\":\"10001.12456.122.36\",\"code\":\"10001.12456.122.36\",\"active\":true}]},{\"percentage\":\"0.7000\",\"entity\":{\"id\":\"ent_1010fcec077f4c8da3bd84c6c3cff417\",\"name\":\"US, Inc.\",\"description\":\"US Domestic entity\",\"accounting_code\":\"US, Inc.\",\"address_1\":\"123 Anywhere St\",\"address_2\":\"Suite 5931\",\"city\":\"San Francisco\",\"state\":\"CA\",\"zip\":\"94117\",\"country\":\"USA\",\"custom_attributes\":[],\"api_url\":\"https://falcon.simplelegal.com/api/v1/entities/ent_1010fcec077f4c8da3bd84c6c3cff417/\"},\"cost_code\":{\"id\":\"cos_2a52cc9edb7c4c968afd37a679036526\",\"name\":\"SL-2000\",\"description\":\"Legal Patent Expenses\",\"accounting_code\":\"100.000.200\"},\"custom_attributes\":[{\"id\":\"attr_opt_ec6d5cf76ef74a34816425b6791d3e37\",\"name\":\"10001.12456.122.36\",\"description\":\"10001.12456.122.36\",\"code\":\"10001.12456.122.36\",\"active\":true}]}],\"url\":\"https://falcon.simplelegal.com/manage/matters/v2/5801/\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/matters/mat_a77a50b4fdea43c1b6f7871d60eeb6ad/\"}]}"}],"_postman_id":"62c9e8c7-c4dc-4e0d-a272-45fe4fc819bc"}],"id":"0f9518f4-87f8-4f3d-af34-e870fa36bc8f","_postman_id":"0f9518f4-87f8-4f3d-af34-e870fa36bc8f","description":""},{"name":"Vendor Custom Attributes","item":[{"name":"List All Attributes for Vendor","id":"23105f2e-15c6-4d62-815e-cb8a924fd802","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/attributes/","description":"<p>You can list all attributes for a vendorthat the api user has access to.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<table>\n    <tr>\n        <th>Required</th>\n        <th>Type</th>\n        <th>Sample Value</th>\n    </tr>\n    <tr>\n        <td>id</td>\n        <td>`string`</td>\n        <td>`mat_1234567890`</td>\n    </tr>\n    <tr>\n        <th>Optional</th>\n        <th>Type</th>\n        <th>Sample Value</th>\n    </tr>\n    <tr>\n        <td>name</td>\n        <td>`string`</td>\n        <td>`?name=Country`</td>\n    </tr>\n</table>\n\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of attributes. Each entry in the array is a separate attribute object. If no more attributes are available, the resulting array will be empty.</p>\n<p>Note that the <code>value_extras</code> list may or may not be empty, please refer to the individual attribute value documentation for how to parse the <code>value_extras</code> field.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendors","ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14","attributes",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"94e77c2f-692c-404c-9a1d-d69e441b7529","name":"Vendor Attribute List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/attributes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"838","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 18:03:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qx3kkrh5jhk0kmknx1ajp5c4kor7bysv; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qx3kkrh5jhk0kmknx1ajp5c4kor7bysv","key":"sessionid"}],"responseTime":null,"body":"{\"count\":2,\"next\":null,\"previous\":null,\"results\":[{\"name\":\"Country\",\"hash\":\"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\"type\":\"list\",\"valid_values\":[\"CA\",\"US\"],\"attribute_group\":\"Locale\",\"attribute_group_sort\":\"1\",\"value\":null,\"extra_values\":[],\"modified_date\":\"2018-03-12T10:43:25.553317\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/vendors/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/\"},{\"name\":\"Agent1\",\"hash\":\"attr_932d666b54f942468939da9d702ea607\",\"type\":\"text\",\"valid_values\":\"Any Text Value\",\"attribute_group\":\"Financial\",\"attribute_group_sort\":\"2\",\"value\":null,\"extra_values\":[],\"modified_date\":\"2018-09-19T13:39:37.863829\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/vendors/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/attributes/attr_932d666b54f942468939da9d702ea607/\"}]}"}],"_postman_id":"23105f2e-15c6-4d62-815e-cb8a924fd802"},{"name":"Retrieve an Attribute For Vendor","id":"de103ca7-39d3-486a-9513-1f290a6c6396","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/","description":"<p>Retrieves the matter attribute for the given matter hash with the given attribute hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>mat_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an attribute object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The attribute object contains information about the attribute for the matter.</p>\n<p>Note that the <code>valid_values</code> field provides information on how to make semantic sense of the <code>values</code> field (which is always guaranteed to be of type <code>string</code>).</p>\n<p>Note that if an attribute is of type <code>list</code>, additional information associated with the <code>list_option</code> object is stored in the field <code>extra_values</code>. </p>\n<p>The <code>extra_values</code> field can be parsed as an object instead of a list, by mapping each <code>name</code> value to an object key and each <code>value</code> value to the corresponding key's value. </p>\n<p>An example transformation would be: [{\"name\": \"id\", \"value\": \"attr_opt_123456\"}, {\"name\": \"name\", \"value\": \"USA\"}] -&gt; \n{\"id\": \"attr_opt123456\", \"value\": \"USA\"}</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendors","ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14","attributes","attr_4a6f44669cf54e3bb6be2e640514a0fd",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"de103ca7-39d3-486a-9513-1f290a6c6396"},{"name":"Update an Attribute for Vendor","id":"22561467-fde9-4f29-b78d-bc3768c2e9e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"value","value":"James Bond","type":"text"}]},"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/attributes/attr_932d666b54f942468939da9d702ea607/","description":"<p>One value is required:</p>\n<p>{\"value\": }</p>\n<p>The format of the string varies and depends on what the 'valid_values' field of the return JSON states.</p>\n<p>You can update an attribute on a matter.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>ven_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>value</strong></td>\n<td><code>string</code></td>\n<td><code>CA</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>value</strong> - The format of the string varies and depends on what the <code>valid_values</code> field of the return JSON states.</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the updated attribute.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendors","ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14","attributes","attr_932d666b54f942468939da9d702ea607",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"2c624b20-7894-4f58-a2ab-cbb5b3d36350","name":"Update an Attribute for Vendor","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"value","value":"James Bond","type":"text"}]},"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/attributes/attr_932d666b54f942468939da9d702ea607/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, PUT, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"238","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 21:12:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=qx3kkrh5jhk0kmknx1ajp5c4kor7bysv; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"qx3kkrh5jhk0kmknx1ajp5c4kor7bysv","key":"sessionid"}],"responseTime":null,"body":"{\"name\":\"Agent1\",\"value\":\"James Bond\",\"hash\":\"attr_932d666b54f942468939da9d702ea607\",\"api_url\":\"https://falcon.simplelegal.com/api/v1/vendors/ven_1421b1f4e4a8b8b62838e8480acd8b9806d5ef14/attributes/attr_932d666b54f942468939da9d702ea607/\"}"}],"_postman_id":"22561467-fde9-4f29-b78d-bc3768c2e9e7"}],"id":"73683ea3-f32f-427f-b234-8ce505a7c71d","_postman_id":"73683ea3-f32f-427f-b234-8ce505a7c71d","description":""},{"name":"List All Vendors","id":"8dc0366b-1c04-409f-bd8e-9580fc9eecde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/","description":"<p>You can list all active vendors that the api user has access to. The vendors are returned sorted by vendor name alphabetically.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=ven_123456</td>\n</tr>\n<tr>\n<td>additional_text</td>\n<td>string</td>\n<td>exact</td>\n<td>?additional-text=extra_text</td>\n</tr>\n<tr>\n<td>address_1</td>\n<td>string</td>\n<td>exact</td>\n<td>?address_1=Street1</td>\n</tr>\n<tr>\n<td>address_2</td>\n<td>string</td>\n<td>exact</td>\n<td>?address_2=Street2</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>exact</td>\n<td>?city=LA</td>\n</tr>\n<tr>\n<td>country</td>\n<td>string</td>\n<td>exact</td>\n<td>?country=USA</td>\n</tr>\n<tr>\n<td>ein</td>\n<td>string</td>\n<td>exact</td>\n<td>?ein=01-586251</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>exact</td>\n<td>?email=<a href=\"mailto:test@simplelegal.com\">test@simplelegal.com</a></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>exact</td>\n<td>?name=</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>exact</td>\n<td>? phone=5551234567</td>\n</tr>\n<tr>\n<td>primary_contact</td>\n<td>string</td>\n<td>exact</td>\n<td>?primary_contact=John</td>\n</tr>\n<tr>\n<td>state</td>\n<td>string</td>\n<td>exact</td>\n<td>?state=California</td>\n</tr>\n<tr>\n<td>vendor_number</td>\n<td>string</td>\n<td>exact</td>\n<td>?vendor_number=123456</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>string</td>\n<td>exact</td>\n<td>?zip=95014</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso date</td>\n<td>range</td>\n<td>?created_date=2018-01-01</td>\n</tr>\n<tr>\n<td>modified_date</td>\n<td>iso date</td>\n<td>range</td>\n<td>?created_date=2018-01-01</td>\n</tr>\n<tr>\n<td>search</td>\n<td>string</td>\n<td>N/A</td>\n<td>?search=description_or_name_field_value</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of vendors. Each entry in the array is a separate vendor object. The vendor object contains information about the vendor, including an array of custom attributes if they exist. If no more vendors are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendors",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"7f4abd99-f0f8-4abf-a382-7536c87f3ab7","name":"List All Vendors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 22:27:44 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.17"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"11234"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=s2r4gd2rfg1k2q2cowykwlndgd1sn19o; expires=Thu, 16-Apr-2020 22:27:44 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 19,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"ven_d9f4f2fac20f26a7aaf3d4bba0f656ca4a735039\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_d9f4f2fac20f26a7aaf3d4bba0f656ca4a735039/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T12:56:47.861596\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor1@gmail.com\",\n            \"modified_date\": \"2020-03-26T17:53:25.637027\",\n            \"name\": \"Cravath, Swaine & Moore LLP 1\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Youlanda Abbas\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/11/\",\n            \"vendor_group\": {\n                \"id\": \"vgp_d64aa7dfd9a24383b131177b451d0d51\",\n                \"name\": \"Other Big Law Firm LLP\"\n            },\n            \"vendor_number\": \"CRAV100\",\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_fd8d8439bfaf37a31078d063c185f5ae25bea303\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_fd8d8439bfaf37a31078d063c185f5ae25bea303/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T13:11:15.487240\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor9@gmail.com\",\n            \"modified_date\": \"2018-09-26T09:26:51.118292\",\n            \"name\": \"Davis Polk & Wardwell LLP (New York)\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Irwin Coomer\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/19/\",\n            \"vendor_group\": {\n                \"id\": \"vgp_71e8c33a22cd40c8a67d706a01298e27\",\n                \"name\": \"Big Law Firm LLP\"\n            },\n            \"vendor_number\": \"DPWNEWYORK\",\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_a3505a773168860420e1f758ad592cd962bec0bc\",\n            \"additional_text\": null,\n            \"address_1\": \"76  rue des Soeurs\",\n            \"address_2\": \"\",\n            \"api_url\": \"/api/v1/vendors/ven_a3505a773168860420e1f758ad592cd962bec0bc/\",\n            \"city\": \"JUAN-LES-PINS\",\n            \"country\": \"France\",\n            \"created_date\": \"2018-01-03T13:00:55.233776\",\n            \"custom_attributes\": [],\n            \"ein\": \"00-1234567\",\n            \"email\": \"simplelegaldemo+vendor5@gmail.com\",\n            \"modified_date\": \"2018-11-30T14:36:36.516530\",\n            \"name\": \"Davis Polk & Wardwell LLP (Paris)\",\n            \"phone\": \"00 33 1 40 00 11 85\",\n            \"primary_contact\": \"Sang Nails\",\n            \"state\": \"Provence-Alpes-Côte d\",\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/15/\",\n            \"vendor_group\": {\n                \"id\": \"vgp_71e8c33a22cd40c8a67d706a01298e27\",\n                \"name\": \"Big Law Firm LLP\"\n            },\n            \"vendor_number\": \"DPWPARIS\",\n            \"zip\": \"06160\"\n        },\n        {\n            \"id\": \"ven_e733ddfc76c0ceb1af1c8005ee045ece134a11ff\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_e733ddfc76c0ceb1af1c8005ee045ece134a11ff/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-10-16T10:17:49.834017\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor15@simplelegal.com\",\n            \"modified_date\": \"2018-10-16T10:17:49.845446\",\n            \"name\": \"Fenwick and West LLP\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Janelle Fenwick\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/30/\",\n            \"vendor_group\": null,\n            \"vendor_number\": null,\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_cfaf62611aa35a05d1fae59508347fda9a594801\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_cfaf62611aa35a05d1fae59508347fda9a594801/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T13:11:35.926184\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor10@gmail.com\",\n            \"modified_date\": \"2018-01-03T13:11:35.926196\",\n            \"name\": \"Gibson, Dunn & Crutcher LLP\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Lean Suitt\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/20/\",\n            \"vendor_group\": null,\n            \"vendor_number\": \"GIBSD901\",\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_a96bfe531f8b48cb734885bb54cd97fb88cb9e1f\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_a96bfe531f8b48cb734885bb54cd97fb88cb9e1f/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-10-15T14:03:33.789184\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"chawkins@simplelegal.com\",\n            \"modified_date\": \"2019-11-04T13:09:21.241588\",\n            \"name\": \"JDC Law Firm\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Cheryl Hawkins\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/29/\",\n            \"vendor_group\": null,\n            \"vendor_number\": null,\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_c16d404be67fb93786139815f9bb7b1fd99248e3\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_c16d404be67fb93786139815f9bb7b1fd99248e3/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T13:04:34.536828\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor8@gmail.com\",\n            \"modified_date\": \"2018-01-03T13:04:34.536839\",\n            \"name\": \"Kirkland & Ellis LLP\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Jame Fleurant\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/18/\",\n            \"vendor_group\": null,\n            \"vendor_number\": \"KIRK005\",\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_b49eabed54e19444df0452f808a4f1aa435aa68e\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_b49eabed54e19444df0452f808a4f1aa435aa68e/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T13:02:58.010039\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor7@gmail.com\",\n            \"modified_date\": \"2019-02-11T14:15:19.803591\",\n            \"name\": \"Latham & Watkins LLP(a)\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Samella Bibby\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/17/\",\n            \"vendor_group\": null,\n            \"vendor_number\": \"LATWAT201\",\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_a42f2115752cd63d22a718ba884016070ba69b8a\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_a42f2115752cd63d22a718ba884016070ba69b8a/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T13:13:40.225102\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor12@gmail.com\",\n            \"modified_date\": \"2019-02-11T14:15:20.580113\",\n            \"name\": \"Paul, Weiss, Rifkind, Wharton & Garrison LLP\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Dante Hibbard\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/22/\",\n            \"vendor_group\": null,\n            \"vendor_number\": \"PWRWG\",\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b\",\n            \"additional_text\": null,\n            \"address_1\": \"123 Anywhere St\",\n            \"address_2\": \"\",\n            \"api_url\": \"/api/v1/vendors/ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b/\",\n            \"city\": \"San Francisco\",\n            \"country\": \"USA\",\n            \"created_date\": \"2020-04-02T15:23:56.096951\",\n            \"custom_attributes\": [],\n            \"ein\": \"00-0000003\",\n            \"email\": \"jsmith@example.com\",\n            \"modified_date\": \"2020-04-02T15:26:34.635157\",\n            \"name\": \"Rosato and Associates\",\n            \"phone\": \"+1-555-555-5555\",\n            \"primary_contact\": \"Jill Doe\",\n            \"state\": \"CA\",\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/97/\",\n            \"vendor_group\": {\n                \"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\",\n                \"name\": \"New Vendor Group Name\"\n            },\n            \"vendor_number\": \"34.330.001-3\",\n            \"zip\": \"94117\"\n        },\n        {\n            \"id\": \"ven_81bf0a29d7b8efe2573391fa998cbfb254fb3848\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_81bf0a29d7b8efe2573391fa998cbfb254fb3848/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T13:02:25.841118\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor6@gmail.com\",\n            \"modified_date\": \"2019-11-06T05:47:01.359881\",\n            \"name\": \"Simpson Thacher & Bartlett LLP\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Shea Papazian\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/16/\",\n            \"vendor_group\": null,\n            \"vendor_number\": \"STB000\",\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_eae7bd642a40809fc061688cd025d3b13656f8a8\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_eae7bd642a40809fc061688cd025d3b13656f8a8/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T12:57:26.242682\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor3@gmail.com\",\n            \"modified_date\": \"2018-01-03T12:57:26.242696\",\n            \"name\": \"Skadden, Arps, Slate, Meagher & Flom LLP and Affiliates\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Shasta Bohnert\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/13/\",\n            \"vendor_group\": null,\n            \"vendor_number\": \"SASMF1\",\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_9ba7bdc9c7064f5d240bc9bd3372cd9d9d31bce7\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_9ba7bdc9c7064f5d240bc9bd3372cd9d9d31bce7/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T13:00:25.736852\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"david.moran+sullivan@simplelegal.com\",\n            \"modified_date\": \"2019-11-05T06:30:41.662157\",\n            \"name\": \"Sullivan & Cromwell LLP\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Jose Ronald\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/14/\",\n            \"vendor_group\": null,\n            \"vendor_number\": \"SULCROM23\",\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_4f7bc6a7eb627bbc4228da4a97267966ac991c8d\",\n            \"additional_text\": null,\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"api_url\": \"/api/v1/vendors/ven_4f7bc6a7eb627bbc4228da4a97267966ac991c8d/\",\n            \"city\": \"\",\n            \"country\": \"\",\n            \"created_date\": \"2020-03-26T17:32:31.485782\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"\",\n            \"modified_date\": \"2020-03-26T17:32:31.559209\",\n            \"name\": \"test vendor\",\n            \"phone\": \"\",\n            \"primary_contact\": \"\",\n            \"state\": \"\",\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/94/\",\n            \"vendor_group\": null,\n            \"vendor_number\": null,\n            \"zip\": \"\"\n        },\n        {\n            \"id\": \"ven_756a481b8b824cb2e651175f7165da7ed44e94e5\",\n            \"additional_text\": null,\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"api_url\": \"/api/v1/vendors/ven_756a481b8b824cb2e651175f7165da7ed44e94e5/\",\n            \"city\": \"\",\n            \"country\": \"\",\n            \"created_date\": \"2020-03-26T17:36:53.994790\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"\",\n            \"modified_date\": \"2020-03-26T17:36:54.046196\",\n            \"name\": \"test vendor 2\",\n            \"phone\": \"\",\n            \"primary_contact\": \"\",\n            \"state\": \"\",\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/95/\",\n            \"vendor_group\": null,\n            \"vendor_number\": null,\n            \"zip\": \"\"\n        },\n        {\n            \"id\": \"ven_fa4a9d53fe0f5f56fd73e5b9170a5010aaf70ab1\",\n            \"additional_text\": null,\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"api_url\": \"/api/v1/vendors/ven_fa4a9d53fe0f5f56fd73e5b9170a5010aaf70ab1/\",\n            \"city\": \"\",\n            \"country\": \"\",\n            \"created_date\": \"2020-03-26T17:39:24.518675\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"\",\n            \"modified_date\": \"2020-03-26T17:39:24.537510\",\n            \"name\": \"test vendor 3\",\n            \"phone\": \"\",\n            \"primary_contact\": \"\",\n            \"state\": \"\",\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/96/\",\n            \"vendor_group\": null,\n            \"vendor_number\": null,\n            \"zip\": \"\"\n        },\n        {\n            \"id\": \"ven_447ce51469a7ea1e1ff8019d75e05c844d3bfe34\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_447ce51469a7ea1e1ff8019d75e05c844d3bfe34/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T12:57:07.809748\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor2@gmail.com\",\n            \"modified_date\": \"2019-11-06T14:36:19.360562\",\n            \"name\": \"Wachtell, Lipton, Rosen & Katz\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Trish Crume\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/12/\",\n            \"vendor_group\": null,\n            \"vendor_number\": \"WLRK408\",\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_d2ea2715b7cf70ffbdab8fda94e37277c4ce9e7c\",\n            \"additional_text\": \"According to terms, vendor will always provide 15% discount on all work\",\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_d2ea2715b7cf70ffbdab8fda94e37277c4ce9e7c/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-10-10T13:31:26.588457\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"jjones@simplelegal.com\",\n            \"modified_date\": \"2018-10-11T17:05:36.590736\",\n            \"name\": \"Wang Legal Group\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Jack Jones\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/28/\",\n            \"vendor_group\": null,\n            \"vendor_number\": null,\n            \"zip\": null\n        },\n        {\n            \"id\": \"ven_e9233ad8a876a7c2047e49b2518fceae053c1b0c\",\n            \"additional_text\": null,\n            \"address_1\": null,\n            \"address_2\": null,\n            \"api_url\": \"/api/v1/vendors/ven_e9233ad8a876a7c2047e49b2518fceae053c1b0c/\",\n            \"city\": null,\n            \"country\": null,\n            \"created_date\": \"2018-01-03T13:13:22.447261\",\n            \"custom_attributes\": [],\n            \"ein\": \"\",\n            \"email\": \"simplelegaldemo+vendor11@gmail.com\",\n            \"modified_date\": \"2018-01-03T13:13:22.447273\",\n            \"name\": \"Weil, Gotshal & Manges LLP\",\n            \"phone\": \"\",\n            \"primary_contact\": \"Geoffrey Briggs\",\n            \"state\": null,\n            \"status\": \"Active\",\n            \"url\": \"/invoices/vendors/21/\",\n            \"vendor_group\": null,\n            \"vendor_number\": \"WGM03\",\n            \"zip\": null\n        }\n    ]\n}"}],"_postman_id":"8dc0366b-1c04-409f-bd8e-9580fc9eecde"},{"name":"Retrieve a Vendor","id":"659c3735-48e2-4638-8cc6-18721cb52895","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b/","description":"<p>Retrieves the vendor with the given vendor hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>ven_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a vendor object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The vendor object contains contact information for the vendor, including an array of custom attributes if they exist.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendors","ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"d40c16b4-5016-4bc2-905e-5ef15ed13c47","name":"Retrieve a Vendor","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 22:27:23 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.17"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"678"},{"key":"Allow","value":"GET, POST, PATCH, DELETE, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=s2r4gd2rfg1k2q2cowykwlndgd1sn19o; expires=Thu, 16-Apr-2020 22:27:23 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b\",\n    \"additional_text\": null,\n    \"address_1\": \"123 Anywhere St\",\n    \"address_2\": \"\",\n    \"api_url\": \"/api/v1/vendors/ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b/\",\n    \"city\": \"San Francisco\",\n    \"country\": \"USA\",\n    \"created_date\": \"2020-04-02T15:23:56.096951\",\n    \"custom_attributes\": [],\n    \"ein\": \"00-0000003\",\n    \"email\": \"jsmith@example.com\",\n    \"modified_date\": \"2020-04-02T15:26:34.635157\",\n    \"name\": \"Rosato and Associates\",\n    \"phone\": \"+1-555-555-5555\",\n    \"primary_contact\": \"Jill Doe\",\n    \"state\": \"CA\",\n    \"status\": \"Active\",\n    \"url\": \"/invoices/vendors/97/\",\n    \"vendor_group\": {\n        \"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\",\n        \"name\": \"New Vendor Group Name\"\n    },\n    \"vendor_number\": \"34.330.001-3\",\n    \"zip\": \"94117\"\n}"}],"_postman_id":"659c3735-48e2-4638-8cc6-18721cb52895"},{"name":"Create a Vendor","id":"ccf9d827-e8b0-4a28-bd9a-17305f85200c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My New Vendor\",\n    \"primary_contact\": \"Jennie Jones\",\n    \"phone\": \"(555) 555-1234\",\n    \"email\": \"jennie@example.com\",\n    \"address_1\": \"123 Main St.\",\n    \"address_2\": \"Suite F\",\n    \"city\": \"Chicago\",\n    \"state\": \"CA\",\n    \"zip\": \"60611\",\n    \"country\": \"USA\",\n    \"ein\": \"00-0000000\",\n    \"vendor_number\": \"NS12345\",\n    \"vendor_group\": {\"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\"}\n}    "},"url":"https://falcon.simplelegal.com/api/v1/vendors/","description":"<p>You can create a vendor.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>My New Vendor</code></td>\n</tr>\n<tr>\n<td><strong>email</strong></td>\n<td><code>email</code></td>\n<td><code>jennie@example.com</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>primary_contact</strong></td>\n<td><code>string</code></td>\n<td><code>Jennie Jones</code></td>\n</tr>\n<tr>\n<td><strong>phone</strong></td>\n<td><code>string</code></td>\n<td><code>(555) 555-1234</code></td>\n</tr>\n<tr>\n<td><strong>address_1</strong></td>\n<td><code>string</code></td>\n<td><code>123 Main St.</code></td>\n</tr>\n<tr>\n<td><strong>address_2</strong></td>\n<td><code>string</code></td>\n<td><code>Suite F</code></td>\n</tr>\n<tr>\n<td><strong>city</strong></td>\n<td><code>string</code></td>\n<td><code>Chicago</code></td>\n</tr>\n<tr>\n<td><strong>state</strong></td>\n<td><code>string</code></td>\n<td><code>IL</code></td>\n</tr>\n<tr>\n<td><strong>zip</strong></td>\n<td><code>string</code></td>\n<td><code>60611</code></td>\n</tr>\n<tr>\n<td><strong>country</strong></td>\n<td><code>string</code></td>\n<td><code>US</code></td>\n</tr>\n<tr>\n<td><strong>ein</strong></td>\n<td><code>string</code></td>\n<td><code>00-0000000</code></td>\n</tr>\n<tr>\n<td><strong>vendor_number</strong></td>\n<td><code>string</code></td>\n<td><code>NS12345</code></td>\n</tr>\n<tr>\n<td><strong>additional_text</strong></td>\n<td><code>string</code></td>\n<td><code>This is a preferred vendor and we have a negotiated 10% discount.</code></td>\n</tr>\n<tr>\n<td><strong>vendor_group</strong></td>\n<td><code>string</code></td>\n<td><code>vgp_d64aa7dfd9a24383b131177b451d0d51</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created vendor.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendors",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"93f0d387-a4dc-436d-844a-ca8a40fc8a59","name":"Create a Vendor","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My New Vendor\",\n    \"primary_contact\": \"Jennie Jones\",\n    \"phone\": \"(555) 555-1234\",\n    \"email\": \"jennie@example.com\",\n    \"address_1\": \"123 Main St.\",\n    \"address_2\": \"Suite F\",\n    \"city\": \"Chicago\",\n    \"state\": \"CA\",\n    \"zip\": \"60611\",\n    \"country\": \"USA\",\n    \"ein\": \"00-0000000\",\n    \"vendor_number\": \"NS12345\",\n    \"vendor_group\": {\"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\"}\n}    "},"url":"https://falcon.simplelegal.com/api/v1/vendors/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 22:23:56 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.17"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"666"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=s2r4gd2rfg1k2q2cowykwlndgd1sn19o; expires=Thu, 16-Apr-2020 22:23:56 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b\",\n    \"additional_text\": null,\n    \"address_1\": \"123 Main St.\",\n    \"address_2\": \"Suite F\",\n    \"api_url\": \"/api/v1/vendors/ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b/\",\n    \"city\": \"Chicago\",\n    \"country\": \"USA\",\n    \"created_date\": \"2020-04-02T15:23:56.096951\",\n    \"custom_attributes\": [],\n    \"ein\": \"00-0000000\",\n    \"email\": \"jennie@example.com\",\n    \"modified_date\": \"2020-04-02T15:23:56.284124\",\n    \"name\": \"My New Vendor\",\n    \"phone\": \"(555) 555-1234\",\n    \"primary_contact\": \"Jennie Jones\",\n    \"state\": \"CA\",\n    \"status\": \"Active\",\n    \"url\": \"/invoices/vendors/97/\",\n    \"vendor_group\": {\n        \"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\",\n        \"name\": \"New Vendor Group Name\"\n    },\n    \"vendor_number\": \"NS12345\",\n    \"zip\": \"60611\"\n}"}],"_postman_id":"ccf9d827-e8b0-4a28-bd9a-17305f85200c"},{"name":"Update a Vendor","id":"dcd8d84e-2c29-4da4-a3fd-b8aa16776175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Rosato and Associates\",\n    \"vendor_number\": \"34.330.001-3\",\n    \"primary_contact\": \"Jill Doe\",\n    \"phone\": \"+1-555-555-5555\",\n    \"email\": \"jsmith@example.com\",\n    \"address_1\": \"123 Anywhere St\",\n    \"address_2\": \"\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zip\": \"94117\",\n    \"country\": \"USA\",\n    \"ein\": \"00-0000003\",\n    \"created_date\": \"2017-04-29T14:02:04.858760\",\n    \"modified_date\": \"2017-04-29T14:02:04.858764\",\n    \"vendor_group\": {\"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\"}\n}"},"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b/","description":"<p>You can update a vendor using either the <code>PATCH</code> or <code>POST</code> method.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>ven_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>My New Vendor</code></td>\n</tr>\n<tr>\n<td><strong>primary_contact</strong></td>\n<td><code>string</code></td>\n<td><code>Jennie Jones</code></td>\n</tr>\n<tr>\n<td><strong>phone</strong></td>\n<td><code>string</code></td>\n<td><code>(555) 555-1234</code></td>\n</tr>\n<tr>\n<td><strong>email</strong></td>\n<td><code>email</code></td>\n<td><code>jennie@example.com</code></td>\n</tr>\n<tr>\n<td><strong>address_1</strong></td>\n<td><code>string</code></td>\n<td><code>123 Main St.</code></td>\n</tr>\n<tr>\n<td><strong>address_2</strong></td>\n<td><code>string</code></td>\n<td><code>Suite F</code></td>\n</tr>\n<tr>\n<td><strong>city</strong></td>\n<td><code>string</code></td>\n<td><code>Chicago</code></td>\n</tr>\n<tr>\n<td><strong>state</strong></td>\n<td><code>string</code></td>\n<td><code>IL</code></td>\n</tr>\n<tr>\n<td><strong>zip</strong></td>\n<td><code>string</code></td>\n<td><code>60611</code></td>\n</tr>\n<tr>\n<td><strong>country</strong></td>\n<td><code>string</code></td>\n<td><code>US</code></td>\n</tr>\n<tr>\n<td><strong>ein</strong></td>\n<td><code>string</code></td>\n<td><code>00-0000000</code></td>\n</tr>\n<tr>\n<td><strong>vendor_number</strong></td>\n<td><code>string</code></td>\n<td><code>NS12345</code></td>\n</tr>\n<tr>\n<td><strong>vendor_group</strong></td>\n<td><code>string</code></td>\n<td><code>vgp_d64aa7dfd9a24383b131177b451d0d51</code> or <code>None</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a vendor object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendors","ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"d75b2e6f-5beb-443d-8602-d3dc7f97d7cc","name":"Update a Vendor","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Rosato and Associates\",\n    \"vendor_number\": \"34.330.001-3\",\n    \"primary_contact\": \"Jill Doe\",\n    \"phone\": \"+1-555-555-5555\",\n    \"email\": \"jsmith@example.com\",\n    \"address_1\": \"123 Anywhere St\",\n    \"address_2\": \"\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zip\": \"94117\",\n    \"country\": \"USA\",\n    \"ein\": \"00-0000003\",\n    \"created_date\": \"2017-04-29T14:02:04.858760\",\n    \"modified_date\": \"2017-04-29T14:02:04.858764\",\n    \"vendor_group\": {\"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\"}\n}"},"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 22:26:34 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.17"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"678"},{"key":"Allow","value":"GET, POST, PATCH, DELETE, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=s2r4gd2rfg1k2q2cowykwlndgd1sn19o; expires=Thu, 16-Apr-2020 22:26:34 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b\",\n    \"additional_text\": null,\n    \"address_1\": \"123 Anywhere St\",\n    \"address_2\": \"\",\n    \"api_url\": \"/api/v1/vendors/ven_e409f0c20bcf92b1f5b1dd2ff9a4b0df8808302b/\",\n    \"city\": \"San Francisco\",\n    \"country\": \"USA\",\n    \"created_date\": \"2020-04-02T15:23:56.096951\",\n    \"custom_attributes\": [],\n    \"ein\": \"00-0000003\",\n    \"email\": \"jsmith@example.com\",\n    \"modified_date\": \"2020-04-02T15:26:34.635157\",\n    \"name\": \"Rosato and Associates\",\n    \"phone\": \"+1-555-555-5555\",\n    \"primary_contact\": \"Jill Doe\",\n    \"state\": \"CA\",\n    \"status\": \"Active\",\n    \"url\": \"/invoices/vendors/97/\",\n    \"vendor_group\": {\n        \"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\",\n        \"name\": \"New Vendor Group Name\"\n    },\n    \"vendor_number\": \"34.330.001-3\",\n    \"zip\": \"94117\"\n}"}],"_postman_id":"dcd8d84e-2c29-4da4-a3fd-b8aa16776175"},{"name":"Deactivate a Vendor","id":"70180a0b-1dca-4b05-aed5-3e7a7c0d5e07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_aa76e71546a275c11bfbd5014c20c39c8070df0f/","description":"<p>Deactivates the vendor with the given vendor hash.</p>\n<p>Note that a deactivated vendor cannot be seen on the list as well as reactivated via an update.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>ven_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Nothing</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendors","ven_aa76e71546a275c11bfbd5014c20c39c8070df0f",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"d9e46dc7-2674-420b-a7dc-cb2e03080d5e","name":"Deactivate a Vendor","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537"}],"url":"https://falcon.simplelegal.com/api/v1/vendors/ven_aa76e71546a275c11bfbd5014c20c39c8070df0f/"},"status":"NO CONTENT","code":204,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, DELETE, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 03 Dec 2017 01:26:56 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.6.0","name":"Server","description":""},{"key":"Set-Cookie","value":"sessionid=pebmkgaciz9xrza8s2qrpairhrag7hcj; httponly; Path=/; secure","name":"Set-Cookie","description":""},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Cookie","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"pebmkgaciz9xrza8s2qrpairhrag7hcj","key":"sessionid"}],"responseTime":null,"body":""}],"_postman_id":"70180a0b-1dca-4b05-aed5-3e7a7c0d5e07"}],"id":"ccbb4800-a19a-4ceb-a4ef-784534797408","_postman_id":"ccbb4800-a19a-4ceb-a4ef-784534797408","description":""},{"name":"Vendor Groups","item":[{"name":"List All Vendor Groups","id":"38d2c77c-baf2-4111-8b6a-f14bc98840cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/vendor-groups/","description":"<p>You can list all vendor groups that the api user has access to. The vendor groups are returned sorted by vendor group name alphabetically.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h2 id=\"filters\">Filters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=vgp_d64aa7dfd9a24383b131177b451d0d51</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>icontains</td>\n<td>?name=vendor-group-01</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of vendor groups. Each entry in the array is a separate vendor group object. If no more vendor groups are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendor-groups",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"4a23bc33-f7f9-4546-9389-2b28f3b99d7e","name":"List All Vendor Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/vendor-groups/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 22:11:10 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.17"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"272"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=s2r4gd2rfg1k2q2cowykwlndgd1sn19o; expires=Thu, 16-Apr-2020 22:11:10 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 3,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"vgp_71e8c33a22cd40c8a67d706a01298e27\",\n            \"name\": \"Big Law Firm LLP\"\n        },\n        {\n            \"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\",\n            \"name\": \"My Vendor Group\"\n        },\n        {\n            \"id\": \"vgp_d64aa7dfd9a24383b131177b451d0d51\",\n            \"name\": \"Other Big Law Firm LLP\"\n        }\n    ]\n}"}],"_postman_id":"38d2c77c-baf2-4111-8b6a-f14bc98840cb"},{"name":"Retrieve a Vendor Group","id":"99c66cab-b0bd-4a61-88b3-ab9aa3689fbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/vendor-groups/vgp_3ae1804677534c7cb566e9a166235b32/","description":"<p>Retrieves the vendor group with the given vendor group id.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>id</code></td>\n<td><code>vgp_e578fba449f447e8a214ea253e2fabb7</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a vendor group object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The vendor group object contains information about the vendor group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendor-groups","vgp_3ae1804677534c7cb566e9a166235b32",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"2a457add-52b4-4a40-985d-a317ec9de480","name":"Retrieve a Vendor Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/vendor-groups/vgp_3ae1804677534c7cb566e9a166235b32/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 22:12:02 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.17"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"70"},{"key":"Allow","value":"GET, POST, PATCH, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=s2r4gd2rfg1k2q2cowykwlndgd1sn19o; expires=Thu, 16-Apr-2020 22:12:02 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\",\n    \"name\": \"My Vendor Group\"\n}"}],"_postman_id":"99c66cab-b0bd-4a61-88b3-ab9aa3689fbc"},{"name":"Create a Vendor Group","id":"2a235304-bcb6-4939-bc5d-1f8c22a9282a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a99","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"My Vendor Group\"\n}","options":{"raw":{"language":"json"}}},"url":"https://falcon.simplelegal.com/api/v1/vendor-groups/","description":"<p>You can create a vendor group.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>My New Vendor Group</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with an <code>id</code> and <code>name</code> property for the newly created vendor group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendor-groups",""],"host":["falcon","simplelegal","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"e738450e-1d9f-400e-87dd-c628f54c94d8","name":"Create a Vendor Group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a99","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"My Vendor Group\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://falcon.simplelegal.com/api/v1/vendor-groups/","protocol":"https","host":["falcon","simplelegal","com"],"path":["api","v1","vendor-groups",""],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 22:00:05 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.17"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"70"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=s2r4gd2rfg1k2q2cowykwlndgd1sn19o; expires=Thu, 16-Apr-2020 22:00:05 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\",\n    \"name\": \"My Vendor Group\"\n}"}],"_postman_id":"2a235304-bcb6-4939-bc5d-1f8c22a9282a"},{"name":"Update a Vendor Group","id":"c5bdc382-54d9-4eff-a023-b63adee08e83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New Vendor Group Name\"\n}","options":{"raw":{"language":"json"}}},"url":"https://falcon.simplelegal.com/api/v1/vendor-groups/vgp_3ae1804677534c7cb566e9a166235b32/","description":"<p>You update a vendor group using either the <code>PATCH</code> or <code>POST</code> method.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>My Renamed Vendor Group</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary that contains the updated vendor group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","vendor-groups","vgp_3ae1804677534c7cb566e9a166235b32",""],"host":["falcon","simplelegal","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"ac0867f8-1e6c-4a9b-8432-102f2aa6b0c6","name":"Update a Vendor Group","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 99f9e5ca2b31a1e3f332a4fc56735cfeb8b06a81","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New Vendor Group Name\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://falcon.simplelegal.com/api/v1/vendor-groups/vgp_3ae1804677534c7cb566e9a166235b32/","protocol":"https","host":["falcon","simplelegal","com"],"path":["api","v1","vendor-groups","vgp_3ae1804677534c7cb566e9a166235b32",""],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 22:12:50 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.17"},{"key":"Vary","value":"Authorization, Cookie, Origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"76"},{"key":"Allow","value":"GET, POST, PATCH, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=s2r4gd2rfg1k2q2cowykwlndgd1sn19o; expires=Thu, 16-Apr-2020 22:12:50 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"vgp_3ae1804677534c7cb566e9a166235b32\",\n    \"name\": \"New Vendor Group Name\"\n}"}],"_postman_id":"c5bdc382-54d9-4eff-a023-b63adee08e83"}],"id":"5dff1ad3-1718-48b5-8ee6-1ca3fcff85d2","_postman_id":"5dff1ad3-1718-48b5-8ee6-1ca3fcff85d2","description":""},{"name":"Custom Attributes","item":[{"name":"Custom Attribute Groups","item":[{"name":"List All Attribute Groups","id":"d9d1bc27-c4c4-4593-9098-5144e78a8243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/attribute-display-groups/","description":"<p>You can list all custom attribute groups that the api user has access to. Attribute groups collect attributes and group them for display within a matter.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of attribute groups. Each entry in the array is a separate attribute object. If no more attributes are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attribute-display-groups",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"c8880075-08ed-4001-b70b-7dd06efe815e","name":"List All Attribute Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/attribute-display-groups/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1164","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 16 Mar 2018 23:06:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"count\":4,\"next\":null,\"previous\":null,\"results\":[{\"id\":\"attr_dis_9f5fe6b849734aadb5efa657bd368856\",\"name\":\"Custom\",\"pinned\":false,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_9f5fe6b849734aadb5efa657bd368856/\",\"url\":\"https://falcon.simplelegal.com/manage/matter-attribute-groups/41/\"},{\"id\":\"attr_dis_23edf9d6aaa24959957a8f84f797b33a\",\"name\":\"Financial\",\"pinned\":false,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_23edf9d6aaa24959957a8f84f797b33a/\",\"url\":\"https://falcon.simplelegal.com/manage/matter-attribute-groups/196/\"},{\"id\":\"attr_dis_d7e1051eb4c0462daf0fd355ce9b127b\",\"name\":\"IT Trademark Info\",\"pinned\":false,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_d7e1051eb4c0462daf0fd355ce9b127b/\",\"url\":\"https://falcon.simplelegal.com/manage/matter-attribute-groups/204/\"},{\"id\":\"attr_dis_66429b1d04b04895bbeb4588246abb53\",\"name\":\"Locale\",\"pinned\":false,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_66429b1d04b04895bbeb4588246abb53/\",\"url\":\"https://falcon.simplelegal.com/manage/matter-attribute-groups/195/\"}]}"}],"_postman_id":"d9d1bc27-c4c4-4593-9098-5144e78a8243"},{"name":"Retrieve an Attribute Group","id":"187d556c-c734-4729-b923-4c9b055c1de3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_66429b1d04b04895bbeb4588246abb53/","description":"<p>Retrieves the attribute group for the given attribute group id.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_dis_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an attribute group object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The attribute group object contains information about the attribute group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attribute-display-groups","attr_dis_66429b1d04b04895bbeb4588246abb53",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"5bd23b0e-371a-4f4a-b312-c023637ba502","name":"Retrieve an Attribute Group","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_66429b1d04b04895bbeb4588246abb53/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"274","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 12 Mar 2018 18:07:08 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"attr_dis_66429b1d04b04895bbeb4588246abb53\",\"name\":\"Locale\",\"pinned\":false,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_66429b1d04b04895bbeb4588246abb53/\",\"url\":\"https://falcon.simplelegal.com/manage/matter-attribute-groups/195/\"}"}],"_postman_id":"187d556c-c734-4729-b923-4c9b055c1de3"},{"name":"Create an Attribute Group","id":"affbbc6a-095d-4659-af8f-4d4ba665c94b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"IT Patent Info\",\n  \"pinned\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/attribute-display-groups/","description":"<p>You can create an attribute group.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>IT Patent Info</code></td>\n</tr>\n<tr>\n<td><strong>pinned</strong></td>\n<td><code>boolean</code></td>\n<td><code>false</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>pinned</strong> - <code>pinned</code> groups will be expanded by default when displayed on a matter; otherwise they will be collapsed.</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created attribute group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attribute-display-groups",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"09aa7c10-6879-44b5-8fda-391c990eeea2","name":"Create an Attribute Group","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"IT Patent Info\",\n  \"pinned\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/attribute-display-groups/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"282","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 16 Mar 2018 23:13:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"attr_dis_4b7926fb02744ae4bf23a641baf8599e\",\"name\":\"IT Patent Info\",\"pinned\":false,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_4b7926fb02744ae4bf23a641baf8599e/\",\"url\":\"https://falcon.simplelegal.com/manage/matter-attribute-groups/205/\"}"}],"_postman_id":"affbbc6a-095d-4659-af8f-4d4ba665c94b"},{"name":"Update an Attribute Group","id":"a6632675-4631-4cdb-80cf-dadcfa42fdbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"IT Trademark Info\",\n  \"pinned\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_d7e1051eb4c0462daf0fd355ce9b127b/","description":"<p>You can update a custom attribute group using either the <code>PATCH</code> or <code>POST</code> method..</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>id</code></td>\n<td><code>attr_dis_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>Accounting Code</code></td>\n</tr>\n<tr>\n<td><strong>pinned</strong></td>\n<td><code>boolean</code></td>\n<td><code>false</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>pinned</strong> - <code>pinned</code> groups will be expanded by default when displayed on a matter; otherwise they will be collapsed.</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly updated attribute.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attribute-display-groups","attr_dis_d7e1051eb4c0462daf0fd355ce9b127b",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"2451cb7d-9069-4435-8b17-a15433017dfd","name":"Update an Attribute Group","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"IT Trademark Info\",\n\t\"pinned\": false\n}"},"url":"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_d7e1051eb4c0462daf0fd355ce9b127b/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"285","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 16 Mar 2018 22:02:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=0x57t6wd52yz6e7ielj3p9dqj7n4qx9x; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"0x57t6wd52yz6e7ielj3p9dqj7n4qx9x","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"attr_dis_d7e1051eb4c0462daf0fd355ce9b127b\",\"name\":\"IT Trademark Info\",\"pinned\":false,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attribute-display-groups/attr_dis_d7e1051eb4c0462daf0fd355ce9b127b/\",\"url\":\"https://falcon.simplelegal.com/manage/matter-attribute-groups/204/\"}"}],"_postman_id":"a6632675-4631-4cdb-80cf-dadcfa42fdbc"}],"id":"acbaeae0-9800-4494-800a-04976fb4758e","_postman_id":"acbaeae0-9800-4494-800a-04976fb4758e","description":""},{"name":"<list> Attributes","item":[{"name":"List All Options for <list> Attribute","id":"30756f88-b704-4e0a-9b35-71cac7631d99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/","description":"<p>You can list all options of a  attribute that the api user has access to. The options are returned sorted by name alphabetically.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of  options. Each entry in the array is a separate option object. If no more options are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attributes","attr_dc2da6b7f3d749ffbd71d6ddec153100","options",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"1ddf84e3-9335-4b63-bd13-c9b490ef02c4","name":"List All Options for <list> Attribute","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"755","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 19 Mar 2018 16:30:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"count\":2,\"next\":null,\"previous\":null,\"results\":[{\"id\":\"attr_opt_93bb76138ba94323977fdc8ed17cff96\",\"name\":\"1000\",\"description\":\"HQ General\",\"code\":\"1000.0001\",\"active\":true,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/attr_opt_93bb76138ba94323977fdc8ed17cff96/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1132/\"},{\"id\":\"attr_opt_f46090a34fee4de6a35ee69947227898\",\"name\":\"HQ\",\"description\":\"HQ General\",\"code\":\"1000.0001.0001.0001.00300\",\"active\":true,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/attr_opt_f46090a34fee4de6a35ee69947227898/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1132/\"}]}"}],"_postman_id":"30756f88-b704-4e0a-9b35-71cac7631d99"},{"name":"Retrieve an Option for <list> Attribute","id":"b23ad3a9-3fd2-4908-946f-81d3ada928e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/attr_opt_f46090a34fee4de6a35ee69947227898/","description":"<p>Retrieves the  item option for the given attribute option id.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_opt_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a  option object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The  option object contains information about the  option.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attributes","attr_dc2da6b7f3d749ffbd71d6ddec153100","options","attr_opt_f46090a34fee4de6a35ee69947227898",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"d921fce4-e791-4b71-8887-5e0f398d7fe8","name":"Retrieve an Option for <list> Attribute","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/attr_opt_f46090a34fee4de6a35ee69947227898/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, DELETE, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"358","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 19 Mar 2018 16:15:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"attr_opt_f46090a34fee4de6a35ee69947227898\",\"name\":\"HQ\",\"description\":\"HQ General\",\"code\":\"1000.0001.0001.0001.00300\",\"active\":true,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/attr_opt_f46090a34fee4de6a35ee69947227898/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1132/\"}"}],"_postman_id":"b23ad3a9-3fd2-4908-946f-81d3ada928e2"},{"name":"Create an Option for <list> Attribute","id":"4bf20b5b-4a58-4046-ab2a-ff120c154848","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"1000\",\n\t\"description\": \"HQ General\",\n\t\"code\": \"1000.0001\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/","description":"<p>You can create a  attribute option item.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>HQ</code></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>HQ General</code></td>\n</tr>\n<tr>\n<td><strong>code</strong></td>\n<td><code>string</code></td>\n<td><code>10000.0000.0000.11111</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created  option item.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attributes","attr_dc2da6b7f3d749ffbd71d6ddec153100","options",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"8f5c3a6c-f62b-4bb4-9628-519f5350bda9","name":"Create an Option for <list> Attribute","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"1000\",\n\t\"description\": \"HQ General\",\n\t\"code\": \"1000.0001\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"344","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 19 Mar 2018 16:26:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"attr_opt_93bb76138ba94323977fdc8ed17cff96\",\"name\":\"1000\",\"description\":\"HQ General\",\"code\":\"1000.0001\",\"active\":true,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/attr_opt_93bb76138ba94323977fdc8ed17cff96/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1132/\"}"}],"_postman_id":"4bf20b5b-4a58-4046-ab2a-ff120c154848"},{"name":"Update an Option for <list> Attribute","id":"4cd258c8-f417-46c4-bacf-c4908015cfe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"HQ\",\n\t\"description\": \"HQ General\",\n\t\"code\": \"1000.0001.0001.0001.00300\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/attr_opt_f46090a34fee4de6a35ee69947227898/","description":"<p>You can update an option for a  custom attribute using either the <code>PATCH</code> or <code>POST</code> method..</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>id</code></td>\n<td><code>attr_opt_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>HQ</code></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>HQ General</code></td>\n</tr>\n<tr>\n<td><strong>code</strong></td>\n<td><code>string</code></td>\n<td><code>1000.0001.0001.0001.00300</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the updated  object item.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attributes","attr_dc2da6b7f3d749ffbd71d6ddec153100","options","attr_opt_f46090a34fee4de6a35ee69947227898",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"597697ee-f34c-43b9-acf7-f69bcbdd514d","name":"Update an Option for <list> Attribute","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"HQ\",\n\t\"description\": \"HQ General\",\n\t\"code\": \"1000.0001.0001.0001.00300\"\n}"},"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/attr_opt_f46090a34fee4de6a35ee69947227898/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, DELETE, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"358","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 19 Mar 2018 16:27:45 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"id\":\"attr_opt_f46090a34fee4de6a35ee69947227898\",\"name\":\"HQ\",\"description\":\"HQ General\",\"code\":\"1000.0001.0001.0001.00300\",\"active\":true,\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/options/attr_opt_f46090a34fee4de6a35ee69947227898/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1132/\"}"}],"_postman_id":"4cd258c8-f417-46c4-bacf-c4908015cfe0"}],"id":"93b7c19f-0537-4470-9ea2-ae9f538bc675","_postman_id":"93b7c19f-0537-4470-9ea2-ae9f538bc675","description":""},{"name":"Attribute Values","item":[{"name":"Get All Matter Attribute Values","id":"2862e230-adfa-4aa4-a5c0-182ece55a24c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 41ae8e421cece30d38d1b1828f4878edfa538e9a\t","type":"text"}],"url":"http://falcon.simplelegal.com/api/v1/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/matters/","description":"<p>You can list all values associated with the attribute hash that the api user has access to, as a single element on all matters associated with the attribute. The matters are sorted by alphabetically by matter name.</p>\n<p>A single value, the value assigned to the particular matter by the attribute is located in the <code>associated_value</code> field on each matter. </p>\n<p>Filters are identical to the one on the matters endpoint.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?id=mat_123456</td>\n</tr>\n<tr>\n<td>client_matter_id</td>\n<td>string</td>\n<td>N/A</td>\n<td>?client_matter_id=outerapi-562</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>N/A</td>\n<td>?status=open</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>icontains</td>\n<td>?name=patent</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>icontains</td>\n<td>?description=hello</td>\n</tr>\n<tr>\n<td>open_date</td>\n<td>iso date</td>\n<td>lt, gt, lte, gte</td>\n<td>?open_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?created_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>search</td>\n<td>string</td>\n<td>N/A</td>\n<td>?search=description_or_name_field_value</td>\n</tr>\n<tr>\n<td>Available modifiers can be added onto the end of a search string joined by a double dash and</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>are generally shorthands for more advanced searches that can be done:</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>lt -&gt; less than</li>\n<li>lte -&gt; less than equal to</li>\n<li>gt -&gt; greater than</li>\n<li>gt -&gt; greater than equal to</li>\n<li>icontains -&gt; contains, case insensitive\nNote that for datetime either a time has to be specified and matched exactly, or specifying a date and using\ncombinations gt or lt to obtain it. eg. for datetime <code>2018-05-07T17:16:59.130270</code> the parameters should be \n<code>?created_date__gt=2018-05-07&amp;created_date__lt=2018-05-08</code></li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>Returns a list of matter objects if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>Each matter has a subobject <code>associated_attribute</code> where the value of the attribute is displayed.</p>\n","urlObject":{"protocol":"http","path":["api","v1","attributes","attr_4a6f44669cf54e3bb6be2e640514a0fd","matters",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"bfb9f5da-2c9e-4750-97a2-00b37b84d192","name":"Get All Matter Attributes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 41ae8e421cece30d38d1b1828f4878edfa538e9a\t","type":"text"}],"url":"http://local.simplelegal.com:8000/api/v1/attributes/attr_2f7d07ec4e0d4ec49d381fdbbdb425a0/matters/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Dec 2018 00:32:32 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.14"},{"key":"Vary","value":"Accept, Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"22906"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"Set-Cookie","value":"sessionid=r2yhkd48y4oa0j5kmci6z2kl3c20u4uu; expires=Thu, 27-Dec-2018 00:32:32 GMT; httponly; Max-Age=1209600; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"mat_75b2736058c9464eaed0600079d78218\",\n            \"name\": \"matter_short_name-1139192\",\n            \"description\": \"matter_description-1139192\",\n            \"client_matter_id\": \"client_matter_id-1139192\",\n            \"template\": {\n                \"id\": \"tmpl_85f380a20c194f15a75c6f6051b46548\",\n                \"name\": \"Template for short_name-1118\",\n                \"status\": \"published\"\n            },\n            \"status\": \"open\",\n            \"is_confidential\": false,\n            \"open_date\": \"2017-09-14\",\n            \"close_date\": null,\n            \"created_date\": \"2017-09-14T08:00:00.059713\",\n            \"modified_date\": \"2017-10-24T14:00:51.898257\",\n            \"associated_attribute\": {\n                \"name\": \"short_name-314\",\n                \"hash\": \"attr_2f7d07ec4e0d4ec49d381fdbbdb425a0\",\n                \"type\": \"text\",\n                \"valid_values\": \"Any Text Value\",\n                \"attribute_group\": \"name-416\",\n                \"attribute_group_sort\": \"7\",\n                \"value\": null,\n                \"extra_values\": [],\n                \"modified_date\": \"2017-03-20T15:08:08.660745\"\n            },\n            \"url\": \"http://falcon.simplelegal.com/manage/matters/v2/1139192/\",\n            \"api_url\": \"http://falcon.simplelegal.com/api/v1/matters/mat_75b2736058c9464eaed0600079d78218/\"\n        }\n    ]\n}"}],"_postman_id":"2862e230-adfa-4aa4-a5c0-182ece55a24c"}],"id":"29b82490-68d5-422f-9f3d-8c61e77f1c89","_postman_id":"29b82490-68d5-422f-9f3d-8c61e77f1c89","description":""},{"name":"List All Attributes","id":"f2fd7e90-92d3-4b75-aa80-d4babdca3900","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/attributes/","description":"<p>You can list all custom attributes that the api user has access to. The attributes are returned sorted by attribute name alphabetically.</p>\n<p>Attributes can only be filtered based on the 'name' field.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<p>There are no required arguments.</p>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains an array of attributes. Each entry in the array is a separate attribute object. If no more attributes are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attributes",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"e53329c7-7052-4a82-9506-29a02554b6df","name":"List All Attributes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/attributes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2158","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 19 Mar 2018 16:31:11 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"count\":5,\"next\":null,\"previous\":null,\"results\":[{\"id\":\"attr_dc2da6b7f3d749ffbd71d6ddec153100\",\"name\":\"Accounting Code\",\"description\":\"Code used for accounting\",\"type\":\"list\",\"sort_order\":0,\"active\":true,\"is_allocatable\":false,\"display_group\":{\"id\":\"attr_dis_23edf9d6aaa24959957a8f84f797b33a\",\"name\":\"Financial\"},\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1132/\"},{\"id\":\"attr_8c2d07fb6ebe4594a0f9bb0dd9ea8584\",\"name\":\"Accounting Code\",\"description\":\"Code used for accounting\",\"type\":\"list\",\"sort_order\":0,\"active\":true,\"is_allocatable\":false,\"display_group\":{\"id\":\"attr_dis_23edf9d6aaa24959957a8f84f797b33a\",\"name\":\"Financial\"},\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_8c2d07fb6ebe4594a0f9bb0dd9ea8584/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1134/\"},{\"id\":\"attr_4a6f44669cf54e3bb6be2e640514a0fd\",\"name\":\"Country\",\"description\":\"Country\",\"type\":\"list\",\"sort_order\":0,\"active\":true,\"is_allocatable\":false,\"display_group\":{\"id\":\"attr_dis_66429b1d04b04895bbeb4588246abb53\",\"name\":\"Locale\"},\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1109/\"},{\"id\":\"attr_d0567543486247709acf494df01a4a3a\",\"name\":\"Exposure\",\"description\":\"Exposure Amount for this matter\",\"type\":\"text\",\"sort_order\":0,\"active\":true,\"is_allocatable\":false,\"display_group\":{\"id\":\"attr_dis_23edf9d6aaa24959957a8f84f797b33a\",\"name\":\"Financial\"},\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_d0567543486247709acf494df01a4a3a/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1110/\"},{\"id\":\"attr_44df2dbfb6674b8480d83b860497e686\",\"name\":\"GL\",\"description\":\"GL\",\"type\":\"list\",\"sort_order\":0,\"active\":true,\"is_allocatable\":true,\"display_group\":{\"id\":\"attr_dis_9f5fe6b849734aadb5efa657bd368856\",\"name\":\"Custom\"},\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_44df2dbfb6674b8480d83b860497e686/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/847/\"}]}"}],"_postman_id":"f2fd7e90-92d3-4b75-aa80-d4babdca3900"},{"name":"Retrieve an Attribute","id":"27781a17-bddb-41de-ab6d-6e399946f273","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/","description":"<p>Retrieves the attribute for the given attribute hash.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an attribute object if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n<p>The attribute object contains information about the attribute.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attributes","attr_4a6f44669cf54e3bb6be2e640514a0fd",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"27781a17-bddb-41de-ab6d-6e399946f273"},{"name":"Create an Attribute","id":"24583706-9b36-4497-9da2-67b7a8ea85e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Accounting Code\",\n  \"description\": \"Code used for accounting\",\n  \"type\": \"list\",\n  \"sort_order\": 0,\n  \"active\": true,\n  \"is_allocatable\": false,\n  \"display_group\": {\n    \"id\": \"attr_dis_23edf9d6aaa24959957a8f84f797b33a\"\n  }\n}"},"url":"https://falcon.simplelegal.com/api/v1/attributes/","description":"<p>You can create an attribute.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>Accounting Code</code></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>Codes used for accounting</code></td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td><code>string</code></td>\n<td><code>list</code></td>\n</tr>\n<tr>\n<td>**sort_order **</td>\n<td><code>integer</code></td>\n<td><code>0</code></td>\n</tr>\n<tr>\n<td><strong>active</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><strong>is_allocatable</strong></td>\n<td><code>boolean</code></td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><strong>display_group id</strong></td>\n<td><code>id</code></td>\n<td><code>attr_dis_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>type</strong> - <code>type</code> must be one of the following choices: <code>list</code>, <code>text</code>, <code>date</code>, <code>currency</code>, <code>boolean</code> and <code>textarea</code> </li>\n<li><strong>active</strong> - <code>active</code> behaves like a soft delete to make the attribute usable or not</li>\n<li><strong>is_allocatable</strong> - <code>is_allocatable</code> defines the attribute to allocatable, so that</li>\n<li><strong>display_group</strong> - <code>display_group</code> object is required and can be obtained via the /api/v1/attribute-display-groups/ endpoint.</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created attribute.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attributes",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"8905bc93-14c8-4a26-8f86-1122d5033cf8","name":"Create an Attribute","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Accounting Code\",\n  \"description\": \"Code used for accounting\",\n  \"type\": \"list\",\n  \"sort_order\": 0,\n  \"active\": true,\n  \"is_allocatable\": false,\n  \"display_group\": {\n    \"id\": \"attr_dis_23edf9d6aaa24959957a8f84f797b33a\"\n  }\n}"},"url":"https://falcon.simplelegal.com/api/v1/attributes/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"434","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 16 Mar 2018 21:47:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=0x57t6wd52yz6e7ielj3p9dqj7n4qx9x; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"0x57t6wd52yz6e7ielj3p9dqj7n4qx9x","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"attr_8c2d07fb6ebe4594a0f9bb0dd9ea8584\",\"name\":\"Accounting Code\",\"description\":\"Code used for accounting\",\"type\":\"list\",\"sort_order\":0,\"active\":true,\"is_allocatable\":false,\"display_group\":{\"id\":\"attr_dis_23edf9d6aaa24959957a8f84f797b33a\",\"name\":\"Financial\"},\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_8c2d07fb6ebe4594a0f9bb0dd9ea8584/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1134/\"}"}],"_postman_id":"24583706-9b36-4497-9da2-67b7a8ea85e9"},{"name":"Update an Attribute","id":"274189d2-85db-41d4-8ed1-7be2df027b66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Accounting Code\",\n  \"description\": \"Code used for accounting\",\n  \"type\": \"list\",\n  \"sort_order\": 0,\n  \"active\": true,\n  \"is_allocatable\": false,\n  \"display_group\": {\n    \"id\": \"attr_dis_23edf9d6aaa24959957a8f84f797b33a\"\n  }\n}"},"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/","description":"<p>You can update a custom attribute using either the <code>PATCH</code> or <code>POST</code> method..</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>id</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><code>string</code></td>\n<td><code>Accounting Code</code></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><code>string</code></td>\n<td><code>Codes used for accounting</code></td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td><code>string</code></td>\n<td><code>list</code></td>\n</tr>\n<tr>\n<td>**sort_order **</td>\n<td><code>integer</code></td>\n<td><code>0</code></td>\n</tr>\n<tr>\n<td><strong>active</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><strong>is_allocatable</strong></td>\n<td><code>boolean</code></td>\n<td><code>false</code></td>\n</tr>\n<tr>\n<td><strong>display_group id</strong></td>\n<td><code>id</code></td>\n<td><code>attr_dis_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><strong>type</strong> - <code>type</code> must be one of the following choices: <code>list</code>, <code>text</code>, <code>date</code>, <code>currency</code>, <code>boolean</code> and <code>textarea</code> </li>\n<li><strong>active</strong> - <code>active</code> behaves like a soft delete to make the attribute usable or not</li>\n<li><strong>is_allocatable</strong> - <code>is_allocatable</code> defines the attribute to allocatable, so that</li>\n<li><strong>display_group</strong> - <code>display_group</code> object is required and can be obtained via the /api/v1/attribute-display-groups/ endpoint.</li>\n</ul>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a <code>results</code> property that contains the newly created attribute.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attributes","attr_dc2da6b7f3d749ffbd71d6ddec153100",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"c123479a-7654-4374-bd87-52525a91911d","name":"Update an Attribute","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Account Code\",\n\t\"description\": \"Code used for accounting\",\n\t\"type\": \"list\",\n\t\"sort_order\": 0,\n\t\"active\": true,\n\t\"is_allocatable\": false,\n\t\"display_group\": {\n\t\t\"id\": \"attr_dis_23edf9d6aaa24959957a8f84f797b33a\"\n\t}\n}"},"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"431","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 16 Mar 2018 21:45:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=0x57t6wd52yz6e7ielj3p9dqj7n4qx9x; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"0x57t6wd52yz6e7ielj3p9dqj7n4qx9x","key":"sessionid"}],"responseTime":null,"body":"{\"id\":\"attr_dc2da6b7f3d749ffbd71d6ddec153100\",\"name\":\"Account Code\",\"description\":\"Code used for accounting\",\"type\":\"list\",\"sort_order\":0,\"active\":true,\"is_allocatable\":false,\"display_group\":{\"id\":\"attr_dis_23edf9d6aaa24959957a8f84f797b33a\",\"name\":\"Financial\"},\"api_url\":\"https://falcon.simplelegal.com/api/v1/attributes/attr_dc2da6b7f3d749ffbd71d6ddec153100/\",\"url\":\"https://falcon.simplelegal.com/manage/matter_attributes/1132/\"}"}],"_postman_id":"274189d2-85db-41d4-8ed1-7be2df027b66"},{"name":"Retrieve an Attribute's Scope","id":"b29d6608-f359-41e1-866b-d25350aaf941","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"}],"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/scope/","description":"<p>Retrieves the scope for the given attribute hash. Scope defines which objects this attribue can be used on.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns an array of scope booleans if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attributes","attr_4a6f44669cf54e3bb6be2e640514a0fd","scope",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b29d6608-f359-41e1-866b-d25350aaf941"},{"name":"Update an Attribute's Scope","id":"e6a653cb-214b-4a2e-86a8-61059ea3aede","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"matters\": true,\n    \"entity\": true,\n    \"po\": false,\n    \"invoice\": false,\n    \"vendor\": true\n}"},"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/scope/","description":"<p>Updates the scope for the given attribute hash. Scope defines which objects this attribue can be used on.</p>\n<h3 id=\"arguments\">Arguments</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>id</strong></td>\n<td><code>hash</code></td>\n<td><code>attr_1234567890</code></td>\n</tr>\n<tr>\n<td><strong>matters</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><strong>entity</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><strong>po</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><strong>invoice</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n<tr>\n<td><strong>vendor</strong></td>\n<td><code>boolean</code></td>\n<td><code>true</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>Attributes must be scoped to be usable on an object. Additionally, Allocatable  attributes used for financial allocations, must be scoped to <code>matter</code> to be usable.</p>\n<h2 id=\"returns\">Returns</h2>\n<p>Returns an array of scope booleans if a valid <code>id</code> was provided. Returns an error otherwise.</p>\n","urlObject":{"protocol":"https","path":["api","v1","attributes","attr_4a6f44669cf54e3bb6be2e640514a0fd","scope",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"2422a140-99bd-46c2-865a-059d281d90ab","name":"Update an Attribute's Scope","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Token 8c30f1c2608d62d27ccbe763450b7401de3628f5"},{"key":"Content-Type","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"matters\": true,\n    \"entity\": true,\n    \"po\": false,\n    \"invoice\": false,\n    \"vendor\": true\n}"},"url":"https://falcon.simplelegal.com/api/v1/attributes/attr_4a6f44669cf54e3bb6be2e640514a0fd/scope/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"71","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 19 Mar 2018 16:40:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"sessionid=1cxvhagdbxtx90xwrnvpc1y57c2d8vsj; httponly; Path=/; secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"1cxvhagdbxtx90xwrnvpc1y57c2d8vsj","key":"sessionid"},{"expires":"Invalid Date","httpOnly":true,"domain":"falcon.simplelegal.com","path":"/","secure":true,"value":"A2QbGBNZciVKJpAT4AukDoK0Jqi4PM3MW2Cfg4fJJqYfJxJsWooB4m0qG99zsGBc","key":"csrftoken"}],"responseTime":null,"body":"{\"matters\":true,\"entity\":true,\"po\":false,\"invoice\":false,\"vendor\":true}"}],"_postman_id":"e6a653cb-214b-4a2e-86a8-61059ea3aede"}],"id":"c865e9be-9ad0-44c2-94e2-d41b6007ea02","_postman_id":"c865e9be-9ad0-44c2-94e2-d41b6007ea02","description":""},{"name":"Logs","item":[{"name":"Retrieve all logs","id":"aea7aa2b-cbbd-4327-ba07-f045abb52eb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/logbook/","description":"<p>You can list all logs that are in the account. The logs are returned sorted by created_date, with the most recently created log first.</p>\n<h2 id=\"arguments\">Arguments</h2>\n<p>There are no required arguments.</p>\n<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Optional</th>\n<th>Type</th>\n<th>Available Modifiers</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user_first_name</td>\n<td>string</td>\n<td>N/A</td>\n<td>user_first_name=Joe</td>\n</tr>\n<tr>\n<td>user_last_name</td>\n<td>string</td>\n<td>N/A</td>\n<td>user_last_name=Schmoe</td>\n</tr>\n<tr>\n<td>user_email</td>\n<td>string</td>\n<td>N/A</td>\n<td>?user_email=<a href=\"mailto:user@example.com\">user@example.com</a></td>\n</tr>\n<tr>\n<td>user_orgrole</td>\n<td>string</td>\n<td>N/A</td>\n<td>user_orgrole=poweruser</td>\n</tr>\n<tr>\n<td>category</td>\n<td>string</td>\n<td>N/A</td>\n<td>?category=Audits</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>N/A</td>\n<td>?description=audits</td>\n</tr>\n<tr>\n<td>created_date</td>\n<td>iso datetime</td>\n<td>lt, gt, lte, gte</td>\n<td>?created_date__gt=2018-03-01</td>\n</tr>\n<tr>\n<td>target_model</td>\n<td>string</td>\n<td>N/A</td>\n<td>?target_model=Invoice</td>\n</tr>\n<tr>\n<td>ip</td>\n<td>string</td>\n<td>N/A</td>\n<td>?ip=127.0.0.1</td>\n</tr>\n<tr>\n<td>include_views</td>\n<td>boolean</td>\n<td>N/A</td>\n<td>?include_views=true</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li>user_orgrole - Supported choices are: admin, filtered, poweruser, finance, emailonly, emailonly_filtered</li>\n<li>category - Supported choices are: added, edited, deleted, uploaded, downloaded, viewed, sent, escalated, exporte, updated, renamed, adjusted, approved, unapproved, rejected, unrejected, 'requested changes on', 'resolved changes on', paid, assigned, received, merged, split, activated, deactivated</li>\n</ul>\n<p>Available modifiers can be added onto the end of a search string joined by a double dash and are generally shorthands for more advanced searches that can be done:</p>\n<p>lt -&gt; less than\nlte -&gt; less than equal to\ngt -&gt; greater than\ngt -&gt; greater than equal to\nicontains -&gt; contains, case insensitive\nrange -&gt; two dates, everything between the dates matches (inclusive for the first, exclusive for second)</p>\n<h2 id=\"returns\">Returns</h2>\n<p>A dictionary with a results property that contains an array of log entries. Each entry in the array is a separate LogBook object. If no more logs are available, the resulting array will be empty.</p>\n","urlObject":{"protocol":"https","path":["api","v1","logbook",""],"host":["falcon","simplelegal","com"],"query":[],"variable":[]}},"response":[{"id":"30733f7d-6b4d-4d9f-ac90-2eeb16e055e0","name":"Retrieve all logs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token c7e90e501f5a04c2772dd251fec7f46eac61f537","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://falcon.simplelegal.com/api/v1/logbook/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 14 Aug 2020 21:45:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=300; includeSubDomains"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"Vary","value":"Authorization, Origin"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0490882dfb0000eb2545a69200000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5c2ddc8ff8a8eb25-LAX"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 270,\n    \"next\": \"https://falcon.simplelegal.com/api/v1/logbook/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"user_first_name\": \"Barbara\",\n            \"user_last_name\": \"Smith\",\n            \"user_email\": \"bsmith@example.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"ADD\",\n            \"description\": \"Company\",\n            \"created_date\": \"2017-04-29T14:01:54.480604\",\n            \"target_model\": null,\n            \"ip\": \"24.5.124.93\"\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 2198459 from Baker Potts\",\n            \"created_date\": \"2017-04-29T14:02:23.684027\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 1428173 from Baker Potts\",\n            \"created_date\": \"2017-04-29T14:02:23.980256\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 1121975 from Baker Potts\",\n            \"created_date\": \"2017-04-29T14:02:24.037747\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"ADD\",\n            \"description\": \"new matter General Corporate Matters\",\n            \"created_date\": \"2017-04-29T14:03:09.808334\",\n            \"target_model\": \"Matters\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 33645 from Boston Legal\",\n            \"created_date\": \"2017-04-29T14:03:12.066604\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"ADD\",\n            \"description\": \"new matter Series Preferred Stock Financing\",\n            \"created_date\": \"2017-04-29T14:03:12.479594\",\n            \"target_model\": \"Matters\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 36939 from Boston Legal\",\n            \"created_date\": \"2017-04-29T14:03:12.562955\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"ADD\",\n            \"description\": \"new matter Equity Raise\",\n            \"created_date\": \"2017-04-29T14:03:12.644116\",\n            \"target_model\": \"Matters\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 198459150729 from Fisher LLP\",\n            \"created_date\": \"2017-04-29T14:03:14.003103\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 428173150629 from Fisher LLP\",\n            \"created_date\": \"2017-04-29T14:03:14.125990\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 121975150529 from Fisher LLP\",\n            \"created_date\": \"2017-04-29T14:03:14.148274\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 33645150630 from Rosato and Associates\",\n            \"created_date\": \"2017-04-29T14:03:15.934804\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 36939150722 from Rosato and Associates\",\n            \"created_date\": \"2017-04-29T14:03:16.357145\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 198459150629 from Rosato and Associates\",\n            \"created_date\": \"2017-04-29T14:03:16.382059\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 121975150429 from Rosato and Associates\",\n            \"created_date\": \"2017-04-29T14:03:16.446527\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 428173150529 from Rosato and Associates\",\n            \"created_date\": \"2017-04-29T14:03:16.482908\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"ADD\",\n            \"description\": \"new matter General Immigration Advice\",\n            \"created_date\": \"2017-04-29T14:03:16.546969\",\n            \"target_model\": \"Matters\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"ADD\",\n            \"description\": \"new matter General Immigration Advice\",\n            \"created_date\": \"2017-04-29T14:03:16.628392\",\n            \"target_model\": \"Matters\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"RECEIVED\",\n            \"description\": \"invoice 33645150530 from Rosato and Associates\",\n            \"created_date\": \"2017-04-29T14:03:16.762282\",\n            \"target_model\": \"Invoice\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"ADD\",\n            \"description\": \"new matter Project Echo Litigation\",\n            \"created_date\": \"2017-04-29T14:03:17.296571\",\n            \"target_model\": \"Matters\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"ADD\",\n            \"description\": \"new matter Lease Review - New HQ\",\n            \"created_date\": \"2017-04-29T14:03:17.449743\",\n            \"target_model\": \"Matters\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"-\",\n            \"description\": \"Patrik Outericky (Baker Potts) added Trial Begins to matter SL-19601-US\",\n            \"created_date\": \"2017-05-30T12:15:20.132579\",\n            \"target_model\": \"Matters\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"-\",\n            \"description\": \"Patrik Outericky (Baker Potts) added Counsel Meeting to matter SL-19601-US\",\n            \"created_date\": \"2017-05-30T13:00:06.314597\",\n            \"target_model\": \"Matters\",\n            \"ip\": null\n        },\n        {\n            \"user_first_name\": \"SimpleLegal\",\n            \"user_last_name\": \"Automated\",\n            \"user_email\": \"automated@simplelegal.com\",\n            \"user_orgrole\": \"admin\",\n            \"category\": \"-\",\n            \"description\": \"Patrik Outericky (Baker Potts) added Trial Begins to matter SL-19601-US\",\n            \"created_date\": \"2017-06-12T11:55:45.890624\",\n            \"target_model\": \"Matters\",\n            \"ip\": null\n        }\n    ]\n}"}],"_postman_id":"aea7aa2b-cbbd-4327-ba07-f045abb52eb8"}],"id":"b273eb27-bd1e-4797-ab90-0850d7a3e74f","event":[{"listen":"prerequest","script":{"id":"3d36ba47-66af-42d3-baeb-ac18cc6ccf40","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7c2acef9-d6b7-4140-9598-3e9d755d188e","type":"text/javascript","exec":[""]}}],"_postman_id":"b273eb27-bd1e-4797-ab90-0850d7a3e74f","description":""},{"name":"Contacts","item":[],"id":"8ef2c89f-f40e-4ed7-9b18-17410f77c0c0","_postman_id":"8ef2c89f-f40e-4ed7-9b18-17410f77c0c0","description":""}],"event":[{"listen":"prerequest","script":{"id":"501b6324-db47-480f-8ee3-ffc4477133f5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b18135c5-3bf2-459f-a2ad-619da56ff5fd","type":"text/javascript","exec":[""]}}]}