{"info":{"_postman_id":"1d9ae0ec-ebd6-4a9c-b3c3-3139a493d48e","name":"Routable API Docs","description":"#### This version of the Routable API has been deprecated and should no longer be used in new implementations. Please visit the new Routable Developer Portal at [https://developers.routable.com](https://developers.routable.com/) for documentation, tools and changelogs detailing our new Routable Client API.\n\n---\n\nWelcome to the Routable API documentation.\n\nThis API will give you the ability to connect your software to the Routable infrastructure to:\n\n- Manage vendor and customer records\n- Automate your payments and invoices\n- Retrieve information stored by the Routable system\n    \n\n---\n\n# Guides and Tutorials\n\nFor longer form guides and tutorials, please see our [Developer Portal](https://developers.routable.com)\n\n# A few important things to note\n\n- Routable uses the [JSON API standard](https://jsonapi.org/)\n- All requests must be made over HTTPS, non-secure HTTP calls will be rejected\n- API requests without authentication will be rejected\n- All of our endpoints must have a trailing slash (i.e. must end with a '/')\n- There may be undocumented fields returned from our APIs. We recommend **against** using those fields as they can change at any time. Please feel free to reach out to us via email in case the missing documentation is in error.\n- If you have questions, reach out to us at developers@routable.com\n- Please see our [Changelog](https://developers.routable.com/changelog) for updates\n    \n\n---\n\n# Authentication\n\nInclude your `auth_token` with each request to authenticate with the API server.\n\nKeep your token secure and don’t commit it to a public git repository or have it viewable in client-side code.\n\nPlease contact us to get an `auth_token`.\n\nAuthentication is provided using bearer auth. Use your `auth_token` within a request header using this format:\n\n```\n--header 'Authorization: Bearer {{auth_token}}'\n\n```\n\n---\n\n# Idempotent Requests\n\nPrevent duplicate POST requests by including a key that represents the uniqueness of a request, so that no request with the same unique value is attempted more than once.\n\nIf a request fails due to a network error, you can safely retry the same request with the same key and guarantee that your request had exactly one effect. When a request is sent with an idempotency key for an already created resource, the response object for the existing resource will be returned.\n\nTo perform an idempotent request, add an additional `Idempotency-Key` header to the request. All requests with the same key will be considered attempts for the same request. It is therefore important that you use unique keys. We suggest using random values, such as V4 UUIDs. These keys are stored for a period of 24 hours.\n\nCurrently this is enabled for [Create an item](#73411eae-1024-457f-843d-1c3fb5f28e15).\n\n---\n\n# Errors\n\nStandard HTTP response codes are returned with each response to allow developers to handle any errors appropriately.\n\nExample response code ranges:\n\n2xx : Successful request\n\n4xx: Recoverable error (relevant information will be provided in the response body)\n\n5xx: Non-recoverable error on Routable's server\n\n---\n\n# Integration with accounting software\n\nIf you have connected your company to an accounting software integration, some calls may require additional info.\n\nIf you are using the Xero integration, see our [Xero Integration](#ae0d6d74-037c-4a69-80f0-c103763ca5a9) section.\n\nIf you are using the QBO integration, see our [QBO Integration](#22c9e1a3-88bc-45bd-b034-ffa8659d1d08) section.\n\nIf you are using the NetSuite integration, see our [NetSuite Integration](#1c7adafc-33ec-4c14-858e-6b5139c34b28) section.\n\n#### Note: If your accounting software is disconnected, creating items and partnerships will be blocked until the integration is reconnected.","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"},"item":[{"name":"Memberships","item":[{"name":"List all memberships","event":[{"listen":"test","script":{"id":"81b0f7e9-25c6-4f98-9538-e1aee06e73a3","exec":["var jsonData = pm.response.json();","","pm.environment.set(\"membership_id\", jsonData.data[0].id);"],"type":"text/javascript"}}],"id":"94dfdfa1-bbbd-49ea-9f01-91a37a708513","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/memberships/","description":"Returns a list of all the memberships in your company."},"response":[{"id":"d8cac01f-3178-4e03-97f5-a8f2e4ba0604","name":"List all memberships","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/memberships/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 12:43:45 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"437"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"86903f38-5dfd-4323-a3f8-da59cb1a2dda"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/memberships/\",\n        \"last\": \"https://api.sandbox.routable.com/memberships/?page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"Membership\",\n            \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"michelle@fedex.com\",\n                \"first_name\": \"Michelle\",\n                \"is_approver\": true,\n                \"is_disabled\": false,\n                \"last_name\": \"Jones\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 1,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"94dfdfa1-bbbd-49ea-9f01-91a37a708513"}],"id":"5083796b-8a02-4d38-9cf6-c65622831aca","description":"The `Membership` object is a user connected to your company. You will need the `id` to assign to attributes in other calls.\n\n*For example: the requester of an `Item` or who is allowed to approve an `Item`.*\n\n&nbsp;\n\n## The Membership object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`Membership`|\n\n&nbsp;\n\n### Attributes\n\n|Field|Description|List|\n|---|---|---|\n|avatar|The URL of the user's avatar|yes|\n|email|The email address of the user|yes|\n|first_name|The first name of the user|yes|\n|is_approver|This membership can approve items|yes|\n|is_disabled|This membership is disabled|yes|\n|last_name|The last name of the user|yes|","event":[{"listen":"prerequest","script":{"id":"867cad44-6dc9-4abc-9536-987610c70ba2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b809dfeb-0ec8-4073-b965-623a1f6013c3","type":"text/javascript","exec":[""]}}],"_postman_id":"5083796b-8a02-4d38-9cf6-c65622831aca"},{"name":"Funding accounts","item":[{"name":"List all funding accounts","event":[{"listen":"test","script":{"id":"81b0f7e9-25c6-4f98-9538-e1aee06e73a3","exec":["var jsonData = pm.response.json();","","var funding_account_id;","","var jsonData = pm.response.json();","jsonData.data.forEach((fundingAccount) => {","    if (fundingAccount.relationships.bank.data !== null) {","        funding_account_id = fundingAccount.id","    }","})","","if (funding_account_id) {","    pm.environment.set(\"funding_account_id\", funding_account_id);","} else {","    pm.environment.unset(\"funding_account_id\");","}"],"type":"text/javascript"}}],"id":"1614befe-d5c2-447d-bed9-72ddbdc2c18f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/funding_accounts/","description":"Returns a list of all the funding accounts for your company."},"response":[{"id":"1f412284-fbb2-41c7-8ad2-e107f79f850e","name":"List all funding accounts","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/funding_accounts/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 12:44:42 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"2912"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"52276681-fdda-450b-b09d-f26bd65fc66c"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/funding_accounts/\",\n        \"last\": \"https://api.sandbox.routable.com/funding_accounts/?page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"a4bd6b2a-6e54-494b-b13a-f5adb1495311\",\n            \"attributes\": {\n                \"created\": \"2020-06-16T12:41:30.765590Z\",\n                \"direction\": \"receivables_and_payables\",\n                \"is_deleted\": false,\n                \"is_disabled\": false,\n                \"is_external\": false,\n                \"is_valid\": true,\n                \"ledger_ref\": null,\n                \"ledger_ref_payable\": null,\n                \"ledger_ref_receivable\": null,\n                \"name\": \"Routable balance\",\n                \"usable\": \"yes\"\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"balance\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBalance\",\n                        \"id\": \"6c9410a9-a103-4453-adba-e66859b903cd\"\n                    }\n                },\n                \"bank\": {\n                    \"data\": null\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                },\n                \"creator\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\",\n            \"attributes\": {\n                \"created\": \"2020-06-16T12:41:26.991677Z\",\n                \"direction\": \"receivables_and_payables\",\n                \"is_deleted\": false,\n                \"is_disabled\": false,\n                \"is_external\": false,\n                \"is_valid\": true,\n                \"ledger_ref\": null,\n                \"ledger_ref_payable\": null,\n                \"ledger_ref_receivable\": null,\n                \"name\": \"Jpmorgan Chase ***1185\",\n                \"usable\": \"yes\"\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"balance\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                },\n                \"creator\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"FundingInfoBalance\",\n            \"id\": \"6c9410a9-a103-4453-adba-e66859b903cd\",\n            \"attributes\": {\n                \"are_transfers_pending\": false,\n                \"balance\": \"0.00\",\n                \"balance_pending\": \"0.00\",\n                \"can_transact\": true\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\",\n            \"attributes\": {\n                \"account_number\": \"56854521185\",\n                \"account_type\": \"checking\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"021000021\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 2,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"1614befe-d5c2-447d-bed9-72ddbdc2c18f"},{"name":"Get a funding account","event":[{"listen":"test","script":{"id":"81b0f7e9-25c6-4f98-9538-e1aee06e73a3","exec":[""],"type":"text/javascript"}}],"id":"12a2c054-03f5-460b-86a9-6c2f3118fb5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/funding_accounts/{{funding_account_id}}/","description":"Get a specific funding account by id."},"response":[{"id":"876a68d5-53c1-4e51-b03a-a97da2231a48","name":"Get a funding account","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/funding_accounts/a7ab428c-939b-4328-b05c-9d8e27ac31c5/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 12:45:08 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1500"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"a485ba10-0ce7-4d54-b2fd-d8cadd9ba2a4"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"FundingAccount\",\n        \"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\",\n        \"attributes\": {\n            \"created\": \"2020-06-16T12:41:26.991677Z\",\n            \"direction\": \"receivables_and_payables\",\n            \"is_deleted\": false,\n            \"is_disabled\": false,\n            \"is_external\": false,\n            \"is_valid\": true,\n            \"ledger_ref\": null,\n            \"ledger_ref_payable\": null,\n            \"ledger_ref_receivable\": null,\n            \"name\": \"Jpmorgan Chase ***1185\",\n            \"usable\": \"yes\"\n        },\n        \"relationships\": {\n            \"address\": {\n                \"data\": null\n            },\n            \"balance\": {\n                \"data\": null\n            },\n            \"bank\": {\n                \"data\": {\n                    \"type\": \"FundingInfoBank\",\n                    \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\"\n                }\n            },\n            \"company\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                }\n            },\n            \"creator\": {\n                \"data\": {\n                    \"type\": \"Membership\",\n                    \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\",\n            \"attributes\": {\n                \"account_number\": \"56854521185\",\n                \"account_type\": \"checking\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"021000021\"\n            }\n        }\n    ]\n}"}],"_postman_id":"12a2c054-03f5-460b-86a9-6c2f3118fb5f"}],"id":"798ff1ca-df77-433b-98d4-5f1d08160fec","description":"The `FundingAccount` object is a payment account connected to your company. You will need the `id` from one to assign to attributes in other calls.\r\n\r\n*For Example: the account you want to pay/receive funds with on an item.*\r\n\r\n&nbsp;\r\n\r\nThe `FundingInfoAddress` object is a child of a `FundingAccount` and gives specific information about a mailing address.\r\n\r\n&nbsp;\r\n\r\nThe `FundingInfoBalance` object is a child of a `FundingAccount` and gives specific information about your balance.\r\n\r\n&nbsp;\r\n\r\nThe `FundingInfoBank` object is a child of a `FundingAccount` and gives specific information about a bank account.\r\n\r\n&nbsp;\r\n\r\n## The FundingAccount object\r\n\r\n|Field|Description|\r\n|---|---|\r\n|id|Unique identifier for the object|\r\n|type|`FundingAccount`|\r\n\r\n&nbsp;\r\n\r\n### Attributes\r\n\r\n|Field|Description|List|\r\n|---|---|---|\r\n|created|The date the `FundingAccount` was created|yes|\r\n|direction|The direction this `FundingAccount`. Values: `payables`, `receivables`, or `receivables_and_payables`|yes|\r\n|is_disabled|Is this `FundingAccount` disabled|yes|\r\n|is_external|Is this `FundingAccount` created by a partner|yes|\r\n|is_valid|Is this `FundingAccount` valid|yes|\r\n|ledger_ref|The unique id from the ledger for this `FundingAccount`|yes|\r\n|ledger_ref_payable|The unique id from the ledger for this `FundingAccount` payable clearing account|yes|\r\n|ledger_ref_receivable|The unique id from the ledger for this `FundingAccount` receivable clearing account|yes|\r\n|name|Name for this `FundingAccount`|yes|\r\n|usable|Can this `FundingAccount` be used|yes|\r\n\r\n&nbsp;\r\n\r\n### Relationships\r\n\r\n&nbsp;\r\n\r\n|Value|Object|Array|List|\r\n|---|---|---|---|\r\n|address|`FundingInfoAddress`|no|yes|\r\n|balance|`FundingInfoBalance`|no|yes|\r\n|bank|`FundingInfoBank`|no|yes|\r\n|company|`Company`|no|yes|\r\n|creator|`Company`|no|yes|\r\n|funding_sources|`FundingSource`|yes|yes|\r\n\r\n&nbsp;\r\n\r\n## The FundingInfoAddress object\r\n\r\n|Field|Description|\r\n|---|---|\r\n|id|Unique identifier for the object|\r\n|type|`FundingInfoAddress`|\r\n\r\n&nbsp;\r\n\r\n### Attributes\r\n\r\n|Field|Description|List|\r\n|---|---|---|\r\n|city|City for mailing address|yes|\r\n|country|Two letter country abbreviation for mailing address|yes|\r\n|postalcode|Postal code for mailing address|yes|\r\n|print_company|The company name of the recipient for mailing address|yes|\r\n|print_name|The personal name of the recipient for mailing address|yes|\r\n|state|Two letter state abbreviation for mailing address|yes|\r\n|street_address|First line of the street address for mailing address|yes|\r\n|street_address_unit|Unit of the street address for mailing address|yes|\r\n\r\n&nbsp;\r\n\r\n## The FundingInfoBalance object\r\n\r\n|Field|Description|\r\n|---|---|\r\n|id|Unique identifier for the object|\r\n|type|`FundingInfoBalance`|\r\n\r\n&nbsp;\r\n\r\n### Attributes\r\n\r\n|Field|Description|List|\r\n|---|---|---|\r\n|are_transfers_pending|Are there current transfers into the balance pending|yes|\r\n|balance|The current available amount in the balance|yes|\r\n|balance_pending|The current pending amount in the balance|yes|\r\n|can_transact|If you are able to create transactions|yes|\r\n\r\n&nbsp;\r\n\r\n## The FundingInfoBank object\r\n\r\n|Field|Description|\r\n|---|---|\r\n|id|Unique identifier for the object|\r\n|type|`FundingInfoBank`|\r\n\r\n&nbsp;\r\n\r\n### Attributes\r\n\r\n|Field|Description|List|\r\n|---|---|---|\r\n|account_number|The account number of the `FundingAccount`|yes|\r\n|account_type|The account type of the `FundingAccount`. Values: `checking` or `savings`|yes|\r\n|institution_name|The institution name of the `FundingAccount`|yes|\r\n|routing_number|The routing number of the `FundingAccount`|yes|","event":[{"listen":"prerequest","script":{"id":"d635b71f-a5e5-4d7f-9103-bb47a8fd4869","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c082b4f4-30b8-450b-800d-522f65dd0ba2","type":"text/javascript","exec":[""]}}],"_postman_id":"798ff1ca-df77-433b-98d4-5f1d08160fec"},{"name":"Partnerships","item":[{"name":"Members","item":[{"name":"Create a partnership member","id":"4c662f4d-f079-46e8-bf55-6df790d2561b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"default_general\": \"{{default_general}}\",\n            \"default_item\": \"{{default_item}}\",\n            \"email\": \"{{contact_email}}\",\n            \"first_name\": \"{{contact_first_name}}\",\n            \"last_name\": \"{{contact_last_name}}\"\n        },\n        \"relationships\": {\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"{{membership_id}}\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"PartnershipMember\"\n    }\n}"},"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/members/","description":"Create a new partnership member for a partnership.\n\n## Data\n\nType: `PartnershipMember`\n\n### Attributes\n|Field|Type|Required|Description|\n|---|---|---|---|\n|default_general|string|yes|the default contact setting for notifications about this partnership. Values: `actionable`, `none`, or `read_only`|\n|default_item|string|yes|the default contact setting for notifications about items associated with this partnership. Values: `actionable`, `none`, or `read_only`|\n|email|string|yes|the email address of your contact at the company|\n|first_name|string|yes|the first name of your contact at the company|\n|last_name|string|yes|the last name of your contact at the company|\n\n### Relationships\n\n#### Requester\n\n*Field*: `requester`\n\n*Array*: No\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|uuid|yes|the id of the `Membership` that is creating this `PartnershipMember`|\n|type|string|yes|`Membership`|"},"response":[{"id":"46e2e892-c1de-4a14-b4ca-08037c2bad79","name":"Create a partnership member","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"default_general\": \"none\",\n            \"default_item\": \"none\",\n            \"email\": \"jennifer@willstoys.com\",\n            \"first_name\": \"Jennifer\",\n            \"last_name\": \"Konen\"\n        },\n        \"relationships\": {\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"b3b89df1-4e68-4a62-83cb-90a0174ed50e\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"PartnershipMember\"\n    }\n}"},"url":"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 20:57:01 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"528"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"499dcea6-44dd-4da1-b6d6-42c9821cbc29"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"PartnershipMember\",\n        \"id\": \"ab2f105b-88c0-42f1-8c5c-95fd792711fe\",\n        \"attributes\": {\n            \"avatar\": null,\n            \"default_general\": \"none\",\n            \"default_item\": \"none\",\n            \"email\": \"jennifer@willstoys.com\",\n            \"first_name\": \"Jennifer\",\n            \"is_archived\": false,\n            \"last_name\": \"Konen\",\n            \"notification_general\": \"none\",\n            \"phone_number\": null\n        },\n        \"relationships\": {\n            \"company\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"a901d728-0d3f-49a8-9eb4-658e2debdd7a\"\n                }\n            },\n            \"membership\": {\n                \"data\": {\n                    \"type\": \"Membership\",\n                    \"id\": \"af50e5f8-8bf5-4389-8251-7525c0f8b893\"\n                }\n            },\n            \"notification_bounce\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"4c662f4d-f079-46e8-bf55-6df790d2561b"},{"name":"Get partnership member by ID","id":"9435019c-2bec-4b0a-977c-3e5f6eca00f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/members/{{partnership_member_id}}/","description":"Get a specific partnership member by id."},"response":[{"id":"8c1ca2e4-7283-4349-a272-58452035a52c","name":"Get partnership member by ID","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/ab2f105b-88c0-42f1-8c5c-95fd792711fe/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 20:57:49 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"528"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PUT, PATCH, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"663cec93-efd8-4261-b04d-b6d0f93892a3"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"PartnershipMember\",\n        \"id\": \"ab2f105b-88c0-42f1-8c5c-95fd792711fe\",\n        \"attributes\": {\n            \"avatar\": null,\n            \"default_general\": \"none\",\n            \"default_item\": \"none\",\n            \"email\": \"jennifer@willstoys.com\",\n            \"first_name\": \"Jennifer\",\n            \"is_archived\": false,\n            \"last_name\": \"Konen\",\n            \"notification_general\": \"none\",\n            \"phone_number\": null\n        },\n        \"relationships\": {\n            \"company\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"a901d728-0d3f-49a8-9eb4-658e2debdd7a\"\n                }\n            },\n            \"membership\": {\n                \"data\": {\n                    \"type\": \"Membership\",\n                    \"id\": \"af50e5f8-8bf5-4389-8251-7525c0f8b893\"\n                }\n            },\n            \"notification_bounce\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"9435019c-2bec-4b0a-977c-3e5f6eca00f9"},{"name":"List all partnership members","id":"8288e54a-39d1-4770-80c3-28d56acaa176","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/members/","description":"Returns a list of all the partnership members from your company for the partnership.\n\nBy supplying the `partnership_side` query parameter, you can filter the results:\n\n- When `partnership_side=company`, the results will only include partnership members from your company\n- When `partnership_side=partner`, the results will only include partnership members from your partner's company"},"response":[{"id":"078a5152-51df-4570-b93f-e4579a70255a","name":"List all partnership members from your partner's company","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":{"raw":"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/?partnership_side=partner","protocol":"https","host":["api","sandbox","routable","com"],"path":["partnerships","052f1c03-2e31-4294-9e60-6d1e9f86d4cb","members",""],"query":[{"key":"partnership_side","value":"partner"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 20:58:49 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1440"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"84b1efd0-f7ee-4c7b-b981-d28ba4429265"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/?page%5Bnumber%5D=1&partnership_side=partner\",\n        \"last\": \"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/?page%5Bnumber%5D=1&partnership_side=partner\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"84e97967-1174-41f7-a60c-1c4c6d220ff2\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"actionable\",\n                \"email\": \"will@willstoys.com\",\n                \"first_name\": \"Will\",\n                \"is_archived\": false,\n                \"last_name\": \"Fraser\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"a901d728-0d3f-49a8-9eb4-658e2debdd7a\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"bebc9cfe-f81d-4a5f-9c29-34063c0e34ac\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"ab2f105b-88c0-42f1-8c5c-95fd792711fe\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"none\",\n                \"default_item\": \"none\",\n                \"email\": \"jennifer@willstoys.com\",\n                \"first_name\": \"Jennifer\",\n                \"is_archived\": false,\n                \"last_name\": \"Konen\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"a901d728-0d3f-49a8-9eb4-658e2debdd7a\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"af50e5f8-8bf5-4389-8251-7525c0f8b893\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 2,\n            \"page_size\": 25\n        }\n    }\n}"},{"id":"c63b37cd-9a7a-40ff-937b-bba3376f6b5d","name":"List all partnership members from your company","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":{"raw":"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/?partnership_side=company","protocol":"https","host":["api","sandbox","routable","com"],"path":["partnerships","052f1c03-2e31-4294-9e60-6d1e9f86d4cb","members",""],"query":[{"key":"partnership_side","value":"company"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 20:58:30 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"965"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"c8b45f4c-46b5-4026-9149-06dc615864b7"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/?page%5Bnumber%5D=1&partnership_side=company\",\n        \"last\": \"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/?page%5Bnumber%5D=1&partnership_side=company\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"2ed4a885-1d76-47f8-b30b-0f0d06b80e8f\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"jerry@fedex.com\",\n                \"first_name\": \"Jerry\",\n                \"is_archived\": false,\n                \"last_name\": \"Smith\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+16940026081\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"e7c69016-7bd9-4532-9451-c985b8dad541\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"1139b16c-204c-45b4-80df-3173f7935c66\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 1,\n            \"page_size\": 25\n        }\n    }\n}"},{"id":"d8eed5ff-7b56-42df-b76e-9326a726d680","name":"List all partnership members","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 20:57:59 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1960"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"be95d0d9-701c-44ed-aaf3-8ccf68852288"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/?page%5Bnumber%5D=1\",\n        \"last\": \"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/?page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"2ed4a885-1d76-47f8-b30b-0f0d06b80e8f\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"jerry@fedex.com\",\n                \"first_name\": \"Jerry\",\n                \"is_archived\": false,\n                \"last_name\": \"Smith\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+16940026081\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"e7c69016-7bd9-4532-9451-c985b8dad541\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"1139b16c-204c-45b4-80df-3173f7935c66\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"84e97967-1174-41f7-a60c-1c4c6d220ff2\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"actionable\",\n                \"email\": \"will@willstoys.com\",\n                \"first_name\": \"Will\",\n                \"is_archived\": false,\n                \"last_name\": \"Fraser\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"a901d728-0d3f-49a8-9eb4-658e2debdd7a\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"bebc9cfe-f81d-4a5f-9c29-34063c0e34ac\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"ab2f105b-88c0-42f1-8c5c-95fd792711fe\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"none\",\n                \"default_item\": \"none\",\n                \"email\": \"jennifer@willstoys.com\",\n                \"first_name\": \"Jennifer\",\n                \"is_archived\": false,\n                \"last_name\": \"Konen\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"a901d728-0d3f-49a8-9eb4-658e2debdd7a\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"af50e5f8-8bf5-4389-8251-7525c0f8b893\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 3,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"8288e54a-39d1-4770-80c3-28d56acaa176"},{"name":"Update partnership member","id":"4c968f4b-18d3-4859-aa55-243808ea34e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"default_general\": \"none\",\n            \"default_item\": \"none\",\n            \"email\": \"{{email}}\",\n            \"first_name\": \"{{contact_first_name}}\",\n            \"last_name\": \"{{contact_last_name}}\"\n        },\n        \"id\": \"{{partnership_member_id}}\",\n        \"relationships\": {\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"{{membership_id}}\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"PartnershipMember\"\n    }\n}"},"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/members/{{partnership_member_id}}/","description":"Update an existing partnership member for a partnership.\n\n## Data\n\nType: `PartnershipMember`\n\n### Attributes\n|Field|Type|Required|Description|\n|---|---|---|---|\n|default_general|string|yes|the default contact setting for notifications about this partnership. For more details see [additional docs](#7f83bce5-6a58-4936-84e6-ab7293800f81). Values: `actionable`, `none`, or `read_only`|\n|default_item|string|yes|the default contact setting for notifications about items associated with this partnership. For more details see [additional docs](#7f83bce5-6a58-4936-84e6-ab7293800f81). Values: `actionable`, `none`, or `read_only`|\n|email|string|yes|the email address of your contact at the company|\n|first_name|string|yes|the first name of your contact at the company|\n|last_name|string|yes|the last name of your contact at the company|\n\n### Relationships\n\n#### Requester\n\n*Field*: `requester`\n\n*Array*: No\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|uuid|yes|the id of the `Membership` that is updating this `PartnershipMember`|\n|type|string|yes|`Membership`|"},"response":[{"id":"115c3cb8-888a-4521-96f9-d8c42e3fff82","name":"Update partnership member","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"default_general\": \"none\",\n            \"default_item\": \"none\",\n            \"email\": \"jen@willstoys.com\",\n            \"first_name\": \"Jen\"\n        },\n        \"id\": \"ab2f105b-88c0-42f1-8c5c-95fd792711fe\",\n        \"relationships\": {\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"b3b89df1-4e68-4a62-83cb-90a0174ed50e\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"PartnershipMember\"\n    }\n}"},"url":"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/ab2f105b-88c0-42f1-8c5c-95fd792711fe/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 21:00:07 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"518"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PUT, PATCH, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"81817b96-b51e-4b24-8afe-a057efb735ca"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"PartnershipMember\",\n        \"id\": \"ab2f105b-88c0-42f1-8c5c-95fd792711fe\",\n        \"attributes\": {\n            \"avatar\": null,\n            \"default_general\": \"none\",\n            \"default_item\": \"none\",\n            \"email\": \"jen@willstoys.com\",\n            \"first_name\": \"Jen\",\n            \"is_archived\": false,\n            \"last_name\": \"Konen\",\n            \"notification_general\": \"none\",\n            \"phone_number\": null\n        },\n        \"relationships\": {\n            \"company\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"a901d728-0d3f-49a8-9eb4-658e2debdd7a\"\n                }\n            },\n            \"membership\": {\n                \"data\": {\n                    \"type\": \"Membership\",\n                    \"id\": \"af50e5f8-8bf5-4389-8251-7525c0f8b893\"\n                }\n            },\n            \"notification_bounce\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"4c968f4b-18d3-4859-aa55-243808ea34e5"},{"name":"Archive partnership member","id":"2e273329-395a-4e86-962e-d79192262dfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"is_archived\": true\n        },\n        \"id\": \"{{partnership_member_id}}\",\n        \"relationships\": {\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"{{membership_id}}\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"PartnershipMember\"\n    }\n}"},"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/members/{{partnership_member_id}}/","description":"Archive an existing partnership member for a partnership.\n\n## Data\n\nType: `PartnershipMember`\n\n### Attributes\n|Field|Type|Required|Description|\n|---|---|---|---|\n|is_archived|boolean|yes|designates whether or not to archive this `PartnershipMember`|\n\n### Relationships\n\n#### Requester\n\n*Field*: `requester`\n\n*Array*: No\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|uuid|yes|the id of the `Membership` that is archiving or unarchiving this `PartnershipMember`|\n|type|string|yes|`Membership`|"},"response":[{"id":"5559b400-5cc6-425a-a538-6d78ad29e40e","name":"Archive partnership member","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"is_archived\": true\n        },\n        \"id\": \"ab2f105b-88c0-42f1-8c5c-95fd792711fe\",\n        \"relationships\": {\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"b3b89df1-4e68-4a62-83cb-90a0174ed50e\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"PartnershipMember\"\n    }\n}"},"url":"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/members/ab2f105b-88c0-42f1-8c5c-95fd792711fe/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 21:01:45 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"517"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PUT, PATCH, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"96a16ba1-a58a-4bd4-9675-60a79e7e9874"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"PartnershipMember\",\n        \"id\": \"ab2f105b-88c0-42f1-8c5c-95fd792711fe\",\n        \"attributes\": {\n            \"avatar\": null,\n            \"default_general\": \"none\",\n            \"default_item\": \"none\",\n            \"email\": \"jen@willstoys.com\",\n            \"first_name\": \"Jen\",\n            \"is_archived\": true,\n            \"last_name\": \"Konen\",\n            \"notification_general\": \"none\",\n            \"phone_number\": null\n        },\n        \"relationships\": {\n            \"company\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"a901d728-0d3f-49a8-9eb4-658e2debdd7a\"\n                }\n            },\n            \"membership\": {\n                \"data\": {\n                    \"type\": \"Membership\",\n                    \"id\": \"af50e5f8-8bf5-4389-8251-7525c0f8b893\"\n                }\n            },\n            \"notification_bounce\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"2e273329-395a-4e86-962e-d79192262dfe"}],"id":"6a090413-f9b6-4636-bf22-ad1ce890c0b6","description":"The `PartnershipMember` object is a child of a Partnership and gives specific information about a member Partnership.\n\n**Note: This object can represent members from either side of the Partnership.**\n\n\n\n### Attributes\n#### Default General\nThis field is used to define default notification behavior for companies and partnership management in the Routable application. This only affects the Routable application and does not affect API usage.\n\n| Option      | Description |\n| ----------- | ----------- |\n| actionable      | The PartnershipMember can read and act on emails related to Company and Partnership management.      |\n| none   | The PartnershipMember will not receive notifications for Company and Partnership management by default.        |\n| read_only   | The PartnershipMember can read emails related to Company and Partnership management.        |\n\n\n#### Default Item\nThis field is used to define default notification behavior for items in the Routable application. This only affects the Routable application and does not affect API usage.\n\n| Option      | Description |\n| ----------- | ----------- |\n| actionable      | The PartnershipMember can read and act on emails related to Items.      |\n| none   | The PartnershipMember will not receive notifications for Items by default.        |\n| read_only   | The PartnershipMember can read emails related to Items.        |\n","event":[{"listen":"prerequest","script":{"id":"2746aab3-c4ea-4cda-878b-bcc567064910","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7b2479ff-f0d0-4e6f-b77d-6af1ac2d22e6","type":"text/javascript","exec":[""]}}],"_postman_id":"6a090413-f9b6-4636-bf22-ad1ce890c0b6"},{"name":"List all partnerships","event":[{"listen":"test","script":{"id":"ac011e04-7b29-4589-a67a-5628d633df5c","exec":["var jsonData = pm.response.json();","","var partnership_id;","var partner_member_id;","","var jsonData = pm.response.json();","jsonData.data.forEach((partnership) => {","    partnership_id = partnership.id;","    partner_member_id = partnership.relationships.contact.data.id;","})","","","if (partnership_id) {","    pm.environment.set(\"partnership_id\", partnership_id);","    pm.environment.set(\"partner_member_id\", partnership_id);","} else {","    pm.environment.unset(\"partnership_id\");","    pm.environment.unset(\"partner_member_id\");","}"],"type":"text/javascript"}}],"id":"0beab0ea-5aa2-401d-9138-63bd7f4fb7e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/partnerships/","description":"Returns a list of all the partnerships for your company."},"response":[{"id":"da6b1fc2-a005-4587-b934-173022a85ae4","name":"List all partnerships","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/partnerships/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 12:54:47 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1960"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"8201fa5f-879d-4c9b-8a9e-a04434685fc5"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/partnerships/?page%5Bnumber%5D=1\",\n        \"last\": \"https://api.sandbox.routable.com/partnerships/?page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"ebb9d94c-0702-4a42-9e3f-a1f47f223763\",\n            \"attributes\": {\n                \"created\": \"2020-06-16T12:49:05.138796Z\",\n                \"customer_ref\": null,\n                \"external_ref\": null,\n                \"is_customer\": false,\n                \"is_partner_accepted\": false,\n                \"is_vendor\": true,\n                \"name\": \"Boxes Galore\",\n                \"vendor_ref\": null\n            },\n            \"relationships\": {\n                \"partner\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"57dd47e7-4bac-4f71-b4f5-0bc6552d04ff\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"48b89d02-9820-4b76-977d-ce1d306ff40d\",\n            \"attributes\": {\n                \"created\": \"2020-06-16T12:49:51.324219Z\",\n                \"customer_ref\": null,\n                \"external_ref\": null,\n                \"is_customer\": false,\n                \"is_partner_accepted\": false,\n                \"is_vendor\": true,\n                \"name\": \"Gas & Go\",\n                \"vendor_ref\": null\n            },\n            \"relationships\": {\n                \"partner\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"ae1520b4-78bc-4e40-878b-0a0d9a64d052\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\",\n            \"attributes\": {\n                \"created\": \"2020-06-16T12:53:36.346020Z\",\n                \"customer_ref\": null,\n                \"external_ref\": \"65326\",\n                \"is_customer\": false,\n                \"is_partner_accepted\": false,\n                \"is_vendor\": true,\n                \"name\": \"InstaWork\",\n                \"vendor_ref\": null\n            },\n            \"relationships\": {\n                \"partner\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"57dd47e7-4bac-4f71-b4f5-0bc6552d04ff\",\n            \"attributes\": {\n                \"company_type\": \"business\",\n                \"name\": \"Boxes Galore\"\n            }\n        },\n        {\n            \"type\": \"Company\",\n            \"id\": \"ae1520b4-78bc-4e40-878b-0a0d9a64d052\",\n            \"attributes\": {\n                \"company_type\": \"business\",\n                \"name\": \"Gas & Go\"\n            }\n        },\n        {\n            \"type\": \"Company\",\n            \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\",\n            \"attributes\": {\n                \"company_type\": \"business\",\n                \"name\": \"InstaWork\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 3,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"0beab0ea-5aa2-401d-9138-63bd7f4fb7e7"},{"name":"Get a partnership","id":"0bb834a3-6149-45bc-864c-0c59098bc290","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/","description":"Get a specific partnership by id."},"response":[{"id":"06fc8c15-0254-4c55-ab6f-4c929021f073","name":"Get a partnership","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 12:55:18 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1603"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"5cd29ee2-82e7-4f3e-8460-3e81f1663117"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Partnership\",\n        \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\",\n        \"attributes\": {\n            \"created\": \"2020-06-16T12:53:36.346020Z\",\n            \"customer_ref\": null,\n            \"external_ref\": \"65326\",\n            \"is_customer\": false,\n            \"is_partner_accepted\": false,\n            \"is_vendor\": true,\n            \"name\": \"InstaWork\",\n            \"vendor_ref\": null\n        },\n        \"relationships\": {\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                }\n            },\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\"\n                    },\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\",\n            \"attributes\": {\n                \"company_type\": \"business\",\n                \"name\": \"InstaWork\"\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"michelle@fedex.com\",\n                \"first_name\": \"Michelle\",\n                \"is_archived\": false,\n                \"last_name\": \"Jones\",\n                \"phone_number\": {\n                    \"number\": \"+18738207968\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"zaldy@instawork.com\",\n                \"first_name\": \"Zaldy\",\n                \"is_archived\": false,\n                \"last_name\": \"Worker\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"fd04d875-9970-4017-9eec-bf8fcee4ac4f\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"0bb834a3-6149-45bc-864c-0c59098bc290"},{"name":"Create a partnership","event":[{"listen":"test","script":{"id":"8da890d0-169a-49aa-9f0b-b939e3af9b57","exec":["var jsonData = pm.response.json();","","pm.environment.set(\"partnership_id\", jsonData.data.id);","pm.environment.set(\"partner_member_id\", jsonData.data.relationships.contact.data.id);"],"type":"text/javascript"}}],"id":"d339187f-50bc-4572-8f35-3632705c8002","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"external_ref\": \"{{external_ref}}\",\n            \"is_customer\": {{is_customer}},\n            \"is_vendor\": {{is_vendor}}\n        },\n        \"relationships\": {\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"default_general\": \"{{default_general}}\",\n                            \"default_item\": \"{{default_item}}\",\n                            \"email\": \"{{contact_email}}\",\n                            \"first_name\": \"{{contact_first_name}}\",\n                            \"last_name\": \"{{contact_last_name}}\"\n                        },\n                        \"type\": \"PartnershipMember\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"attributes\": {\n                        \"company_type\": \"{{company_type}}\",\n                        \"name\": \"{{company_name}}\"\n                    },\n                    \"type\": \"Company\"\n                }\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"{{membership_id}}\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Partnership\"\n    }\n}"},"url":"https://api.sandbox.routable.com/partnerships/","description":"<!-- Important: The following heading has been added to support stable, named links within the API docs -->\n###### Create a new partnership\n## Data\n\nType: `Partnership`\n\n&nbsp;\n### Attributes\n|Field|Type|Required|Description|\n|---|---|---|---|\n|external_ref|string|no|a unique reference for matching our record with yours|\n|is_customer|boolean|yes|true if this company is a customer|\n|is_vendor|boolean|yes|true if this company is a vendor|\n\n&nbsp;\n\n### Relationships\n\n&nbsp;\n\n#### Requester\n\n*Field*: `requester`\n\n*Array*: No\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|uuid|yes|the id of the `Membership` that is creating this `Parnership`|\n|type|string|yes|`Membership`|\n\n&nbsp;\n\n#### Partnership Members\n\n*Field*: `partnership_members`\n\n*Array*: Yes\n\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|default_general|string|yes|the default contact setting for notifications about this partnership. For more details see [additional docs](#7f83bce5-6a58-4936-84e6-ab7293800f81). Values: `actionable`, `none`, or `read_only`|\n|default_item|string|yes|the default contact setting for notifications about items associated with this partnership. For more details see [additional docs](#7f83bce5-6a58-4936-84e6-ab7293800f81). Values: `actionable`, `none`, or `read_only`|\n|email|string|yes|the email address of your contact at the company|\n|first_name|string|yes|the first name of your contact at the company|\n|last_name|string|yes|the last name of your contact at the company|\n|type|string|yes|`PartnershipMember`|\n\n&nbsp;\n\n#### Partner\n\n*Field*: `partner`\n\n*Array*: No\n\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|company_type|string|yes|company type. Values: `business` or `personal`|\n|name|string|yes|the name of the company|\n|type|string|yes|`Company`|\n\n## Response\n\nFor customers who have set up a ledger integration, Routable returns additional information in the response body as part of the `attributes` object. This information can help you identify the partner record on your ledger.\n\nIf you're integrated with a ledger, see the specific instructions for your ledger:\n\n- [Creating a partnership with Xero](#a7f9d9ad-bf43-495f-9aed-528e6b53939c)\n- [Creating a partnership with QBO](#ae79f1eb-ba90-4653-b6e0-15bf24a9d956)\n- [Creating a partnership with NetSuite](#975baff0-c2a8-48d7-b85e-1af007a45704)"},"response":[{"id":"c56ec693-25f0-484c-9ba8-2884ba1ee5d8","name":"Create a partnership","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"external_ref\": \"65326\",\n            \"is_customer\": false,\n            \"is_vendor\": true\n        },\n        \"relationships\": {\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"default_general\": \"actionable\",\n                            \"default_item\": \"actionable\",\n                            \"email\": \"zaldy@instawork.com\",\n                            \"first_name\": \"Zaldy\",\n                            \"last_name\": \"Worker\"\n                        },\n                        \"type\": \"PartnershipMember\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"attributes\": {\n                        \"company_type\": \"business\",\n                        \"name\": \"InstaWork\"\n                    },\n                    \"type\": \"Company\"\n                }\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Partnership\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 12:53:36 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1603"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"e044ef98-760b-40ce-8e0d-4bccf93f2145"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Partnership\",\n        \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\",\n        \"attributes\": {\n            \"created\": \"2020-06-16T12:53:36.346020Z\",\n            \"customer_ref\": null,\n            \"external_ref\": \"65326\",\n            \"is_customer\": false,\n            \"is_partner_accepted\": false,\n            \"is_vendor\": true,\n            \"name\": \"InstaWork\",\n            \"vendor_ref\": null\n        },\n        \"relationships\": {\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                }\n            },\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\"\n                    },\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\",\n            \"attributes\": {\n                \"company_type\": \"business\",\n                \"name\": \"InstaWork\"\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"actionable\",\n                \"email\": \"michelle@fedex.com\",\n                \"first_name\": \"Michelle\",\n                \"is_archived\": false,\n                \"last_name\": \"Jones\",\n                \"phone_number\": {\n                    \"number\": \"+18738207968\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"zaldy@instawork.com\",\n                \"first_name\": \"Zaldy\",\n                \"is_archived\": false,\n                \"last_name\": \"Worker\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"fd04d875-9970-4017-9eec-bf8fcee4ac4f\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"d339187f-50bc-4572-8f35-3632705c8002"},{"name":"Send partnership invite","id":"d0b710cd-0f59-4539-b4bb-b77cf8257b83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {},\n        \"relationships\": {\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"notification_general\": \"actionable\"\n                        },\n                        \"id\": \"{{partnership_member_id}}\",\n                        \"type\": \"PartnershipMember\"\n                    }\n                ]\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"{{membership_id}}\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Partnership\"\n    },\n    \"meta\": {\n    \t\"invite_message\": \"{{invite_message}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/send_invite/","description":"Send an invite to a specific partnership by id.\n\nThis will allow your invitee(s) to go through our white-labeled flow, in order to collect entity, tax, and payment information.\n\nSetting the `notification_general` field for the specified Partnership Members defines whether a given Partnership Member will be able to go through the flow and submit information or whether they have read only access.\n\n## Data\n\nType: `Partnership`\n\n### Attributes\nNo attributes needed\n\n### Relationships\n\n#### Requester\n\n*Field*: `requester`\n\n*Array*: no\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|string|yes|the `Membership` who is sending this item|\n|type|string|yes|`Membership`|\n\n#### Partnership Members\n\n*Field*: `partnership_members`\n\n*Array*: yes\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|notification_general|string|yes|the contact setting for notifications about this partnership. Values: `actionable`, `none`, or `read_only`|\n|id|uuid|yes|the id of the `PartnershipMembership` that is receiving this invite|\n|type|string|yes|`PartnershipMember`|\n\n## Meta\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|invite_message|string|no|an optional message to send along in the invite email|"},"response":[{"id":"5de7f4fe-94d3-4c64-9bcb-6f8924e1dc3b","name":"Send partnership invite","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {},\n        \"relationships\": {\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"id\": \"ab2f105b-88c0-42f1-8c5c-95fd792711fe\",\n                        \"type\": \"PartnershipMember\"\n                        \"attributes\": {\n                            \"notification_general\": \"actionable\"\n                        },\n                    }\n                ]\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Partnership\"\n    },\n    \"meta\": {\n    \t\"invite_message\": \"Please join us on Routable to get paid\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/052f1c03-2e31-4294-9e60-6d1e9f86d4cb/send_invite/"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 12:56:30 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"35112532-6d89-4d4f-958e-90be83ce227f"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d0b710cd-0f59-4539-b4bb-b77cf8257b83"}],"id":"b3106cff-d113-4179-9593-88ad2c842acf","description":"The `Partnership` object represents the relationship between two `Companies`.\n\n&nbsp;\n\nThe `Company` object contains all the information about a company.\n\n&nbsp;\n\nThe `PartnershipMember` object is a child of a `Partnership` and gives specific information about a member `Partnership`.\n_Note: This object can represent members from either side of the `Partnership`._\n\n&nbsp;\n\n## The Partnership object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`Partnership`|\n\n&nbsp;\n\n### Attributes\n\n|Field|Description|List|\n|---|---|---|\n|created|The date the `Partnership` was created|yes|\n|customer_ref|The unique id from the ledger for the customer of this `Partnership`|yes|\n|external_ref|The unique id that you assign for this `Partnership`|yes|\n|is_customer|Is this `Partnership` a customer|yes|\n|is_ledger_only|Whether this `Partnership` exists on your ledger only|yes|\n|is_vendor|Is this `Partnership` a vendor|yes|\n|name|What you call the company|yes|\n|partner_status|The status of the `Partnership`'s onboarding|yes|\n|vendor_ref|The unique id from the ledger for the vendor of this `Partnership`|yes|\n\n&nbsp;\n\n### Relationships\n\n|Value|Object|Array|List|\n|---|---|---|---|\n|partner|`Company`|no|yes|\n|partnership_members|`PartnershipMember`|yes|no|\n\n&nbsp;\n\n## The Company object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`Company`|\n\n&nbsp;\n\n### Attributes\n\n|Field|Description|List|\n|---|---|---|\n|company_type|The type of company|yes|\n|name|The name of the company|yes|\n\n&nbsp;\n\n## The PartnershipMember object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`PartnershipMember`|\n\n&nbsp;\n\n### Attributes\n\n|Field|Description|List|\n|---|---|---|\n|avatar|The URL of the member's avatar|yes|\n|email|The email address of the member|yes|\n|first_name|The first name of the member|yes|\n|is_archived|Depicts whether the member is archived|yes|\n|last_name|The last name of the member|yes|\n|phone_number|The phone number of the member|yes|\n\n&nbsp;\n\n### Relationships\n\n|Value|Object|Array|List|\n|---|---|---|---|\n|company|`Company`|no|yes|\n|membership|`Membership`|no|no|","event":[{"listen":"prerequest","script":{"id":"457f0f62-9889-4e35-a39f-597ce9752c4f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b32c7df6-b4b5-4251-ad14-cd35858844c6","type":"text/javascript","exec":[""]}}],"_postman_id":"b3106cff-d113-4179-9593-88ad2c842acf"},{"name":"Partnership funding accounts","item":[{"name":"List all payable funding accounts for your vendor.","event":[{"listen":"test","script":{"id":"5b273c80-84dd-4d26-9e89-ee18bf045fb4","exec":["var jsonData = pm.response.json();","","var nonPrimaryId;","","jsonData.data.forEach((partnershipFundingAccount) => {","    if (!partnershipFundingAccount.attributes.is_primary) {","        pm.environment.set(\"partnership_funding_account_id\", partnershipFundingAccount.id);","        nonPrimaryId = partnershipFundingAccount.id;","    }","})","","if (!nonPrimaryId) {","    pm.environment.unset(\"partnership_funding_account_id\");","}"],"type":"text/javascript"}}],"id":"9912139b-5836-444d-ac82-b12dd47c08eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/receivable_funding_accounts/","description":"Returns a list of all the payable funding accounts for your vendor."},"response":[{"id":"5dab687a-f9c2-4cd4-8447-555833a03131","name":"List all payable funding accounts for your vendor.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/receivable_funding_accounts/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 13:03:08 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"2447"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"18aad086-3546-4e86-b8d6-3cb5454aa5ff"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/receivable_funding_accounts/?page%5Bnumber%5D=1\",\n        \"last\": \"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/receivable_funding_accounts/?page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"PartnershipFundingAccount\",\n            \"id\": \"b2c47d0b-f261-41fa-9b14-e72d774877a0\",\n            \"attributes\": {\n                \"created\": \"2020-06-16T13:02:23.704550Z\",\n                \"is_created_by_partner\": false,\n                \"is_nicknamed\": false,\n                \"is_preferred\": false,\n                \"is_primary\": true,\n                \"name\": \"Bank Of America, N.A. ***7374\",\n                \"payment_delivery_method\": \"ach\"\n            },\n            \"relationships\": {\n                \"funding_account\": {\n                    \"data\": {\n                        \"type\": \"FundingAccount\",\n                        \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\"\n                    }\n                },\n                \"partnership\": {\n                    \"data\": {\n                        \"type\": \"Partnership\",\n                        \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipFundingAccount\",\n            \"id\": \"cc011d67-4fbf-447e-8b01-9ec24e05e073\",\n            \"attributes\": {\n                \"created\": \"2020-06-16T13:00:30.339320Z\",\n                \"is_created_by_partner\": false,\n                \"is_nicknamed\": false,\n                \"is_preferred\": false,\n                \"is_primary\": false,\n                \"name\": \"Business Address\",\n                \"payment_delivery_method\": \"check\"\n            },\n            \"relationships\": {\n                \"funding_account\": {\n                    \"data\": {\n                        \"type\": \"FundingAccount\",\n                        \"id\": \"7e251d7e-70af-49a4-af0f-c3df3c58c87d\"\n                    }\n                },\n                \"partnership\": {\n                    \"data\": {\n                        \"type\": \"Partnership\",\n                        \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"7e251d7e-70af-49a4-af0f-c3df3c58c87d\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoAddress\",\n                        \"id\": \"998548a9-087b-49f7-93b8-573e50dfa59c\"\n                    }\n                },\n                \"bank\": {\n                    \"data\": null\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoAddress\",\n            \"id\": \"998548a9-087b-49f7-93b8-573e50dfa59c\",\n            \"attributes\": {\n                \"city\": \"Seattle\",\n                \"country\": \"US\",\n                \"postalcode\": \"98101\",\n                \"print_company\": \"InstaWork\",\n                \"print_name\": null,\n                \"state\": \"WA\",\n                \"street_address\": \"1110 3rd Ave\",\n                \"street_address_unit\": null\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\",\n            \"attributes\": {\n                \"account_number\": \"006741807374\",\n                \"institution_name\": \"Bank Of America, N.A.\",\n                \"routing_number\": \"122000661\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 2,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"9912139b-5836-444d-ac82-b12dd47c08eb"},{"name":"Add a funding address","id":"4db34fad-235a-4ecf-9eb2-6b1cb25a918d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"FundingAccount\"\r\n\t},\r\n\t\"meta\": {\r\n\t\t\"city\": \"{{city}}\",\r\n\t\t\"country\": \"{{country}}\",\r\n\t\t\"print_company\": \"{{company_name}}\",\r\n\t\t\"postalcode\": \"{{postalcode}}\",\r\n\t\t\"state\": \"{{state}}\",\r\n\t\t\"street_address\": \"{{street_address}}\"\r\n\t}\r\n}"},"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/funding_account_address/","description":"Add an address for check delivery on behalf of your vendor.\n\n\nFor naming consistency and to help distinguish payment addresses from other addresses, we named this resource `FundingAddress`.\n\n&nbsp;\n\n_**Note**:_\n_Our checks are addressed and mailed to a combination of `print_name` and `print_company`._\n_Only one is required._\n\n_Checks will be printed with the following information (in order):_\n\n`print_name` (if present)\n\n`print_company` (if present)\n\n`street_address` `street_address_unit`\n\n`city`, `state` `postalcode`\n\n## Meta\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|city|string|yes|city|\n|country|string|yes|two letter country abbreviation|\n|postalcode|string|yes|postal code|\n|print_company|string|conditional|Company name to print on the check|\n|print_name|string|conditional|Persons name to print on the check|\n|state|string|yes|two letter state abbreviation|\n|street_address|string|yes|first line of the street address|\n|street_address_unit|string|no|unit of the street address|"},"response":[{"id":"e5b4806a-dfa9-4119-b4a7-74d22c2c6fac","name":"Add a funding address","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"FundingAccount\"\r\n\t},\r\n\t\"meta\": {\r\n\t\t\"city\": \"Seattle\",\r\n\t\t\"country\": \"US\",\r\n\t\t\"print_company\": \"InstaWork\",\r\n\t\t\"postalcode\": \"98101\",\r\n\t\t\"state\": \"WA\",\r\n\t\t\"street_address\": \"1110 3rd Ave\"\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/funding_account_address/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 13:00:30 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"695"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"90179154-82df-4e55-b89f-0d51fb6a26a3"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"FundingAccount\",\n        \"id\": \"7e251d7e-70af-49a4-af0f-c3df3c58c87d\",\n        \"attributes\": {},\n        \"relationships\": {\n            \"address\": {\n                \"data\": {\n                    \"type\": \"FundingInfoAddress\",\n                    \"id\": \"998548a9-087b-49f7-93b8-573e50dfa59c\"\n                }\n            },\n            \"bank\": {\n                \"data\": null\n            },\n            \"company\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": {\n                    \"type\": \"PartnershipFundingAccount\",\n                    \"id\": \"cc011d67-4fbf-447e-8b01-9ec24e05e073\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"FundingInfoAddress\",\n            \"id\": \"998548a9-087b-49f7-93b8-573e50dfa59c\",\n            \"attributes\": {\n                \"city\": \"Seattle\",\n                \"country\": \"US\",\n                \"postalcode\": \"98101\",\n                \"print_company\": \"InstaWork\",\n                \"print_name\": \"\",\n                \"state\": \"WA\",\n                \"street_address\": \"1110 3rd Ave\",\n                \"street_address_unit\": null\n            }\n        }\n    ]\n}"}],"_postman_id":"4db34fad-235a-4ecf-9eb2-6b1cb25a918d"},{"name":"Add a funding bank","event":[{"listen":"test","script":{"id":"4b9904bb-0d6e-4c0b-88fa-d4e4037d6eb6","exec":["var jsonData = pm.response.json();","","pm.environment.set(\"partner_receivable_account_id\", jsonData.data.id);"],"type":"text/javascript"}}],"id":"113add10-d8d9-424c-8308-af774e665fea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"FundingAccount\"\r\n\t},\r\n\t\"meta\": {\r\n\t\t\"bank_account_number\": \"{{account_number}}\",\r\n\t\t\"bank_account_type\": \"{{account_type}}\",\r\n\t\t\"bank_routing_number\": \"{{routing_number}}\"\r\n\t}\r\n}"},"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/funding_account_bank/","description":"<!-- Important: The following heading has been added to support stable, named links within the API docs -->\n###### Add bank account information on behalf of your vendor\nThis record can be used to send ACH payments to your vendor.\n\n## Data\n\nType: `FundingAccount`\n\n## Meta\n\nThe `meta` object includes attributes that define the account.\n\n| Field               | Type    | Required | Description                                                  |\n| ------------------- | ------- | -------- | ------------------------------------------------------------ |\n| bank_account_number | string  | yes      | The partner company's bank account number.                   |\n| bank_account_type   | string  | yes      | The partner company's bank account type: `checking` or `savings`. |\n| bank_routing_number | string  | yes      | The routing number of the partner company's bank.            |\n| apply_to_not_set    | boolean | no       | Use this funding account to fund payments for all payable items that do not currently have an account assigned to them. |\n| apply_to_pending    | boolean | no       | Use this funding account to fund payments for all pending payable items. |\n| set_primary         | boolean | no       | Set this funding account as the default funding account for future payable items. |"},"response":[{"id":"226ba7da-3b68-4ab4-93f1-fbf32090364f","name":"Add a funding bank","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"FundingAccount\"\r\n\t},\r\n\t\"meta\": {\r\n\t\t\"bank_account_number\": \"006741807374\",\r\n\t\t\"bank_account_type\": \"checking\",\r\n\t\t\"bank_routing_number\": \"122000661\"\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/funding_account_bank/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 13:02:23 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"624"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"256fb88a-5e44-4a35-abf6-b65964139c43"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"FundingAccount\",\n        \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\",\n        \"attributes\": {},\n        \"relationships\": {\n            \"address\": {\n                \"data\": null\n            },\n            \"bank\": {\n                \"data\": {\n                    \"type\": \"FundingInfoBank\",\n                    \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\"\n                }\n            },\n            \"company\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": {\n                    \"type\": \"PartnershipFundingAccount\",\n                    \"id\": \"b2c47d0b-f261-41fa-9b14-e72d774877a0\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\",\n            \"attributes\": {\n                \"account_number\": \"006741807374\",\n                \"institution_name\": \"Bank Of America, N.A.\",\n                \"routing_number\": \"122000661\"\n            }\n        }\n    ]\n}"}],"_postman_id":"113add10-d8d9-424c-8308-af774e665fea"},{"name":"Get a partnership funding account","id":"866d0004-bd74-431b-9fe9-b0f9365d12d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/receivable_funding_accounts/{{partnership_funding_account_id}}/","description":"Get a specific partnership funding account by id."},"response":[{"id":"48c51cab-7daa-4e84-b072-65bdaf9044cb","name":"Get a partnership funding account","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/receivable_funding_accounts/b2c47d0b-f261-41fa-9b14-e72d774877a0/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 13:05:12 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1010"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"c0d3b2ac-306c-4dd2-995b-331c8f87027b"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"PartnershipFundingAccount\",\n        \"id\": \"b2c47d0b-f261-41fa-9b14-e72d774877a0\",\n        \"attributes\": {\n            \"created\": \"2020-06-16T13:02:23.704550Z\",\n            \"is_created_by_partner\": false,\n            \"is_nicknamed\": false,\n            \"is_preferred\": false,\n            \"is_primary\": true,\n            \"name\": \"Bank Of America, N.A. ***7374\",\n            \"payment_delivery_method\": \"ach\"\n        },\n        \"relationships\": {\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\"\n                }\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\",\n            \"attributes\": {\n                \"account_number\": \"006741807374\",\n                \"institution_name\": \"Bank Of America, N.A.\",\n                \"routing_number\": \"122000661\"\n            }\n        }\n    ]\n}"}],"_postman_id":"866d0004-bd74-431b-9fe9-b0f9365d12d6"},{"name":"Update a partnership funding account","id":"509b9c86-192f-4d3f-8cf1-05460cb73b0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"PartnershipFundingAccount\",\r\n    \"id\": \"{{partnership_funding_account_id}}\",\r\n    \"attributes\": {\r\n      \"is_primary\": \"{{partnership_funding_account_is_primary}}\",\r\n      \"name\": \"{{partnership_funding_account_name}}\"\r\n    }\r\n  }\r\n}"},"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/receivable_funding_accounts/{{partnership_funding_account_id}}/","description":"Updates a payable funding accounts for your vendor.\r\n\r\n## Data\r\n\r\nType: `PartnershipFundingAccount`\r\n\r\n&nbsp;\r\n### Attributes\r\n|Field|Type|Required|Description|\r\n|---|---|---|---|\r\n|is_primary|boolean|no|true if you want to update this account to primary|\r\n|name|string|no|the name you want to show in the UI for this account|"},"response":[{"id":"d67b6ea0-4526-4c45-92c6-9fb7ce70b589","name":"Update a partnership funding account","originalRequest":{"method":"PATCH","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"PartnershipFundingAccount\",\r\n    \"id\": \"b2c47d0b-f261-41fa-9b14-e72d774877a0\",\r\n    \"attributes\": {\r\n      \"is_primary\": true,\r\n      \"name\": \"Deposit Account\"\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/receivable_funding_accounts/b2c47d0b-f261-41fa-9b14-e72d774877a0/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 13:05:49 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"997"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"8ba9af00-f7d5-4adf-8571-4b143cbb7add"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"PartnershipFundingAccount\",\n        \"id\": \"b2c47d0b-f261-41fa-9b14-e72d774877a0\",\n        \"attributes\": {\n            \"created\": \"2020-06-16T13:02:23.704550Z\",\n            \"is_created_by_partner\": false,\n            \"is_nicknamed\": true,\n            \"is_preferred\": false,\n            \"is_primary\": true,\n            \"name\": \"Deposit Account\",\n            \"payment_delivery_method\": \"ach\"\n        },\n        \"relationships\": {\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\"\n                }\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\",\n            \"attributes\": {\n                \"account_number\": \"006741807374\",\n                \"institution_name\": \"Bank Of America, N.A.\",\n                \"routing_number\": \"122000661\"\n            }\n        }\n    ]\n}"}],"_postman_id":"509b9c86-192f-4d3f-8cf1-05460cb73b0c"}],"id":"18d33b2a-17fd-488a-aee1-d38e64dd7fb6","description":"If you are always creating payables and don't need your vendors to interact with the platform themselves,\nyou can add mailing addresses and/or ACH bank information on their behalf.\n\nUnfortunately, we cannot extend this functionality for customers and debits, as we require verification of account ownership via either bank account micro-deposit verification or login into the bank via Plaid.\n\n&nbsp;\n\nThe `PartnershipFundingAccount` object ties a `FundingAccount` for your partners' `Partnership`.\n\n&nbsp;\n\nYou can have up to 1 primary and 1 preferred `FundingAccount` per `Partnership` (they can also be the same one)\n\n- A `FundingAccount` marked `is_primary` is the default `FundingAccount` that will be shown in the UI for your vendor\n- A `FundingAccount` marked `is_preferred` is the `FundingAccount` that was chosen by your vendor\n\n&nbsp;\n\n## The PartnershipFundingAccount object\n\n&nbsp;\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`PartnershipFundingAccount`|\n\n&nbsp;\n\n### Attributes\n\n|Field|Description|List|\n|---|---|---|\n|created|The date the PartnershipFundingAccount was created|yes|\n|is_created_by_partner|True if your vendor added this account|yes|\n|is_preferred|True if your vendor prefers this account|yes|\n|is_primary|True if you have set this account to primary|yes|\n|name|The name of the account|yes|\n|payment_delivery_method|The payment method. Values: `ach_expedited` or `check_standard`|yes|\n\n\n&nbsp;\n\n### Relationships\n\n&nbsp;\n\n|Value|Object|Array|List|\n|---|---|---|---|\n|funding_account|`FundingAccount`|no|yes|\n|partnership|`Partnership`|no|yes|","event":[{"listen":"prerequest","script":{"id":"db3f5e9b-da6d-4fd6-b119-3beab468eb1a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"85bcb25c-77b9-4702-8037-0d484f043b5e","type":"text/javascript","exec":[""]}}],"_postman_id":"18d33b2a-17fd-488a-aee1-d38e64dd7fb6"},{"name":"Items","item":[{"name":"Members","item":[{"name":"List all item members","id":"91da2029-bfa4-48a5-a9f5-b7c92c3838ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/items/{{item_id}}/members/","description":"Returns a list of all the item members for the item.\n\nBy supplying the `item_side` query parameter, you can filter the results: \n\n- When `item_side=company`, the results will only include item members from your company\n- When `item_side=partner`, the results will only include item members from your partner's company"},"response":[{"id":"8ce53fa0-3fe0-44ee-b048-2cbacdc8a5ae","name":"List all item members from your company","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":{"raw":"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/?item_side=company","protocol":"https","host":["api","sandbox","routable","com"],"path":["items","71e7d950-657c-4b8a-a097-ca736441a2e3","members",""],"query":[{"key":"item_side","value":"company"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 00:38:02 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1972"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"62c3a7f9-91f1-42b0-83a9-fa0edc12b013"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/?item_side=company&page%5Bnumber%5D=1\",\n        \"last\": \"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/?item_side=company&page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"28b83e4b-0754-4a95-bf3f-593a83eeeb3f\",\n            \"attributes\": {\n                \"access_item\": \"self_managed\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"471959cb-5127-4c05-8aeb-d8f27e482302\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"8be4a672-e710-4cad-a6ba-fa6a25d3d62a\",\n            \"attributes\": {\n                \"access_item\": \"self_managed\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"6af2e691-1ee8-4b80-a522-5215cd1e1f24\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"471959cb-5127-4c05-8aeb-d8f27e482302\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"jerry@fedex.com\",\n                \"first_name\": \"Jerry\",\n                \"is_archived\": false,\n                \"last_name\": \"Smith\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+16940026081\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"e7c69016-7bd9-4532-9451-c985b8dad541\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"1139b16c-204c-45b4-80df-3173f7935c66\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"6af2e691-1ee8-4b80-a522-5215cd1e1f24\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"none\",\n                \"default_item\": \"none\",\n                \"email\": \"michelle@fedex.com\",\n                \"first_name\": \"Michelle\",\n                \"is_archived\": false,\n                \"last_name\": \"Jones\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+17181980426\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"e7c69016-7bd9-4532-9451-c985b8dad541\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"b3b89df1-4e68-4a62-83cb-90a0174ed50e\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 2,\n            \"page_size\": 25\n        }\n    }\n}"},{"id":"d8c36e0d-890f-494b-9e72-9370563469d7","name":"List all item members from your partner","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":{"raw":"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/?item_side=partner","protocol":"https","host":["api","sandbox","routable","com"],"path":["items","71e7d950-657c-4b8a-a097-ca736441a2e3","members",""],"query":[{"key":"item_side","value":"partner"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 00:38:21 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1876"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"136d32c7-bc08-4529-8aa3-993ed0f44569"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/?item_side=partner&page%5Bnumber%5D=1\",\n        \"last\": \"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/?item_side=partner&page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"8c7d99bc-47cc-44ea-9ccd-cb96c6cfcb73\",\n            \"attributes\": {\n                \"access_item\": \"actionable\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"75e5cd7b-8052-42c3-bfb6-c1ec6a5cb393\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"3c5d7a11-40c7-49e3-91e0-488d222caf06\",\n            \"attributes\": {\n                \"access_item\": \"read_only\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"c008b6e1-6635-4224-8e13-bc79e04a3b4b\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"75e5cd7b-8052-42c3-bfb6-c1ec6a5cb393\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"none\",\n                \"default_item\": \"none\",\n                \"email\": \"betty@boxesgalore.com\",\n                \"first_name\": \"Betty\",\n                \"is_archived\": false,\n                \"last_name\": \"Blue\",\n                \"notification_general\": \"actionable\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"42184055-c8d4-47ea-b175-278ba43e3efc\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"14cda559-c55f-4058-bb75-b3a9c1d4ad16\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"c008b6e1-6635-4224-8e13-bc79e04a3b4b\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"none\",\n                \"default_item\": \"none\",\n                \"email\": \"alice@boxesgalore.com\",\n                \"first_name\": \"Alice\",\n                \"is_archived\": false,\n                \"last_name\": \"Morrell\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"42184055-c8d4-47ea-b175-278ba43e3efc\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"17a90520-b831-44d3-b9ee-dce665217970\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 2,\n            \"page_size\": 25\n        }\n    }\n}"},{"id":"df513c19-e7e2-4bfd-b44e-5b9c8107612b","name":"List all item members","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 00:37:42 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"3432"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"438befe1-68c4-4c8d-a2a0-9ad9fd5335d1"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/?page%5Bnumber%5D=1\",\n        \"last\": \"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/?page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"28b83e4b-0754-4a95-bf3f-593a83eeeb3f\",\n            \"attributes\": {\n                \"access_item\": \"self_managed\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"471959cb-5127-4c05-8aeb-d8f27e482302\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"8c7d99bc-47cc-44ea-9ccd-cb96c6cfcb73\",\n            \"attributes\": {\n                \"access_item\": \"actionable\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"75e5cd7b-8052-42c3-bfb6-c1ec6a5cb393\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"8be4a672-e710-4cad-a6ba-fa6a25d3d62a\",\n            \"attributes\": {\n                \"access_item\": \"self_managed\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"6af2e691-1ee8-4b80-a522-5215cd1e1f24\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"3c5d7a11-40c7-49e3-91e0-488d222caf06\",\n            \"attributes\": {\n                \"access_item\": \"read_only\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"c008b6e1-6635-4224-8e13-bc79e04a3b4b\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"471959cb-5127-4c05-8aeb-d8f27e482302\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"jerry@fedex.com\",\n                \"first_name\": \"Jerry\",\n                \"is_archived\": false,\n                \"last_name\": \"Smith\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+16940026081\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"e7c69016-7bd9-4532-9451-c985b8dad541\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"1139b16c-204c-45b4-80df-3173f7935c66\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"6af2e691-1ee8-4b80-a522-5215cd1e1f24\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"none\",\n                \"default_item\": \"none\",\n                \"email\": \"michelle@fedex.com\",\n                \"first_name\": \"Michelle\",\n                \"is_archived\": false,\n                \"last_name\": \"Jones\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+17181980426\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"e7c69016-7bd9-4532-9451-c985b8dad541\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"b3b89df1-4e68-4a62-83cb-90a0174ed50e\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"75e5cd7b-8052-42c3-bfb6-c1ec6a5cb393\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"none\",\n                \"default_item\": \"none\",\n                \"email\": \"betty@boxesgalore.com\",\n                \"first_name\": \"Betty\",\n                \"is_archived\": false,\n                \"last_name\": \"Blue\",\n                \"notification_general\": \"actionable\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"42184055-c8d4-47ea-b175-278ba43e3efc\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"14cda559-c55f-4058-bb75-b3a9c1d4ad16\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"c008b6e1-6635-4224-8e13-bc79e04a3b4b\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"none\",\n                \"default_item\": \"none\",\n                \"email\": \"alice@boxesgalore.com\",\n                \"first_name\": \"Alice\",\n                \"is_archived\": false,\n                \"last_name\": \"Morrell\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"42184055-c8d4-47ea-b175-278ba43e3efc\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"17a90520-b831-44d3-b9ee-dce665217970\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 4,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"91da2029-bfa4-48a5-a9f5-b7c92c3838ce"},{"name":"Create an item member","id":"a8dc4cfc-901d-4474-a43d-5a3cbef2291b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"access_item\": \"{{access_item}}\"\n        },\n        \"relationships\": {\n            \"partnership_member\": {\n                \"data\": {\n                    \"id\": \"{{partnership_member_id}}\",\n                    \"type\": \"PartnershipMember\"\n                }\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"{{membership_id}}\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"ItemMember\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/{{item_id}}/members/","description":"Add a new item member to an item.\n\n## Data\n\nType: `ItemMember`\n\n### Attributes\n|Field|Type|Required|Description|\n|---|---|---|---|\n|access_item|string|yes|the default contact setting for notifications about this item. For more details see [additional docs](#f037d0bb-84c9-4c25-8603-7e8b2fe78343). Values: `actionable`, `none`, or `read_only`|\n\n### Relationships\n\n#### Requester\n\n*Field*: `requester`\n\n*Array*: No\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|uuid|yes|the id of the `Membership` that is creating this `ItemMember`|\n|type|string|yes|`Membership`|\n\n#### Partnership Member\n\n*Field*: `partnership_member`\n\n*Array*: No\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|uuid|yes|the id of the `PartnershipMembership` to be assigned to this `Item`|\n|type|string|yes|`PartnershipMember`|"},"response":[{"id":"bdd4c1b1-301d-4445-9521-a5bfd1539f19","name":"Create an item member","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"access_item\": \"actionable\"\n        },\n        \"relationships\": {\n            \"partnership_member\": {\n                \"data\": {\n                    \"id\": \"411be97f-59c7-4f20-8458-4679a28dfdf6\",\n                    \"type\": \"PartnershipMember\"\n                }\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"b3b89df1-4e68-4a62-83cb-90a0174ed50e\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"ItemMember\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 00:46:11 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"766"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"a5ce93f2-4ea9-445d-be55-c1e4440ff3ab"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"ItemMember\",\n        \"id\": \"7133c1b1-4946-4e28-98c2-a5597543c2ad\",\n        \"attributes\": {\n            \"access_item\": \"actionable\"\n        },\n        \"relationships\": {\n            \"partnership_member\": {\n                \"data\": {\n                    \"type\": \"PartnershipMember\",\n                    \"id\": \"411be97f-59c7-4f20-8458-4679a28dfdf6\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"411be97f-59c7-4f20-8458-4679a28dfdf6\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"none\",\n                \"default_item\": \"none\",\n                \"email\": \"phil@boxesgalore.com\",\n                \"first_name\": \"Phil\",\n                \"is_archived\": false,\n                \"last_name\": \"Jeffers\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"42184055-c8d4-47ea-b175-278ba43e3efc\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"8d1be46a-e380-4dd7-82ff-1f373fa9f959\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"a8dc4cfc-901d-4474-a43d-5a3cbef2291b"},{"name":"Update an item member permission","id":"c90b1c7c-e1bb-47b9-9d44-f35a6aa4b2f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"access_item\": \"{{access_item}}\"\n        },\n        \"id\": \"{{item_member_id}}\",\n        \"relationships\": {\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"{{membership_id}}\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"ItemMember\"\n    }\n}"},"url":"https://api.sandbox.routable.com/items/{{item_id}}/members/{{item_member_id}}/","description":"Updates the notification setting for an item member.\n\n## Data\n\nType: `ItemMember`\n\n### Attributes\n|Field|Type|Required|Description|\n|---|---|---|---|\n|access_item|string|yes|the updated contact  setting for notifications about this item. For more details see [additional docs](#f037d0bb-84c9-4c25-8603-7e8b2fe78343). Values: `actionable`, `none`, or `read_only`|"},"response":[{"id":"f3c8fecd-aa72-4222-9f42-fa39eb2d8554","name":"Update an item member permission","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"access_item\": \"none\"\n        },\n        \"id\": \"7133c1b1-4946-4e28-98c2-a5597543c2ad\",\n        \"relationships\": {\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"b3b89df1-4e68-4a62-83cb-90a0174ed50e\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"ItemMember\"\n    }\n}"},"url":"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/7133c1b1-4946-4e28-98c2-a5597543c2ad/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 00:47:31 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"760"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PUT, PATCH, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"219f8f7f-efa9-4278-b0be-4ba000f7fe37"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"ItemMember\",\n        \"id\": \"7133c1b1-4946-4e28-98c2-a5597543c2ad\",\n        \"attributes\": {\n            \"access_item\": \"none\"\n        },\n        \"relationships\": {\n            \"partnership_member\": {\n                \"data\": {\n                    \"type\": \"PartnershipMember\",\n                    \"id\": \"411be97f-59c7-4f20-8458-4679a28dfdf6\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"411be97f-59c7-4f20-8458-4679a28dfdf6\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"none\",\n                \"default_item\": \"none\",\n                \"email\": \"phil@boxesgalore.com\",\n                \"first_name\": \"Phil\",\n                \"is_archived\": false,\n                \"last_name\": \"Jeffers\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"42184055-c8d4-47ea-b175-278ba43e3efc\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"8d1be46a-e380-4dd7-82ff-1f373fa9f959\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"c90b1c7c-e1bb-47b9-9d44-f35a6aa4b2f2"},{"name":"Get an item member","id":"2ec7fc4d-1a13-475b-a6a6-dbc8d3863cd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/items/{{item_id}}/members/{{item_member_id}}/","description":"Returns details about an individual ItemMember assigned to this item."},"response":[{"id":"122ecdc0-92a2-40ec-ab74-ce91ef7a59ae","name":"Get an item member","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/items/71e7d950-657c-4b8a-a097-ca736441a2e3/members/28b83e4b-0754-4a95-bf3f-593a83eeeb3f/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 19 Jan 2021 00:39:18 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"822"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PUT, PATCH, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"64e4e79a-d228-41ca-acab-5351350dedf5"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cache-Control","value":"no-cache, cf-no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"ItemMember\",\n        \"id\": \"28b83e4b-0754-4a95-bf3f-593a83eeeb3f\",\n        \"attributes\": {\n            \"access_item\": \"self_managed\"\n        },\n        \"relationships\": {\n            \"partnership_member\": {\n                \"data\": {\n                    \"type\": \"PartnershipMember\",\n                    \"id\": \"471959cb-5127-4c05-8aeb-d8f27e482302\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"471959cb-5127-4c05-8aeb-d8f27e482302\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"jerry@fedex.com\",\n                \"first_name\": \"Jerry\",\n                \"is_archived\": false,\n                \"last_name\": \"Smith\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+16940026081\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"e7c69016-7bd9-4532-9451-c985b8dad541\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"1139b16c-204c-45b4-80df-3173f7935c66\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"2ec7fc4d-1a13-475b-a6a6-dbc8d3863cd0"}],"id":"6e06e281-2979-46b7-980e-dee82f8706bd","description":"The `ItemMember` object is a child of an Item and gives specific information about a member of an Item.\n\n**Note: This object can represent members from either side of the Partnership.**\n\n### Attributes\n#### Access Item\nThis attribute enables you to add members to an item that should only be able to view a payment as opposed to act on it.\n\n| Option      | Description |\n| ----------- | ----------- |\n| actionable      | The ItemMember can act on Item related notifications.      |\n| none   | The ItemMember will not receive Item related notifications.        |\n| read_only   | The ItemMember has read only access to Item related notifications.        |","event":[{"listen":"prerequest","script":{"id":"46cfa218-4e79-409e-8f58-b77699fb8227","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"410a4161-8e46-4320-83e6-47c7dd66a7cd","type":"text/javascript","exec":[""]}}],"_postman_id":"6e06e281-2979-46b7-980e-dee82f8706bd"},{"name":"List all items","id":"066f4cea-963e-4773-8d5b-30e57237251d","request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/items/","description":"Returns a list of all the items for your company.\n\n## Parameters\n\nAdd one of those optional parameters to filter the items.\n\n|Name|Type|Description|\n|---|---|---|\n|kind|`\"payable\"` or `\"receivable\"`|Filter by kind|\n|status|See **Item statuses**|Filter items by status|\n|amount_due|Number|Filter items with `amount_due = x`|\n|amount_due__gt|Number|Filter items with `amount_due > x`|\n|amount_due__gte|Number|Filter items with `amount_due >= x`|\n|amount_due__lt|Number|Filter items with `amount_due < x`|\n|amount_due__lte|Number|Filter items with `amount_due <= x`|\n|date_due|date (YYYY-MM-DD)|Filter items with `date_due = date`|\n|date_due__gt|date (YYYY-MM-DD)|Filter items with `date_due > date`|\n|date_due__gte|date (YYYY-MM-DD)|Filter items with `date_due >= date`|\n|date_due__lt|date (YYYY-MM-DD)|Filter items with `date_due < date`|\n|date_due__lte|date (YYYY-MM-DD)|Filter items with `date_due <= date`|"},"response":[{"id":"46a7d074-5d83-4ad9-955e-24557e405400","name":"List all items","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/items/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 13:13:55 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1261"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"d0fe5bfc-dbac-4253-aede-9ca0b1d2c274"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/items/?page%5Bnumber%5D=1\",\n        \"last\": \"https://api.sandbox.routable.com/items/?page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"Item\",\n            \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\",\n            \"attributes\": {\n                \"amount\": \"5000.00\",\n                \"amount_due\": \"5000.00\",\n                \"amount_paid\": \"0.00\",\n                \"date_due\": \"2020-06-16\",\n                \"date_expected\": null,\n                \"date_externally_paid\": null,\n                \"date_issued\": \"2020-06-16\",\n                \"date_scheduled\": null,\n                \"date_status_change\": \"2020-06-16T13:12:20.259860Z\",\n                \"days_until_due\": 0,\n                \"has_attachments\": false,\n                \"invoice_number\": null,\n                \"is_creator\": true,\n                \"kind\": \"payable\",\n                \"payment_delivery_method\": \"ach\",\n                \"payment_delivery_option\": \"ach_expedited\",\n                \"reference\": \"Invoice #4245\",\n                \"status\": \"pending\"\n            },\n            \"relationships\": {\n                \"approvals\": {\n                    \"data\": []\n                },\n                \"partner\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                },\n                \"partnership\": {\n                    \"data\": {\n                        \"type\": \"Partnership\",\n                        \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\",\n            \"attributes\": {\n                \"name\": \"InstaWork\"\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\",\n            \"attributes\": {\n                \"customer_ref\": null,\n                \"name\": \"InstaWork\",\n                \"vendor_ref\": null\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 1,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"066f4cea-963e-4773-8d5b-30e57237251d"},{"name":"List all items with a partnership","id":"c8ba2058-26f9-495e-aa7e-cfaf243760f6","request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/partnerships/{{partnership_id}}/items/","description":"Returns a list of all the items with a partnership."},"response":[{"id":"5d65ef71-8522-49b7-aae0-b4e7455bab5b","name":"List all items with a partnership","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/items/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 13:14:20 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1361"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"459568b5-3805-43a9-b978-ff2dd839383f"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/items/?page%5Bnumber%5D=1\",\n        \"last\": \"https://api.sandbox.routable.com/partnerships/97f318b5-d438-4205-90ed-20c889ef676b/items/?page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"Item\",\n            \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\",\n            \"attributes\": {\n                \"amount\": \"5000.00\",\n                \"amount_due\": \"5000.00\",\n                \"amount_paid\": \"0.00\",\n                \"date_due\": \"2020-06-16\",\n                \"date_expected\": null,\n                \"date_externally_paid\": null,\n                \"date_issued\": \"2020-06-16\",\n                \"date_scheduled\": null,\n                \"date_status_change\": \"2020-06-16T13:12:20.259860Z\",\n                \"days_until_due\": 0,\n                \"has_attachments\": false,\n                \"invoice_number\": null,\n                \"is_creator\": true,\n                \"kind\": \"payable\",\n                \"payment_delivery_method\": \"ach\",\n                \"payment_delivery_option\": \"ach_expedited\",\n                \"reference\": \"Invoice #4245\",\n                \"status\": \"pending\"\n            },\n            \"relationships\": {\n                \"approvals\": {\n                    \"data\": []\n                },\n                \"partner\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                },\n                \"partnership\": {\n                    \"data\": {\n                        \"type\": \"Partnership\",\n                        \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\",\n            \"attributes\": {\n                \"name\": \"InstaWork\"\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\",\n            \"attributes\": {\n                \"customer_ref\": null,\n                \"name\": \"InstaWork\",\n                \"vendor_ref\": null\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 1,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"c8ba2058-26f9-495e-aa7e-cfaf243760f6"},{"name":"Get item","id":"c9d247f1-9364-49d3-82cb-5d579bcf2e4c","request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/items/{{item_id}}/","description":"Get a specific item by id."},"response":[{"id":"454a9d28-9e4d-4649-8a73-cd09d8f7036f","name":"Get item","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/items/49bac92a-9f8f-4150-ac9c-44a6925f140d/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 13:14:55 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"4013"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"2f54d4d1-b0c1-4c8f-bbe1-612975b03944"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\",\n        \"attributes\": {\n            \"amount\": \"5000.00\",\n            \"amount_due\": \"5000.00\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2020-06-16\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2020-06-16\",\n            \"date_scheduled\": null,\n            \"date_sent\": null,\n            \"date_status_change\": \"2020-06-16T13:12:20.259860Z\",\n            \"days_until_due\": 0,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"has_attachments\": false,\n            \"invoice_number\": null,\n            \"is_creator\": true,\n            \"kind\": \"payable\",\n            \"ledger_ref\": null,\n            \"ledger_status\": \"no_ledger\",\n            \"payment_delivery_method\": \"ach\",\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_delivery_option\": \"ach_expedited\",\n            \"payment_terms\": null,\n            \"reference\": \"Invoice #4245\",\n            \"status\": \"pending\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2020-06-16T13:12:20.259860Z\",\n                    \"status\": \"pending\"\n                }\n            ]\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 0\n                },\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"f7c290ee-758f-4000-a18e-3fcc2ab43412\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"a224726a-7588-4448-a1a4-d8f1ef78a3e7\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\"\n                }\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\",\n            \"attributes\": {\n                \"name\": \"InstaWork\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\",\n            \"attributes\": {\n                \"account_number\": \"56854521185\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"021000021\"\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\",\n            \"attributes\": {\n                \"account_number\": \"***7374\",\n                \"institution_name\": \"Bank Of America, N.A.\",\n                \"routing_number\": \"122000661\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"a224726a-7588-4448-a1a4-d8f1ef78a3e7\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"f7c290ee-758f-4000-a18e-3fcc2ab43412\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\",\n            \"attributes\": {\n                \"customer_ref\": null,\n                \"name\": \"InstaWork\",\n                \"vendor_ref\": null\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"michelle@fedex.com\",\n                \"first_name\": \"Michelle\",\n                \"is_archived\": false,\n                \"last_name\": \"Jones\",\n                \"phone_number\": {\n                    \"number\": \"+18738207968\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"zaldy@instawork.com\",\n                \"first_name\": \"Zaldy\",\n                \"is_archived\": false,\n                \"last_name\": \"Worker\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"fd04d875-9970-4017-9eec-bf8fcee4ac4f\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"c9d247f1-9364-49d3-82cb-5d579bcf2e4c"},{"name":"Create an item","event":[{"listen":"test","script":{"id":"c281e458-d036-4c3f-9591-fe7f54089b83","exec":["var jsonData = pm.response.json();","","pm.environment.set(\"item_id\", jsonData.data.id);"],"type":"text/javascript"}}],"id":"44a6a2cf-76ed-4914-9829-8eac482bcc8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"attributes\": {\r\n\t\t\t\"amount\": {{amount}},\r\n\t\t\t\"funding_provider_memo\": \"{{ach_addenda_value}}\",\r\n\t\t\t\"kind\": \"{{kind}}\",\r\n\t\t\t\"payment_delivery_option\": \"{{payment_delivery_option}}\",\r\n\t\t\t\"reference\": \"{{reference}}\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"attachments\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"attributes\": {\r\n\t\t\t\t\t\t\t\"file\": \"{{base64_data_uri}}\",\r\n\t\t\t\t\t\t\t\"filename\": \"{{filename}}\"\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"type\": \"ItemAttachment\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"funding_account\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{funding_account_id}}\",\r\n\t\t\t\t\t\"type\": \"FundingAccount\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"line_items\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"attributes\": {\r\n\t\t\t\t\t\t\t\"amount\": {{line_amount}},\r\n\t\t\t\t\t\t\t\"description\": \"{{description}}\",\r\n\t\t\t\t\t\t\t\"quantity\": {{quantity}},\r\n\t\t\t\t\t\t\t\"style\": \"item\",\r\n\t\t\t\t\t\t\t\"unit_price\": {{unit_price}}\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"type\": \"LineItem\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"partnership\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{partnership_id}}\",\r\n\t\t\t\t\t\"type\": \"Partnership\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"partner_receivable_account\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{partner_receivable_account_id}}\",\r\n\t\t\t\t\t\"type\": \"FundingAccount\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n            \"item_approvers\": {\r\n                \"data\": [\r\n                    {\r\n                        \"type\": \"ItemApprover\",\r\n                        \"relationships\": {\r\n                            \"level\": {\r\n                                \"data\": {\r\n                                    \"id\": \"{{first_item_approval_level_id}}\",\r\n                                    \"type\": \"CompanySettingsItemApprovalLevel\"\r\n                                }\r\n                            },\r\n                            \"membership\": {\r\n                                \"data\": {\r\n                                    \"id\": \"{{first_item_approval_level_approver_id}}\",\r\n                                    \"type\": \"Membership\"\r\n                                }\r\n                            }\r\n                        }\r\n                    },\r\n                    {\r\n                        \"type\": \"ItemApprover\",\r\n                        \"relationships\": {\r\n                            \"level\": {\r\n                                \"data\": {\r\n                                    \"id\": \"{{second_item_approval_level_id}}\",\r\n                                    \"type\": \"CompanySettingsItemApprovalLevel\"\r\n                                }\r\n                            },\r\n                            \"membership\": {\r\n                                \"data\": {\r\n                                    \"id\": \"{{second_item_approval_level_approver_id}}\",\r\n                                    \"type\": \"Membership\"\r\n                                }\r\n                            }\r\n                        }\r\n                    }\r\n                ]\r\n            },\r\n            \"item_members\": {\r\n                \"data\": [\r\n                    {                    \t\r\n                        \"attributes\": {\r\n                    \t\t\"access_item\": \"{{access_item}}\"\r\n                    \t},\r\n                        \"relationships\": {\r\n                            \"partnership_member\": {\r\n                                \"data\": {\r\n                                    \"id\": \"{{partnership_member_id}}\",\r\n                                    \"type\": \"PartnershipMember\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"ItemMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"{{membership_id}}\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            },\r\n            \"tags\": {\r\n                \"data\": [\r\n                    {\r\n                        \"id\": \"{{tag_id}}\",\r\n                        \"type\": \"Tag\"\r\n                    }\r\n                ]\r\n            }\r\n\t\t},\r\n\t\t\"type\": \"Item\"\r\n\t},\r\n\t\"meta\": {\r\n\t\t\"message\": \"{{message}}\"\r\n\t}\r\n}"},"url":"https://api.sandbox.routable.com/items/","description":"<!-- Important: The following heading has been added to support stable, named links within the API docs -->\n###### Create a new item\nItems can identified as `payable` or `receivable` in the `kind` attribute. Different attributes are required depending on the kind of item you are creating.\n\n&nbsp;\n\n### There are *two* options to create a payable:\n1. Allow your vendor to choose how to accept the payment\n(i.e. an email is sent to the vendor asking them to enter their entity, tax, and payment information).\n\n1. Set how the vendor gets paid\n(i.e. the vendor will only receive a confirmation email depicting the payment method you selected).\n\n_When submitting a new payable with Option 1 - you need to include the `payment_delivery_methods_accepted` field and specify which methods (`ach`, `check`) you wish to accept. This will limit the options available to the vendor to choose from when entering their payment information._\n\n_When submitting a new payable with Option 2 - you need to include the `payment_delivery_option` and `partner_receivable_account` fields to specify how the payment will be made. This will set the payment method you specified without asking your vendor to provide any information._\n\n&nbsp;\n\n## Data\n\nType: `Item`\n\n&nbsp;\n\n### Attributes\n\nThe `attributes` object defines details about the item.\n\n| Field                             | Type         | Required    | Description                                                  |\n| --------------------------------- | ------------ | ----------- | ------------------------------------------------------------ |\n| amount                            | number       | yes         | The total amount for this item.                              |\n| date_due                          | string       | receivable  | The due date for this item.                                  |\n| external_ref                      | string       | no          | A unique reference for matching our record with yours.       |\n| funding_provider_memo             | string       | no          |the ACH Addenda record providing additional account holder or payment information to the receiver; this value is only valid for `payable`-type items to `business`-type companies.|\n| invoice_number                    | string       | no          | Your invoice number for this item.                           |\n| kind                              | string       | yes         | Identifies the item type: `payable` or `receivable`.         |\n| payment_delivery_methods_accepted | string array | conditional | For `receivable` items - An array of payment methods that you will accept from your customer.<br />For `payable` items - Defines the payment methods that your customer can select to receive payment.<br />Accepted values are `ach` and `check`. |\n| payment_delivery_option           | string       | conditional | Defines the payment method you will use to send a payment for a `payable` item. The `partner_receivable_account` object is required if you use this option. |\n| payment_terms                     | string       | receivable  | The payment terms for this item.                             |\n| reference                         | string       | no          | A descriptive reference for this item.                       |\n\n&nbsp;\n\n### Relationships\n\nA list of objects that define details about the item.\n\n#### Attachments (*not required*)\n\n*Field*: `attachments`\n\n*Array*: Yes\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|file|string|yes|base64 data URI|\n|filename|string|yes|the name of the file|\n|type|string|yes|`ItemAttachment`|\n\nExample of the isolated `attachments` payload:\n```\n{\n  [...],\n  \"attachments\": {\n    \"data\": [\n      {\n        \"attributes\": {\n          \"file\": \"data:application/pdf;base64,{{base64_encoded_file}}\",\n          \"filename\": \"{{filename}}\"\n        },\n        \"type\": \"ItemAttachment\"\n      }\n    ]\n  }\n}\n```\n\n\n#### Funding Account\n\nIdentifies the bank account that will fund the payment or accept the deposit.\n\n*Field*: `funding_account`\n\n*Array*: no\n\n| Field | Type   | Required | Description                                                  |\n| ----- | ------ | -------- | ------------------------------------------------------------ |\n| id    | string | yes      | The Routable generated identifier of the `FundingAccount` that funds will be withdrawn from or deposited into. |\n| type  | string | yes      | `FundingAccount`                                             |\n\n&nbsp;\n\n#### Item Approvers (_conditional_)\n\nThis field should be specified as an array of `ItemApprover` relationships based on the dollar amount of the item being created.\n\n- If an approval level requires \"all\" approvers, `ItemApprover` relationships for each qualified approver must be included in the payload.\n- If an approval level requires \"any\" approvers, at least one `ItemApprover` relationship must be included in the payload, but more than one can be specified.\n\nApproval level and approver IDs can be retrieved via the \"Get item approval settings\" endpoint.\n\n_Field_: `item_approvers`\n\n_Array_: yes\n\n| Field | Type   | Required | Description    |\n| ----- | ------ | -------- | -------------- |\n| type  | string | yes      | `ItemApprover` |\n\n##### Relationships\n\n_Field_: `level`\n\n| Field | Type   | Required | Description                                                                                                   |\n| ----- | ------ | -------- | ------------------------------------------------------------------------------------------------------------- |\n| id    | string | yes      | the ID for the `CompanySettingsItemApprovalLevel` that the item qualifies for based on dollar amount and kind |\n| type  | string | yes      | `CompanySettingsItemApprovalLevel`                                                                            |\n\n_Field_: `membership`\n\n| Field | Type   | Required | Description                                                                 |\n| ----- | ------ | -------- | --------------------------------------------------------------------------- |\n| id    | string | yes      | the ID for the `Membership` for the approver assigned to the approval level |\n| type  | string | yes      | `Membership`                                                                |\n\n#### Item Members\n\nIdentifies the points-of-contact at the partner company who will receive notifications for this item. This field should be specified as an array of nested `PartnershipMember` resources (see the payload and example below).\n\n*Field*: `item_members`\n\n##### Data\n\nAn array that includes definitions of each item member.\n*Array*: yes\n\n| Field         | Type   | Required | Description                                                  |\n| ------------- | ------ | -------- | ------------------------------------------------------------ |\n| type          | string | yes      | `ItemMember`                                                 |\n\n###### Attributes\n\n| Field         | Type   | Required | Description                                                  |\n| ------------- | ------ | -------- | ------------------------------------------------------------ |\n| access_item   | string | yes      | the level of access the `PartnershipMember` should have to making changes to and receiving notifications about the item. For more details see [additional docs](#f037d0bb-84c9-4c25-8603-7e8b2fe78343). Values: `actionable`, `none`, and `read_only`.|\n\n###### Relationships\n\n_Field_: `partnership_member`\n\n| Field | Type   | Required | Description                                                                                                   |\n| ----- | ------ | -------- | ------------------------------------------------------------------------------------------------------------- |\n| id    | string | yes      | the ID for the `PartnershipMember` |\n| type  | string | yes      | `PartnershipMember`                                                                            |\n\n#### Line Items\n\nA list of objects that identify the goods shipped and/or services rendered that are covered by the item.\n\n*Field*: `line_items`\n\n##### Data\n\nAn array that includes definitions of each line item.\n*Array*: yes\n\n###### Attributes\n\n| Field       | Type   | Required | Description                                     |\n| ----------- | ------ | -------- | ----------------------------------------------- |\n| amount      | number | yes      | The total amount for this line item.            |\n| description | string | yes      | The description for this line item.             |\n| quantity    | number | yes      | The quantity of this line item.                 |\n| style       | string | yes      | The style of this line item: currently, `item`. |\n| unit_price  | number | yes      | The unit price of this line item.               |\n\n###### Field\n\n| Field | Type   | Required | Description                                      |\n| ----- | ------ | -------- | ------------------------------------------------ |\n| type  | string | yes      | The value for this attribute must be `LineItem`. |\n\n#### Partnership\n\nThe partner company that will receive the payment or invoice.\n\n*Field*: `partnership`\n\n*Array*: no\n\n| Field | Type   | Required | Description                                                  |\n| ----- | ------ | -------- | ------------------------------------------------------------ |\n| id    | string | yes      | The Routable generated identifier of the `Partnership` this item will be associated with. |\n| type  | string | yes      | `Partnership`                                                |\n\n&nbsp;\n\n#### Partner Receivable Account (*conditional*)\n\nThe partner company's bank account that will receive the funds. Required if a `payment_delivery_option` is specified in the `attributes` object.\n\n*Field*: `partner_receivable_account`\n\n*Array*: no\n\n| Field | Type   | Required | Description                                                  |\n| ----- | ------ | -------- | ------------------------------------------------------------ |\n| id    | string | yes      | The Routable generated identifier for the `FundingAccount` of the `Partnership` to send this item to. |\n| type  | string | yes      | `FundingAccount`                                             |\n\n&nbsp;\n\n#### Requester\n\nIdentifies the person who is creating the item.\n\n*Field*: `requester`\n\n*Array*: no\n\n| Field | Type   | Required | Description                                                  |\n| ----- | ------ | -------- | ------------------------------------------------------------ |\n| id    | string | yes      | The Routable generated identifier of the `Membership` who is sending this item. |\n| type  | string | yes      | `Membership`                                                 |\n\n#### Tags\n\n*Field*: `tags`\n\n*Array*: yes\n\n| Field | Type   | Required | Description                                                                  |\n| ----- | ------ | -------- | ---------------------------------------------------------------------------- |\n| id    | string | yes      | the existing `Tag` that will be associated with the Item after it is created |\n| type  | string | yes      | `Tag`                                                                        |\n\n## Meta\n\n| Field   | Type   | Required | Description                                     |\n| ------- | ------ | -------- | ----------------------------------------------- |\n| message | string | no       | An optional message to send along in the email. |\n\n## Response\n\nFor customers who have set up a ledger integration, Routable returns additional information in the response body as part of the `attributes` object.\n\nIf you're integrated with a ledger, see the specific instructions for your ledger:\n\n- [Creating an item with Xero](#52e46ac9-8e86-489d-8b5d-79ff7ee80925)\n\n- [Creating an item with QBO](#f328c6a8-0f8b-400d-be33-d22856249943)\n\n- [Creating an item with NetSuite](#23b00c9c-8ee6-419f-88ff-60f41fe4d75f)"},"response":[{"id":"20e7a1b7-446a-48c7-9cb1-2e19192f9122","name":"Create an item requiring a single level of approval","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{auth_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"amount\": \"6.00\",\r\n            \"date_due\": \"2021-01-29\",\r\n            \"date_issued\": \"2020-12-30\",\r\n            \"invoice_number\": \"IN-00044\",\r\n            \"kind\": \"payable\",\r\n            \"payment_delivery_methods_accepted\": [\r\n                \"ach\",\r\n                \"check\"\r\n            ],\r\n            \"reference\": \"Bill #00044\"\r\n        },\r\n        \"relationships\": {\r\n            \"funding_account\": {\r\n                \"data\": {\r\n                    \"id\": \"4cb353fb-4606-4f94-b6ae-2396fba47047\",\r\n                    \"type\": \"FundingAccount\"\r\n                }\r\n            },\r\n            \"line_items\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"amount\": \"6.00\",\r\n                            \"description\": \"Services Rendered to Date\",\r\n                            \"style\": \"item\"\r\n                        },\r\n                        \"type\": \"LineItem\"\r\n                    }\r\n                ]\r\n            },\r\n            \"item_approvers\": {\r\n                \"data\": [\r\n                    {\r\n                        \"type\": \"ItemApprover\",\r\n                        \"relationships\": {\r\n                            \"level\": {\r\n                                \"data\": {\r\n                                    \"id\": \"ed6ec8e6-cf7c-4528-8f5e-671de85cc91d\",\r\n                                    \"type\": \"CompanySettingsItemApprovalLevel\"\r\n                                }\r\n                            },\r\n                            \"membership\": {\r\n                                \"data\": {\r\n                                    \"id\": \"c4488134-6721-4c5d-8855-06f268c1a7f2\",\r\n                                    \"type\": \"Membership\"\r\n                                }\r\n                            }\r\n                        }\r\n                    }\r\n                ]\r\n            },\r\n            \"item_members\": {\r\n                \"data\": [\r\n                    {\r\n                    \t\"attributes\": {\r\n                    \t\t\"access_item\": \"actionable\"\r\n                    \t},\r\n                        \"relationships\": {\r\n                            \"partnership_member\": {\r\n                                \"data\": {\r\n                                    \"id\": \"d5be4ef7-8d81-4bfa-b451-5a1aeda9cad0\",\r\n                                    \"type\": \"PartnershipMember\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"ItemMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"partnership\": {\r\n                \"data\": {\r\n                    \"id\": \"6945f369-14cc-4d3a-9114-ec74f263f55b\",\r\n                    \"type\": \"Partnership\"\r\n                }\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"8674b807-8240-4756-ad05-a1b84cf6bf11\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Item\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"a8cf6fd0-a752-4577-be64-867d1640ca83\",\n        \"attributes\": {\n            \"amount\": \"6.00\",\n            \"amount_due\": \"6.00\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2021-01-29\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2020-12-30\",\n            \"date_scheduled\": null,\n            \"date_sent\": null,\n            \"date_status_change\": \"2020-12-30T17:19:35.243904Z\",\n            \"days_until_due\": 30,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"has_attachments\": false,\n            \"invoice_number\": \"Invoice 00044\",\n            \"is_creator\": true,\n            \"kind\": \"payable\",\n            \"ledger_ref\": null,\n            \"ledger_status\": \"no_ledger\",\n            \"payment_delivery_method\": null,\n            \"payment_delivery_methods_accepted\": [\n                \"ach\",\n                \"check\"\n            ],\n            \"payment_delivery_option\": null,\n            \"payment_terms\": null,\n            \"reference\": \"Bill #00044\",\n            \"status\": \"needs_approval\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2020-12-30T17:19:35.243904Z\",\n                    \"status\": \"needs_approval\"\n                }\n            ]\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": [\n                    {\n                        \"type\": \"ItemSideApproval\",\n                        \"id\": \"3a5a54db-284c-42af-8da1-9f8f29b2c3d8\"\n                    }\n                ]\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 0\n                },\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"4cb353fb-4606-4f94-b6ae-2396fba47047\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"de54b381-3fd7-4b32-8da4-227f3701755c\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"14947e16-28bc-4803-80f6-75650ff79a12\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"fbdf2717-65e2-4d4b-a0f4-6f8acf297349\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": null\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"6945f369-14cc-4d3a-9114-ec74f263f55b\"\n                }\n            },\n            \"tag_links\": {\n                \"data\": []\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"fbdf2717-65e2-4d4b-a0f4-6f8acf297349\",\n            \"attributes\": {\n                \"name\": \"Acme Publishing\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"4cb353fb-4606-4f94-b6ae-2396fba47047\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"44e018e6-0cb7-48f4-a9df-947a4108c7e2\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"24a6e83e-2336-44c4-bfbd-3bc9c893ebf1\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"44e018e6-0cb7-48f4-a9df-947a4108c7e2\",\n            \"attributes\": {\n                \"account_number\": \"55555555555\",\n                \"institution_name\": \"First Bank\",\n                \"routing_number\": \"555555555\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"14947e16-28bc-4803-80f6-75650ff79a12\",\n            \"attributes\": {\n                \"access_item\": \"actionable\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"d5be4ef7-8d81-4bfa-b451-5a1aeda9cad0\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"de54b381-3fd7-4b32-8da4-227f3701755c\",\n            \"attributes\": {\n                \"access_item\": \"self_managed\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"a816e131-f4f1-4c3b-a791-313dc72c1f35\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemSideApproval\",\n            \"id\": \"3a5a54db-284c-42af-8da1-9f8f29b2c3d8\",\n            \"attributes\": {\n                \"approval_date\": null,\n                \"can_approve\": true,\n                \"created\": \"2020-06-16T13:12:20.259970Z\",\n                \"has_approved\": false,\n                \"level_id\": \"9024dd1b-a932-4821-8079-e5687d08e7a2\",\n                \"level_position\": 1,\n                \"level_type\": \"any\",\n                \"was_previously_approved\": false\n            },\n            \"relationships\": {\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"c4488134-6721-4c5d-8855-06f268c1a7f2\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"6945f369-14cc-4d3a-9114-ec74f263f55b\",\n            \"attributes\": {\n                \"customer_ref\": null,\n                \"name\": \"Acme Publishing\",\n                \"vendor_ref\": null\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"a816e131-f4f1-4c3b-a791-313dc72c1f35\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"s.lee@yourcompany.com\",\n                \"first_name\": \"Samuel\",\n                \"is_archived\": false,\n                \"last_name\": \"Lee\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+19178675309\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"24a6e83e-2336-44c4-bfbd-3bc9c893ebf1\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"8674b807-8240-4756-ad05-a1b84cf6be27\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"d5be4ef7-8d81-4bfa-b451-5a1aeda9cad0\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"read_only\",\n                \"email\": \"r.summers@acmepublishing.com\",\n                \"first_name\": \"Rachel\",\n                \"is_archived\": false,\n                \"last_name\": \"Summers\",\n                \"notification_general\": \"actionable\",\n                \"phone_number\": {\n                    \"number\": \"+15018675309\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"fbdf2717-65e2-4d4b-a0f4-6f8acf297349\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"caa38983-d9fe-494c-818f-8870877ec226\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"},{"id":"d24c3364-af34-4c37-8a98-1726a58406ad","name":"Create a payable item with ACH Addenda value","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"amount\": \"381.00\",\r\n            \"date_due\": \"2021-01-29\",\r\n            \"date_issued\": \"2020-12-30\",\r\n            \"funding_provider_memo\": \"Company ink replacement\",\r\n            \"invoice_number\": \"IN-00047\",\r\n            \"kind\": \"payable\",\r\n            \"payment_delivery_methods_accepted\": [\r\n                \"ach\",\r\n                \"check\"\r\n            ],\r\n            \"reference\": \"Bill #00047\"\r\n        },\r\n        \"relationships\": {\r\n            \"funding_account\": {\r\n                \"data\": {\r\n                    \"id\": \"4cb353fb-4606-4f94-b6ae-2396fba47047\",\r\n                    \"type\": \"FundingAccount\"\r\n                }\r\n            },\r\n            \"line_items\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"amount\": \"381.00\",\r\n                            \"description\": \"Toner Ink\",\r\n                            \"style\": \"item\"\r\n                        },\r\n                        \"type\": \"LineItem\"\r\n                    }\r\n                ]\r\n            },\r\n            \"item_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"access_item\": \"actionable\"\r\n                        },\r\n                        \"relationships\": {\r\n                            \"partnership_member\": {\r\n                                \"data\": {\r\n                                    \"id\": \"d5be4ef7-8d81-4bfa-b451-5a1aeda9cad0\",\r\n                                    \"type\": \"PartnershipMember\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"ItemMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"partnership\": {\r\n                \"data\": {\r\n                    \"id\": \"6945f369-14cc-4d3a-9114-ec74f263f55b\",\r\n                    \"type\": \"Partnership\"\r\n                }\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"8674b807-8240-4756-ad05-a1b84cf6be27\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Item\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"8eaf6f49-7080-4d1d-88d7-fd57998e56e3\",\n        \"attributes\": {\n            \"amount\": \"381.00\",\n            \"amount_due\": \"381.00\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2021-01-29\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2020-12-30\",\n            \"date_scheduled\": null,\n            \"date_sent\": \"2020-12-30\",\n            \"date_status_change\": \"2020-12-30T22:36:13.706209Z\",\n            \"days_until_due\": 30,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"has_attachments\": false,\n            \"invoice_number\": \"IN-00047\",\n            \"is_creator\": true,\n            \"kind\": \"payable\",\n            \"ledger_ref\": null,\n            \"ledger_status\": \"no_ledger\",\n            \"payment_delivery_method\": null,\n            \"payment_delivery_methods_accepted\": [\n                \"ach\",\n                \"check\"\n            ],\n            \"payment_delivery_option\": null,\n            \"payment_terms\": null,\n            \"reference\": \"Bill #00047\",\n            \"status\": \"pending\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2020-12-30T22:36:13.706209Z\",\n                    \"status\": \"pending\"\n                }\n            ]\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 0\n                },\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"4cb353fb-4606-4f94-b6ae-2396fba47047\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"695dbc37-a33c-4ed7-8afc-7bf53b22e8fe\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"fc6e2b23-3848-4a01-94be-ca1d2157621a\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"fbdf2717-65e2-4d4b-a0f4-6f8acf297349\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": null\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"6945f369-14cc-4d3a-9114-ec74f263f55b\"\n                }\n            },\n            \"tag_links\": {\n                \"data\": []\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"fbdf2717-65e2-4d4b-a0f4-6f8acf297349\",\n            \"attributes\": {\n                \"name\": \"Acme Publishing\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"4cb353fb-4606-4f94-b6ae-2396fba47047\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"44e018e6-0cb7-48f4-a9df-947a4108c7e2\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"24a6e83e-2336-44c4-bfbd-3bc9c893ebf1\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"44e018e6-0cb7-48f4-a9df-947a4108c7e2\",\n            \"attributes\": {\n                \"account_number\": \"55555555555\",\n                \"institution_name\": \"Centennial Bank\",\n                \"routing_number\": \"555555555\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"695dbc37-a33c-4ed7-8afc-7bf53b22e8fe\",\n            \"attributes\": {\n                \"access_item\": \"self_managed\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"a816e131-f4f1-4c3b-a791-313dc72c1f35\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"fc6e2b23-3848-4a01-94be-ca1d2157621a\",\n            \"attributes\": {\n                \"access_item\": \"actionable\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"d5be4ef7-8d81-4bfa-b451-5a1aeda9cad0\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"6945f369-14cc-4d3a-9114-ec74f263f55b\",\n            \"attributes\": {\n                \"customer_ref\": null,\n                \"name\": \"Acme Publishing\",\n                \"vendor_ref\": null\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"a816e131-f4f1-4c3b-a791-313dc72c1f35\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"s.lee@yourcompany.com\",\n                \"first_name\": \"Scott\",\n                \"is_archived\": false,\n                \"last_name\": \"Lee\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+15558675309\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"24a6e83e-2336-44c4-bfbd-3bc9c893ebf1\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"8674b807-8240-4756-ad05-a1b84cf6be27\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"d5be4ef7-8d81-4bfa-b451-5a1aeda9cad0\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"read_only\",\n                \"email\": \"r.summers@acmepublishing.com\",\n                \"first_name\": \"Rachel\",\n                \"is_archived\": false,\n                \"last_name\": \"Summers\",\n                \"notification_general\": \"actionable\",\n                \"phone_number\": {\n                    \"number\": \"+15558675309\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"fbdf2717-65e2-4d4b-a0f4-6f8acf297349\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"caa38983-d9fe-494c-818f-8870877ec226\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"},{"id":"f9a48ef3-07f3-4ce2-9f21-4f9d676fcaf1","name":"Create an item","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"attributes\": {\r\n\t\t\t\"amount\": 5000,\r\n\t\t\t\"kind\": \"payable\",\r\n\t\t\t\"payment_delivery_option\": \"ach_expedited\",\r\n\t\t\t\"reference\": \"Invoice #4245\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"funding_account\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\",\r\n\t\t\t\t\t\"type\": \"FundingAccount\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"line_items\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"attributes\": {\r\n\t\t\t\t\t\t\t\"amount\": 5000,\r\n\t\t\t\t\t\t\t\"description\": \"Office Space\",\r\n\t\t\t\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\t\t\t\"style\": \"item\",\r\n\t\t\t\t\t\t\t\"unit_price\": 5000\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"type\": \"LineItem\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"partnership\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\",\r\n\t\t\t\t\t\"type\": \"Partnership\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"partner_receivable_account\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\",\r\n\t\t\t\t\t\"type\": \"FundingAccount\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n            \"item_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"access_item\": \"actionable\"\r\n                        },\r\n                        \"relationships\": {\r\n                            \"partnership_member\": {\r\n                                \"data\": {\r\n                                    \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\",\r\n                                    \"type\": \"PartnershipMember\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"ItemMember\"\r\n                    }\r\n                ]\r\n            },\r\n\t\t\t\"requester\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\",\r\n\t\t\t\t\t\"type\": \"Membership\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t},\r\n\t\t\"type\": \"Item\"\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 13:12:20 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"4013"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, DELETE, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"11c7fa2a-4554-40cf-ac49-aae15a05a0d5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\",\n        \"attributes\": {\n            \"amount\": \"5000.00\",\n            \"amount_due\": \"5000.00\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2020-06-16\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2020-06-16\",\n            \"date_scheduled\": null,\n            \"date_sent\": null,\n            \"date_status_change\": \"2020-06-16T13:12:20.259860Z\",\n            \"days_until_due\": 0,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"has_attachments\": false,\n            \"invoice_number\": null,\n            \"is_creator\": true,\n            \"kind\": \"payable\",\n            \"ledger_ref\": null,\n            \"ledger_status\": \"no_ledger\",\n            \"payment_delivery_method\": \"ach\",\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_delivery_option\": \"ach_expedited\",\n            \"payment_terms\": null,\n            \"reference\": \"Invoice #4245\",\n            \"status\": \"pending\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2020-06-16T13:12:20.259860Z\",\n                    \"status\": \"pending\"\n                }\n            ]\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 0\n                },\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"f7c290ee-758f-4000-a18e-3fcc2ab43412\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"a224726a-7588-4448-a1a4-d8f1ef78a3e7\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\"\n                }\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\"\n                }\n            },\n            \"tag_links\": {\n                \"data\": []\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\",\n            \"attributes\": {\n                \"name\": \"InstaWork\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\",\n            \"attributes\": {\n                \"account_number\": \"56854521185\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"021000021\"\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\",\n            \"attributes\": {\n                \"account_number\": \"***7374\",\n                \"institution_name\": \"Bank Of America, N.A.\",\n                \"routing_number\": \"122000661\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"a224726a-7588-4448-a1a4-d8f1ef78a3e7\",\n            \"attributes\": {\n                \"access_item\": \"actionable\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"f7c290ee-758f-4000-a18e-3fcc2ab43412\",\n            \"attributes\": {\n                \"access_item\": \"actionable\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\",\n            \"attributes\": {\n                \"customer_ref\": null,\n                \"name\": \"InstaWork\",\n                \"vendor_ref\": null\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"michelle@fedex.com\",\n                \"first_name\": \"Michelle\",\n                \"is_archived\": false,\n                \"last_name\": \"Jones\",\n                \"phone_number\": {\n                    \"number\": \"+18738207968\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"zaldy@instawork.com\",\n                \"first_name\": \"Zaldy\",\n                \"is_archived\": false,\n                \"last_name\": \"Worker\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"fd04d875-9970-4017-9eec-bf8fcee4ac4f\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"44a6a2cf-76ed-4914-9829-8eac482bcc8e"},{"name":"Cancel an item","id":"ad395ff2-d65a-4e3b-b54a-2d2b2741ab1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"relationships\": {\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"{{membership_id}}\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Item\"\r\n    }\r\n}"},"url":"https://api.sandbox.routable.com/items/{{item_id}}/cancel/","description":"Cancel an existing item."},"response":[{"id":"2982c991-e3a0-4d7b-afbf-d8c2fc43aa3d","name":"Cancel an item","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"relationships\": {\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Item\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/9170c955-ce15-4796-bdbb-55ecd99b9b0f/cancel/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 16 Jun 2020 13:21:10 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"4446"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"POST, DELETE, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"34d90158-b9d2-491d-9f4c-50b824c1d903"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"9170c955-ce15-4796-bdbb-55ecd99b9b0f\",\n        \"attributes\": {\n            \"amount\": \"5000.00\",\n            \"amount_due\": \"5000.00\",\n            \"amount_original\": \"5000.00\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2020-06-16\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2020-06-16\",\n            \"date_scheduled\": null,\n            \"date_sent\": null,\n            \"date_status_change\": \"2020-06-16T13:21:10.550485Z\",\n            \"days_until_due\": 0,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"has_attachments\": false,\n            \"invoice_number\": null,\n            \"is_creator\": true,\n            \"is_payment_adjustment\": false,\n            \"kind\": \"payable\",\n            \"ledger_link\": null,\n            \"ledger_ref\": null,\n            \"ledger_status\": \"no_ledger\",\n            \"partner_notified\": false,\n            \"partner_reference\": null,\n            \"payment_delivery_method\": \"ach\",\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_delivery_option\": \"ach_expedited\",\n            \"payment_terms\": null,\n            \"reference\": null,\n            \"status\": \"canceled\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2020-06-16T13:19:39.569296Z\",\n                    \"status\": \"pending\"\n                },\n                {\n                    \"date\": \"2020-06-16T13:21:10.550485Z\",\n                    \"status\": \"canceled\"\n                }\n            ],\n            \"thread_modified\": \"2020-06-16T13:19:39.537010Z\"\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 0\n                },\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"dc42e1a8-34cb-44e0-befa-c8bf77af37d0\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"ef185cc1-50e1-4265-b1f2-c00185ee4b24\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\"\n                }\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\"\n                }\n            },\n            \"thread\": {\n                \"data\": {\n                    \"type\": \"Thread\",\n                    \"id\": \"1b05b2eb-7c32-4cff-8834-301b82d00022\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\",\n            \"attributes\": {\n                \"name\": \"InstaWork\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\",\n            \"attributes\": {\n                \"account_number\": \"56854521185\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"021000021\"\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\",\n            \"attributes\": {\n                \"account_number\": \"***7374\",\n                \"institution_name\": \"Bank Of America, N.A.\",\n                \"routing_number\": \"122000661\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"dc42e1a8-34cb-44e0-befa-c8bf77af37d0\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"ef185cc1-50e1-4265-b1f2-c00185ee4b24\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\",\n            \"attributes\": {\n                \"customer_ref\": null,\n                \"name\": \"InstaWork\",\n                \"vendor_ref\": null\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"michelle@fedex.com\",\n                \"first_name\": \"Michelle\",\n                \"is_archived\": false,\n                \"last_name\": \"Jones\",\n                \"phone_number\": {\n                    \"number\": \"+18738207968\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"zaldy@instawork.com\",\n                \"first_name\": \"Zaldy\",\n                \"is_archived\": false,\n                \"last_name\": \"Worker\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"fd04d875-9970-4017-9eec-bf8fcee4ac4f\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Thread\",\n            \"id\": \"1b05b2eb-7c32-4cff-8834-301b82d00022\",\n            \"attributes\": {\n                \"is_unread\": false,\n                \"modified\": \"2020-06-16T13:19:39.537010Z\"\n            }\n        }\n    ]\n}"}],"_postman_id":"ad395ff2-d65a-4e3b-b54a-2d2b2741ab1f"}],"id":"78afd1d8-2c7c-42ad-9851-dd9caa0ec2aa","description":"The `Item` object is what is created when you create a payment. It can be either a `payable/bill` or a `receivable/invoice`.\n\n&nbsp;\n\nThe `ItemAttachment` object is a child of a `Item` and gives specific information about an attachment.\n\n&nbsp;\n\nThe `LineItem` object is a child of a `Item` and gives specific information about a line item.\n\n&nbsp;\n\nThe `ItemSideApproval` object is a child of a `Item` and gives specific information about an assigned approver, if approvals are enabled.\n\n&nbsp;\n\n## The Item object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`Item`|\n\n&nbsp;\n\n### Attributes\n\n|Field|Description|List|\n|---|---|---|\n|amount|The total amount for this `Item`|yes|\n|amount_due|The amount due for this `Item`|yes|\n|amount_paid|The amount paid for this `Item`|yes|\n|check_number|The check number for this `Item` if paid by check|no|\n|date_approved|The date this `Item` was approved|no|\n|date_due|The date this `Item` is due|yes|\n|date_expected|The date this `Item` is expected to be in your possession|yes|\n|date_externally_paid|The date this `Item` was marked as paid outside of Routable|yes|\n|date_issued|The date this `Item` was issued|yes|\n|date_scheduled|The date this `Item` is scheduled to be sent to your partner|yes|\n|date_sent|The date this `Item` was sent to your partner|no|\n|date_status_change|The date this `Item` last changed `status`|yes|\n|days_until_due|The amount of days until this `Item` is due|yes|\n|external_ref|The unique id that you assign for this `Item`|no|\n|externally_paid_method|The method used if this `Item` was paid outside of Routable|no|\n|externally_paid_reference|The reference for this `Item` that was paid outside of Routable|no|\n|has_attachments|Does this `Item` have any attachments|yes|\n|invoice_number|The invoice number assigned to this `Item`|yes|\n|is_creator|Is this `Item` created by you|yes|\n|is_payment_adjustment|Was this `Item` partially paid on your ledger before importing into the platform|no|\n|kind|The type of `Item`. Values: `payable` or `receivable`|yes|\n|ledger_link|The URL to the ledger for this `Item`|no|\n|ledger_ref|The unique id from the ledger for this `Item`|no|\n|ledger_status|The current status for this `Item` on your ledger. Values: *see below*|no|\n|partner_notified|Has this `Item` been sent to your partner|no|\n|partner_reference|The reference your partner assigned to this `Item`|no|\n|payment_delivery_method|The payment method selected for this `Item`. Values: `ach` or `check`|yes|\n|payment_delivery_methods_accepted|The payment methods accepted for this `Item`. Values: `ach` or `check`|no|\n|payment_delivery_option|The payment method used for this `Item`. Values: *see below*|yes|\n|payment_terms|The payment terms for this `Item` if it is a `receivable`. Values: `net30`, `net60`, `upon_receipt`, `see_invoice`|no|\n|reference|The reference assigned to this `Item`|yes|\n|status|The current status for this `Item`. Values: *see below*|yes|\n|status_timeline|An array of `date` and `status` entries|no|\n|thread_modified|The date the conversation about this `Item` was last updated|yes|\n\n&nbsp;\n\n#### Item statuses\n\n|Status|Description|\n|---|---|\n|canceled|This `Item` has been canceled|\n|completed|This `Item` has completed|\n|externally_paid|This `Item` was marked as paid outside of Routable|\n|failed|This `Item` failed to process|\n|initiated|This `Item` is initiated|\n|issue|This `Item` has an issue|\n|needs_approval|This `Item` needs approval|\n|pending|This `Item` is pending action from your partner|\n|processing|This `Item` is being in in process of being initiated|\n|ready_to_send|This `Item` is ready to send|\n|scheduled|This `Item` is scheduled to send on a later date|\n\n&nbsp;\n\n#### Item Ledger statuses\n\n|Status|Description|\n|---|---|\n|canceled|This `Item` has been voided|\n|deleted|This `Item` has been deleted|\n|paid|This `Item` is paid|\n|pending|This `Item` is not paid|\n\n&nbsp;\n\n#### Item Payment Delivery Options\n\n|Status|Description|\n|---|---|\n|ach_standard|`Item` was sent via Standard ACH (4-5 business days)|\n|ach_expedited|`Item` was sent via Expedited ACH (2-3 business days)|\n|ach_next_day|`Item` was sent via NextDay ACH (1 business day)|\n|ach_same_day|`Item` was sent via SameDay ACH (End of business day)|\n|check_standard|`Item` was sent via Standard Check (7-10 business days)|\n\n&nbsp;\n\n### Relationships\n\n&nbsp;\n\n|Value|Object|Array|\n|---|---|---|\n|approvals|`ItemSideApproval`|yes\n|company|`Company`|no|\n|funding_account|`FundingAccount`|no|\n|member|`Member`|no|\n|partner|`Company`|no|\n|partner_funding_account|`FundingAccount`|no|\n|partner_member|`Member`|no|\n|partnership|`Partnership`|no|\n|thread|`Thread`|no|\n\n## The ItemSideApproval object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`ItemSideApproval`|\n\n### Attributes\n\n|Field|Description|List|\n|---|---|---|\n|approval_date|The date this approver first approved|no|\n|can_approve|Designates whether the approver can currently approve|no|\n|created|The date the approver was added to the `Item`|no|\n|has_approved|Designates whether this approver has given approval|no|\n|level_id|The unique identifier for the approval level to which this approver belongs|no|\n|level_position|The sort order for the approval level to which this approver belongs|no|\n|level_type|The type of approval required for the associated approval level. Values: `any` or `all`|no|\n|was_previously_approved|Designates whether this approver has previously been prompted for approval prior to being re-requested due to a change in item settings|no|\n\n### Relationships\n\n|Value|Object|Array|\n|---|---|---|\n|membership|`Membership`|no|","event":[{"listen":"prerequest","script":{"id":"db38c6f2-e361-4122-a099-f112811d1827","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8d3f112e-cd61-4f0f-bf98-e993aaca56de","type":"text/javascript","exec":[""]}}],"_postman_id":"78afd1d8-2c7c-42ad-9851-dd9caa0ec2aa"},{"name":"Ledgers","item":[{"name":"Xero","item":[{"name":"Partnerships","item":[{"name":"Create a partnership","event":[{"listen":"test","script":{"id":"8da890d0-169a-49aa-9f0b-b939e3af9b57","exec":[""],"type":"text/javascript"}}],"id":"e784ae0a-6fcc-4472-b0a7-5a627853c2a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"external_ref\": \"{{external_ref}}\",\r\n            \"is_customer\": {{is_customer}},\r\n            \"is_vendor\": {{is_vendor}},\r\n\t\t\t\"ledger_ref\": \"{{ledger_ref}}\"\r\n        },\r\n        \"relationships\": {\r\n            \"partnership_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"email\": \"{{contact_email}}\",\r\n                            \"first_name\": \"{{contact_first_name}}\",\r\n                            \"last_name\": \"{{contact_last_name}}\"\r\n                        },\r\n                        \"type\": \"PartnershipMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"partner\": {\r\n                \"data\": {\r\n                    \"attributes\": {\r\n                        \"company_type\": \"{{company_type}}\",\r\n                        \"name\": \"{{company_name}}\"\r\n                    },\r\n                    \"type\": \"Company\"\r\n                }\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"{{membership_id}}\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Partnership\"\r\n    }\r\n}"},"url":"https://api.sandbox.routable.com/partnerships/","description":"<!-- Important: The following heading has been added to support stable, named links within the API docs -->\n###### Create a new partnership with Xero\n\nWhen creating partnerships while connected to `Xero`, the following data might also be needed.\n\nTo see documentation for fields that are applicable to all ledgers see [Create a Partnership](#bd78523a-a303-4493-a19e-4a77881ecb5a).\n\n## Data\n\nType: `Partnership`\n\n### Attributes\n\nThe `attributes` object includes details about the type of relationship between your company and the other company.\n\n| Field        | Type    | Required    | Description                                                  |\n| ------------ | ------- | ----------- | ------------------------------------------------------------ |\n| customer_ledger_id | string  | conditional | Xero's unique identifier for the customer. Required if the partner that you are adding already exists as a customer on your Xero ledger. |\n| vendor_ledger_id   | string  | conditional | Xero's unique identifier for the vendor. Required if the partner that you are adding already exists as a vendor on your Xero ledger. |\n\n## Response\n\nFor customers who have set up a ledger integration, Routable returns the following information in the response body as part of the `attributes` object. This information can help you identify the partner record on your ledger.\n\n### Attributes\n\n*Note:* This is not a complete list of attributes in the response body. This list includes attributes specific to ledger integrations.\n\n| Field                | Type    | Description                                                  |\n| -------------------- | ------- | ------------------------------------------------------------ |\n| customer_ref         | string  | The ledger's unique identifier for the customer.             |\n| is_ledger_only       | boolean | Indicates whether the Partnership exists on the ledger only or if it also exists in Routable's records: `true` indicates that the Partnership exists only on the ledger. |\n| vendor_ref           | string  | The ledger's unique identifier for the vendor.               |"},"response":[{"id":"2d42f834-0f72-47e9-afe1-c76f1a5f05c5","name":"Create a partnership - Relationship already exists on Xero","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"customer_ledger_id\": \"41642947-7316-42fc-9395-169b8ff10b72\",\r\n            \"is_customer\": false,\r\n            \"is_vendor\": true,\r\n            \"vendor_ledger_id\": \"41642947-7316-42fc-9395-169b8ff10b72\"\r\n        },\r\n        \"relationships\": {\r\n            \"partner\": {\r\n                \"data\": {\r\n                    \"attributes\": {\r\n                        \"company_type\": \"business\",\r\n                        \"name\": \"Bayside Club\"\r\n                    },\r\n                    \"type\": \"Company\"\r\n                }\r\n            },\r\n            \"partnership_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"default_general\": \"actionable\",\r\n                            \"default_item\": \"actionable\",\r\n                            \"email\": \"bob.partridge@bayclub.co\",\r\n                            \"first_name\": \"Bob\",\r\n                            \"last_name\": \"Partridge\"\r\n                        },\r\n                        \"type\": \"PartnershipMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"ebd596d6-6cb0-45c0-bed9-a206f031639b\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Partnership\"\r\n    },\r\n    \"meta\": {}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/"},"code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Partnership\",\n        \"id\": \"d06b64de-d09b-4cf9-a17d-dd8c2a70830d\",\n        \"attributes\": {\n            \"created\": \"2020-12-16T16:51:51.239077Z\",\n            \"customer_ledger_id\": \"41642947-7316-42fc-9395-169b8ff10b72\",\n            \"customer_ref\": \"82d67717-1d2e-4f44-be65-f73a68df8a9f\",\n            \"default_payable_delivery_method\": null,\n            \"default_payment_terms\": null,\n            \"default_receivable_delivery_method\": null,\n            \"external_ref\": null,\n            \"is_customer\": false,\n            \"is_ledger_only\": false,\n            \"is_partner_self_managed\": false,\n            \"is_vendor\": true,\n            \"ledger_link_customer\": \"https://go.xero.com/organisationlogin/default.aspx?shortcode=!n0qCP&redirecturl=/Contacts/View/82d67717-1d2e-4f44-be65-f73a68df8a9f\",\n            \"ledger_link_vendor\": \"https://go.xero.com/organisationlogin/default.aspx?shortcode=!n0qCP&redirecturl=/Contacts/View/82d67717-1d2e-4f44-be65-f73a68df8a9f\",\n            \"ledger_name_customer\": \"Bayside Club\",\n            \"ledger_name_vendor\": \"Bayside Club\",\n            \"name\": \"Bayside Club\",\n            \"partner_approved_ach_customer\": false,\n            \"partner_payable_delivery_method\": null,\n            \"partner_payable_payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"partner_receivable_payment_delivery_methods_accepted\": [\n                \"ach\",\n                \"check\"\n            ],\n            \"partner_status\": \"added\",\n            \"tax_request_status\": \"not_requested\",\n            \"vendor_ledger_id\": \"41642947-7316-42fc-9395-169b8ff10b72\",\n            \"vendor_ref\": \"82d67717-1d2e-4f44-be65-f73a68df8a9f\"\n        },\n        \"relationships\": {\n            \"default_payable_funding_account\": {\n                \"data\": null\n            },\n            \"default_receivable_funding_account\": {\n                \"data\": null\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"df345c6a-916b-47e6-abc8-aa0b5071cd1a\"\n                }\n            },\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"91fb1102-374c-467c-94e8-0f3ff8ebf472\"\n                    },\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"88d7085c-7cd4-4031-87df-976019cd6b58\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"df345c6a-916b-47e6-abc8-aa0b5071cd1a\",\n            \"attributes\": {\n                \"company_type\": \"business\",\n                \"name\": \"Bayside Club\"\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"88d7085c-7cd4-4031-87df-976019cd6b58\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"actionable\",\n                \"email\": \"bob.partridge@bayclub.co\",\n                \"first_name\": \"Bob\",\n                \"is_archived\": false,\n                \"last_name\": \"Partridge\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"df345c6a-916b-47e6-abc8-aa0b5071cd1a\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"8b5dd0a3-3da7-4643-8179-82a675bcd1b9\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"91fb1102-374c-467c-94e8-0f3ff8ebf472\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"angela@dundermifflin.com\",\n                \"first_name\": \"Angela\",\n                \"is_archived\": false,\n                \"last_name\": \"Martin\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+18007724051\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"6026b7d3-0f29-4cac-8e65-3be3c9ad1487\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"ebd596d6-6cb0-45c0-bed9-a206f031639b\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"},{"id":"cca6e8c7-5b44-4284-be22-5a4c17f146b8","name":"Create a partnership - Relationship does not exist on Xero","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"external_ref\": \"123456\",\r\n            \"is_customer\": false,\r\n            \"is_vendor\": true\r\n        },\r\n        \"relationships\": {\r\n            \"partner\": {\r\n                \"data\": {\r\n                    \"attributes\": {\r\n                        \"company_type\": \"business\",\r\n                        \"name\": \"Dunder Mifflin\"\r\n                    },\r\n                    \"type\": \"Company\"\r\n                }\r\n            },\r\n            \"partnership_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"email\": \"angela@dunder-mifflin.com\",\r\n                            \"first_name\": \"Angela\",\r\n                            \"last_name\": \"Martin\"\r\n                        },\r\n                        \"type\": \"PartnershipMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"ebd596d6-6cb0-45c0-bed9-a206f031639b\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Partnership\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/"},"code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Partnership\",\n        \"id\": \"4c7cb46f-09f1-4f97-91da-c225dc46a62f\",\n        \"attributes\": {\n            \"created\": \"2020-07-30T18:11:13.400149Z\",\n            \"customer_ledger_id\": \"7e2c7bb3-6ac2-49a3-82de-d19bdcbb6685\",\n            \"customer_ref\": \"5bfbffd2-5e0b-410d-8545-f3ef7704bf23\",\n            \"default_payable_delivery_method\": null,\n            \"default_payment_terms\": null,\n            \"default_receivable_delivery_method\": null,\n            \"external_ref\": null,\n            \"is_customer\": false,\n            \"is_ledger_only\": false,\n            \"is_partner_accepted\": false,\n            \"is_vendor\": true,\n            \"ledger_link_customer\": \"https://go.xero.com/organisationlogin/default.aspx?shortcode=!drBtZ&redirecturl=/Contacts/View/5bfbffd2-5e0b-410d-8545-f3ef7704bf23\",\n            \"ledger_link_vendor\": \"https://go.xero.com/organisationlogin/default.aspx?shortcode=!drBtZ&redirecturl=/Contacts/View/5bfbffd2-5e0b-410d-8545-f3ef7704bf23\",\n            \"ledger_name_customer\": \"Dunder Mifflin\",\n            \"ledger_name_vendor\": \"Dunder Mifflin\",\n            \"name\": \"Dunder Mifflin\",\n            \"partner_approved_ach_customer\": false,\n            \"partner_payable_delivery_method\": null,\n            \"partner_payable_payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"partner_receivable_payment_delivery_methods_accepted\": [\n                \"ach\",\n                \"check\"\n            ],\n            \"tax_request_status\": \"not_requested\",\n            \"vendor_ledger_id\": \"7e2c7bb3-6ac2-49a3-82de-d19bdcbb6685\",\n            \"vendor_ref\": \"5bfbffd2-5e0b-410d-8545-f3ef7704bf23\"\n        },\n        \"relationships\": {\n            \"default_payable_funding_account\": {\n                \"data\": null\n            },\n            \"default_receivable_funding_account\": {\n                \"data\": null\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"9c06d4c5-926b-441e-a68a-6683ee487e38\"\n                }\n            },\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"3a95fa16-295d-4447-9326-26303d6ed4c0\"\n                    },\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"b647126b-bdb5-4b29-ab2e-8b0fe7df5f81\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"9c06d4c5-926b-441e-a68a-6683ee487e38\",\n            \"attributes\": {\n                \"company_type\": \"business\",\n                \"name\": \"Dunder Mifflin\"\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"3a95fa16-295d-4447-9326-26303d6ed4c0\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"user_dev01@test.com\",\n                \"first_name\": \"George\",\n                \"is_archived\": false,\n                \"last_name\": \"Washington\",\n                \"phone_number\": {\n                    \"number\": \"+18007724051\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"6026b7d3-0f29-4cac-8e65-3be3c9ad1487\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"ebd596d6-6cb0-45c0-bed9-a206f031639b\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"b647126b-bdb5-4b29-ab2e-8b0fe7df5f81\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"angela@dunder-mifflin.com\",\n                \"first_name\": \"Angela\",\n                \"is_archived\": false,\n                \"last_name\": \"Martin\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9c06d4c5-926b-441e-a68a-6683ee487e38\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"e6f4eebc-f1a3-4e75-97a8-3766521d54d1\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"e784ae0a-6fcc-4472-b0a7-5a627853c2a5"}],"id":"92866624-2439-43cd-84fd-553595c0cbc7","_postman_id":"92866624-2439-43cd-84fd-553595c0cbc7"},{"name":"Items","item":[{"name":"Create an item","id":"563e1ed3-1035-42e7-aa3c-8320eb6f687e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"attributes\": {\r\n\t\t\t\"amount\": {{amount}},\r\n\t\t\t\"kind\": \"{{kind}}\",\r\n\t\t\t\"payment_delivery_option\": \"{{payment_delivery_option}}\",\r\n\t\t\t\"reference\": \"{{reference}}\",\r\n            \"extended\": {\r\n        \t\t\"tax_style\": \"{{ledger_tax_style}}\"\r\n            }\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"attachments\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"attributes\": {\r\n\t\t\t\t\t\t\t\"file\": \"{{base64_data_uri}}\",\r\n\t\t\t\t\t\t\t\"filename\": \"{{filename}}\"\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"type\": \"ItemAttachment\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"funding_account\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{funding_account_id}}\",\r\n\t\t\t\t\t\"type\": \"FundingAccount\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"item_approvers\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"type\": \"ItemApprover\",\r\n\t\t\t\t\t\t\"relationships\": {\r\n\t\t\t\t\t\t\t\"level\": {\r\n\t\t\t\t\t\t\t\t\"data\": {\r\n\t\t\t\t\t\t\t\t\t\"id\": \"{{first_item_approval_level_id}}\",\r\n\t\t\t\t\t\t\t\t\t\"type\": \"CompanySettingsItemApprovalLevel\"\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\"membership\": {\r\n\t\t\t\t\t\t\t\t\"data\": {\r\n\t\t\t\t\t\t\t\t\t\"id\": \"{{first_item_approval_level_approver_id}}\",\r\n\t\t\t\t\t\t\t\t\t\"type\": \"Membership\"\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"line_items\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"attributes\": {\r\n\t\t\t\t\t\t\t\"account\": {\r\n\t\t\t\t\t\t\t\t\"id\": \"{{ledger_account_id}}\"\r\n\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\"amount\": {{line_amount}},\r\n\t\t\t\t\t\t\t\"description\": \"{{description}}\",\r\n\t\t\t\t\t\t\t\"item\": { \r\n\t\t\t\t\t\t\t\t\"id\": \"{{ledger_item_id}}\"\r\n\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\"quantity\": {{quantity}},\r\n\t\t\t\t\t\t\t\"style\": \"item\",\r\n\t\t\t\t\t\t\t\"tax\": {\r\n\t\t\t\t\t\t\t\t\"id\": \"{{ledger_tax_id}}\"\r\n\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\"unit_price\": {{unit_price}}\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"type\": \"LineItem\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"partnership\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{partnership_id}}\",\r\n\t\t\t\t\t\"type\": \"Partnership\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"partner_receivable_account\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{partner_receivable_account_id}}\",\r\n\t\t\t\t\t\"type\": \"FundingAccount\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"item_members\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"attributes\": {\r\n\t\t\t\t\t\t\t\"access_item\": \"{{access_item}}\"\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"relationships\": {\r\n\t\t\t\t\t\t\t\"partnership_member\": {\r\n\t\t\t\t\t\t\t\t\"data\": {\r\n\t\t\t\t\t\t\t\t\t\"id\": \"{{partnership_member_id}}\",\r\n\t\t\t\t\t\t\t\t\t\"type\": \"PartnershipMember\"\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"type\": \"ItemMember\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"requester\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{membership_id}}\",\r\n\t\t\t\t\t\"type\": \"Membership\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t},\r\n\t\t\"type\": \"Item\"\r\n\t},\r\n\t\"meta\": {\r\n\t\t\"message\": \"{{message}}\"\r\n\t}\r\n}"},"url":"https://api.sandbox.routable.com/items/","description":"<!-- Important: The following heading has been added to support stable, named links within the API docs -->When creating items while connected to `Xero` the following data is also needed.\n\nTo see documentation for fields that are applicable to all ledgers see [Create an item](#73411eae-1024-457f-843d-1c3fb5f28e15)\n\n#### Configured and Custom Fields\n\nWhen creating items with Xero, there is a chance that you will be met with validation errors for fields that are specifically enabled and disabled based on your configuration.\n\nIf you run into this, the easiest way to move forward is to...\n\n1. Connect with your finance team and have them build the \"perfect\" payment in the Routable Dashboard.\n2. Take a screenshot of the payment before sending it (or don't send it at all).\n3. Email developers@routable.com with the screenshot and we'll provide the additional data you'll need to add to your payload to proceed!\n\n![The perfect payment](https://files.readme.io/1478576-pasted_image_0.png)\n\n### ATTRIBUTES\n|Field|Type|Required|Description|\n|---|---|---|---|\n|extended|object|yes|Additional details about the payment|\n\n#### extended\n|Field|Type|Required|Description|\n|---|---|---|---|\n|memo|string|no|A comment about the invoice that is used by Xero.|\n|tax_style|string|yes|Identifies the tax calculation for Xero to use. See the [Xero Tax Rate documentation](https://developer.xero.com/documentation/api/tax-rates) for additional details.|\n\n### Relationships\n\n&nbsp;\n\n#### Line Items\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|account|object<br>`{\"id\": \"string\"}`|yes|the id of the account for this line item|\n|tax|object<br>`{\"id\": \"string\"}`|yes|the id of the tax for this line item|\n\n&nbsp;"},"response":[{"id":"cc0b5303-5bd6-4170-8399-fabc74d20c83","name":"Create an item - Payable ","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"amount\": 17.43,\r\n            \"date_due\": \"2020-08-13\",\r\n            \"date_issued\": \"2020-07-30\",\r\n            \"invoice_number\": \"Sleek Soft Fish\",\r\n            \"kind\": \"payable\",\r\n            \"payment_delivery_option\": \"ach_expedited\",\r\n            \"payment_terms\": \"see_invoice\",\r\n            \"reference\": null,\r\n            \"extended\": {\r\n                \"tax_style\": \"exclusive\"\r\n            }\r\n        },\r\n        \"relationships\": {\r\n            \"attachments\": {\r\n                \"data\": []\r\n            },\r\n            \"funding_account\": {\r\n                \"data\": {\r\n                    \"id\": \"3a21ff0d-3091-4882-b719-fe62088258cb\",\r\n                    \"type\": \"FundingAccount\"\r\n                }\r\n            },\r\n            \"item_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"access_item\": \"actionable\"\r\n                        },\r\n                        \"relationships\": {\r\n                            \"partnership_member\": {\r\n                                \"data\": {\r\n                                    \"id\": \"b647126b-bdb5-4b29-ab2e-8b0fe7df5f81\",\r\n                                    \"type\": \"PartnershipMember\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"ItemMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"line_items\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"account\": {\r\n                                \"id\": \"ddf7049b-4fc5-43b3-8888-54f5690b52da\"\r\n                            },\r\n                            \"amount\": 15.95,\r\n                            \"description\": \"Salt\",\r\n                            \"item\": {\r\n                                \"id\": \"4194d81d-3f6c-4768-8256-36130714637d\"\r\n                            },\r\n                            \"quantity\": 1,\r\n                            \"style\": \"item\",\r\n                            \"tax\": {\r\n                                \"id\": \"OUTPUT\"\r\n                            },\r\n                            \"unit_price\": 15.95\r\n                        },\r\n                        \"type\": \"LineItem\"\r\n                    }\r\n                ]\r\n            },\r\n            \"partner_receivable_account\": {\r\n                \"data\": {\r\n                    \"id\": \"4e707192-a8f5-4031-9eb9-d6a1e6779c23\",\r\n                    \"type\": \"FundingAccount\"\r\n                }\r\n            },\r\n            \"partnership\": {\r\n                \"data\": {\r\n                    \"id\": \"4c7cb46f-09f1-4f97-91da-c225dc46a62f\",\r\n                    \"type\": \"Partnership\"\r\n                }\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"ebd596d6-6cb0-45c0-bed9-a206f031639b\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Item\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/"},"code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"512408b7-ae90-4bdd-9cf2-cff836e381c4\",\n        \"attributes\": {\n            \"amount\": \"17.43\",\n            \"amount_due\": \"17.43\",\n            \"amount_original\": \"17.43\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2020-08-13\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2020-07-30\",\n            \"date_scheduled\": null,\n            \"date_sent\": \"2020-07-30\",\n            \"date_status_change\": \"2020-07-30T18:27:12.872615Z\",\n            \"days_until_due\": 14,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"has_attachments\": false,\n            \"invoice_number\": \"Sleek Soft Fish\",\n            \"is_creator\": true,\n            \"is_payment_adjustment\": false,\n            \"kind\": \"payable\",\n            \"ledger_link\": \"https://go.xero.com/organisationlogin/default.aspx?shortcode=!drBtZ&redirecturl=/AccountsPayable/Edit.aspx?InvoiceID=c657debd-55b7-474a-ab86-fad9df746ed3\",\n            \"ledger_ref\": \"c657debd-55b7-474a-ab86-fad9df746ed3\",\n            \"ledger_status\": \"pending\",\n            \"partner_notified\": true,\n            \"partner_reference\": \"Sleek Soft Fish\",\n            \"payment_delivery_method\": \"ach\",\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_delivery_option\": \"ach_expedited\",\n            \"payment_terms\": null,\n            \"reference\": null,\n            \"status\": \"processing\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2020-07-30T18:27:12.872615Z\",\n                    \"status\": \"processing\"\n                }\n            ],\n            \"thread_modified\": \"2020-07-30T18:27:12.835268Z\"\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 0\n                },\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"3a21ff0d-3091-4882-b719-fe62088258cb\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"a331f8db-a6c5-4947-8809-d90d53403716\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"bc91e5f0-8b02-413d-bd46-6a5d7e35566f\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"9c06d4c5-926b-441e-a68a-6683ee487e38\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"4e707192-a8f5-4031-9eb9-d6a1e6779c23\"\n                }\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"4c7cb46f-09f1-4f97-91da-c225dc46a62f\"\n                }\n            },\n            \"thread\": {\n                \"data\": {\n                    \"type\": \"Thread\",\n                    \"id\": \"795fdd80-a403-4013-88a1-91cccf18574e\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"9c06d4c5-926b-441e-a68a-6683ee487e38\",\n            \"attributes\": {\n                \"name\": \"Dunder Mifflin\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"3a21ff0d-3091-4882-b719-fe62088258cb\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"b5712f07-f293-432b-935a-da3e12ac383b\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"6026b7d3-0f29-4cac-8e65-3be3c9ad1487\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"4e707192-a8f5-4031-9eb9-d6a1e6779c23\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"3754b381-0657-4a29-b4f7-fe0274fa01bc\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9c06d4c5-926b-441e-a68a-6683ee487e38\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"3754b381-0657-4a29-b4f7-fe0274fa01bc\",\n            \"attributes\": {\n                \"account_number\": \"***3210\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"021000021\"\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"b5712f07-f293-432b-935a-da3e12ac383b\",\n            \"attributes\": {\n                \"account_number\": \"9999999\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"021000021\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"a331f8db-a6c5-4947-8809-d90d53403716\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"b647126b-bdb5-4b29-ab2e-8b0fe7df5f81\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"bc91e5f0-8b02-413d-bd46-6a5d7e35566f\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"3a95fa16-295d-4447-9326-26303d6ed4c0\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"4c7cb46f-09f1-4f97-91da-c225dc46a62f\",\n            \"attributes\": {\n                \"customer_ref\": \"5bfbffd2-5e0b-410d-8545-f3ef7704bf23\",\n                \"name\": \"Dunder Mifflin\",\n                \"vendor_ref\": \"5bfbffd2-5e0b-410d-8545-f3ef7704bf23\"\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"3a95fa16-295d-4447-9326-26303d6ed4c0\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"dev@test.com\",\n                \"first_name\": \"George\",\n                \"is_archived\": false,\n                \"last_name\": \"Washington\",\n                \"phone_number\": {\n                    \"number\": \"+18007724051\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"6026b7d3-0f29-4cac-8e65-3be3c9ad1487\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"ebd596d6-6cb0-45c0-bed9-a206f031639b\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"b647126b-bdb5-4b29-ab2e-8b0fe7df5f81\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"angela@dunder-mifflin.com\",\n                \"first_name\": \"Angela\",\n                \"is_archived\": false,\n                \"last_name\": \"Martin\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9c06d4c5-926b-441e-a68a-6683ee487e38\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"e6f4eebc-f1a3-4e75-97a8-3766521d54d1\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Thread\",\n            \"id\": \"795fdd80-a403-4013-88a1-91cccf18574e\",\n            \"attributes\": {\n                \"is_unread\": false,\n                \"modified\": \"2020-07-30T18:27:12.835268Z\"\n            }\n        }\n    ]\n}"},{"id":"d7384d27-c3b8-47dc-81bd-549ef1d7e51f","name":"Create an item - Receivable","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"amount\": 21.8,\r\n            \"date_due\": \"2020-08-29\",\r\n            \"date_issued\": \"2020-07-30\",\r\n            \"kind\": \"receivable\",\r\n            \"payment_delivery_methods_accepted\": [\r\n                \"ach\"\r\n            ],\r\n            \"payment_terms\": \"net30\",\r\n            \"reference\": \"3 Hole Punch Paper\",\r\n            \"extended\": {\r\n                \"tax_style\": \"exclusive\"\r\n            }\r\n        },\r\n        \"relationships\": {\r\n            \"attachments\": {\r\n                \"data\": []\r\n            },\r\n            \"funding_account\": {\r\n                \"data\": {\r\n                    \"id\": \"3a21ff0d-3091-4882-b719-fe62088258cb\",\r\n                    \"type\": \"FundingAccount\"\r\n                }\r\n            },\r\n            \"item_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {},\r\n                        \"relationships\": {\r\n                            \"partnership_member\": {\r\n                                \"data\": {\r\n                                    \"id\": \"8f39de20-d915-4850-8607-e22a4a49314c\",\r\n                                    \"type\": \"PartnershipMember\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"ItemMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"line_items\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"account\": {\r\n                                \"id\": \"e21ef153-577e-4132-94b0-3d0108d97def\"\r\n                            },\r\n                            \"amount\": 19.95,\r\n                            \"description\": \"5x Reams of 3 Hole Punch\",\r\n                            \"discount\": 0,\r\n                            \"item\": {\r\n                                \"id\": \"4194d81d-3f6c-4768-8256-36130714637d\"\r\n                            },\r\n                            \"quantity\": 1,\r\n                            \"style\": \"item\",\r\n                            \"tax\": {\r\n                                \"id\": \"INPUT\"\r\n                            },\r\n                            \"unit_price\": 19.95\r\n                        },\r\n                        \"type\": \"LineItem\"\r\n                    }\r\n                ]\r\n            },\r\n            \"partnership\": {\r\n                \"data\": {\r\n                    \"id\": \"0bf7c3a4-0c85-4efa-9942-32ed51ea0dea\",\r\n                    \"type\": \"Partnership\"\r\n                }\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"ebd596d6-6cb0-45c0-bed9-a206f031639b\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Item\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/"},"code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"465febd9-85c7-4bd8-baa4-8f679a98e37f\",\n        \"attributes\": {\n            \"amount\": \"21.80\",\n            \"amount_due\": \"21.80\",\n            \"amount_original\": \"21.80\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2020-08-29\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2020-07-30\",\n            \"date_scheduled\": null,\n            \"date_sent\": \"2020-07-30\",\n            \"date_status_change\": \"2020-07-30T19:02:44.993271Z\",\n            \"days_until_due\": 30,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"has_attachments\": true,\n            \"invoice_number\": \"INV-0041\",\n            \"is_creator\": true,\n            \"is_payment_adjustment\": false,\n            \"kind\": \"receivable\",\n            \"ledger_link\": \"https://go.xero.com/organisationlogin/default.aspx?shortcode=!drBtZ&redirecturl=/AccountsReceivable/View.aspx?InvoiceID=085b08df-5d01-46d5-8183-bed19b1566cb\",\n            \"ledger_ref\": \"085b08df-5d01-46d5-8183-bed19b1566cb\",\n            \"ledger_status\": \"pending\",\n            \"partner_notified\": true,\n            \"partner_reference\": \"INV-0041\",\n            \"payment_delivery_method\": null,\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_delivery_option\": null,\n            \"payment_terms\": \"net30\",\n            \"reference\": \"3 Hole Punch Paper\",\n            \"status\": \"pending\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2020-07-30T19:02:44.993271Z\",\n                    \"status\": \"pending\"\n                }\n            ],\n            \"thread_modified\": \"2020-07-30T19:02:44.825617Z\"\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 1\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemAttachment\",\n                        \"id\": \"9cebfad5-5976-4d65-8a72-42e7ac2d302e\"\n                    }\n                ]\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"3a21ff0d-3091-4882-b719-fe62088258cb\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"635a74eb-0e12-4edf-9271-521a30aa8f6d\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"3ad30d8d-13de-41e5-80f0-0822fd22ac91\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"9294d7e8-ae73-4333-91d2-b079ab53c836\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": null\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"0bf7c3a4-0c85-4efa-9942-32ed51ea0dea\"\n                }\n            },\n            \"thread\": {\n                \"data\": {\n                    \"type\": \"Thread\",\n                    \"id\": \"f765eca6-42b1-4661-a2f6-d89753ff2340\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"9294d7e8-ae73-4333-91d2-b079ab53c836\",\n            \"attributes\": {\n                \"name\": \"Dunder Mifflin\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"3a21ff0d-3091-4882-b719-fe62088258cb\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"b5712f07-f293-432b-935a-da3e12ac383b\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"6026b7d3-0f29-4cac-8e65-3be3c9ad1487\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"b5712f07-f293-432b-935a-da3e12ac383b\",\n            \"attributes\": {\n                \"account_number\": \"9999999\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"021000021\"\n            }\n        },\n        {\n            \"type\": \"ItemAttachment\",\n            \"id\": \"9cebfad5-5976-4d65-8a72-42e7ac2d302e\",\n            \"attributes\": {\n                \"file\": \"https://routable-sandbox.s3.amazonaws.com/media/item/28697d1b-e4eb-41a2-85ab-ba297d77f543.pdf?AWSAccessKeyId=AKIAIVU3KJPXRGKERIMA&Signature=sgcBRqkSvQjMiWHYj3mkPlsti%2Fs%3D&Expires=1598727765\",\n                \"file_hash\": \"0be8bde05ae4c25f03fdc42763dc2b7683fc2be7\",\n                \"file_type\": \"application/pdf\",\n                \"filename\": \"INV-0041.pdf\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"3ad30d8d-13de-41e5-80f0-0822fd22ac91\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"429aa78f-0267-4f99-a1ee-5792709427f1\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"635a74eb-0e12-4edf-9271-521a30aa8f6d\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"8f39de20-d915-4850-8607-e22a4a49314c\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"0bf7c3a4-0c85-4efa-9942-32ed51ea0dea\",\n            \"attributes\": {\n                \"customer_ref\": \"40ece4c1-792c-4094-93d6-090697be97bd\",\n                \"name\": \"Dunder Mifflin\",\n                \"vendor_ref\": \"40ece4c1-792c-4094-93d6-090697be97bd\"\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"429aa78f-0267-4f99-a1ee-5792709427f1\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"dev@test.com\",\n                \"first_name\": \"George\",\n                \"is_archived\": false,\n                \"last_name\": \"Washington\",\n                \"phone_number\": {\n                    \"number\": \"+18007724051\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"6026b7d3-0f29-4cac-8e65-3be3c9ad1487\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"ebd596d6-6cb0-45c0-bed9-a206f031639b\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"8f39de20-d915-4850-8607-e22a4a49314c\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"kelly@dunder-mifflin.com\",\n                \"first_name\": \"Kelly\",\n                \"is_archived\": false,\n                \"last_name\": \"Kapoor\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9294d7e8-ae73-4333-91d2-b079ab53c836\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"2e36a036-6e55-44a8-854c-68ac58bbf6aa\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Thread\",\n            \"id\": \"f765eca6-42b1-4661-a2f6-d89753ff2340\",\n            \"attributes\": {\n                \"is_unread\": false,\n                \"modified\": \"2020-07-30T19:02:44.825617Z\"\n            }\n        }\n    ]\n}"}],"_postman_id":"563e1ed3-1035-42e7-aa3c-8320eb6f687e"}],"id":"6afd5706-9444-469d-92de-16f35ebfd2c9","_postman_id":"6afd5706-9444-469d-92de-16f35ebfd2c9"}],"id":"f3c7ced1-9036-4ddc-9f75-51512e501ea9","description":"# Xero Integration","_postman_id":"f3c7ced1-9036-4ddc-9f75-51512e501ea9"},{"name":"QBO","item":[{"name":"Partnerships","item":[{"name":"Create a partnership","event":[{"listen":"test","script":{"id":"1c9ca603-5aa9-4c41-bf5c-da833e69acea","exec":[""],"type":"text/javascript"}}],"id":"9583d945-207b-418d-ab26-d445d1209d66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"external_ref\": \"{{external_ref}}\",\r\n            \"is_customer\": {{is_customer}},\r\n            \"is_vendor\": {{is_vendor}}\r\n        },\r\n        \"relationships\": {\r\n            \"partnership_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"email\": \"{{contact_email}}\",\r\n                            \"first_name\": \"{{contact_first_name}}\",\r\n                            \"last_name\": \"{{contact_last_name}}\"\r\n                        },\r\n                        \"type\": \"PartnershipMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"partner\": {\r\n                \"data\": {\r\n                    \"attributes\": {\r\n                        \"company_type\": \"{{company_type}}\",\r\n                        \"name\": \"{{company_name}}\"\r\n                    },\r\n                    \"type\": \"Company\"\r\n                }\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"{{membership_id}}\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Partnership\"\r\n    }\r\n}"},"url":"https://api.sandbox.routable.com/partnerships/","description":"<!-- Important: The following heading has been added to support stable, named links within the API docs -->\n###### Create a new partnership with QBO\n\nWhen creating partnerships while connected to `QBO`, the following data might also be needed.\n\t\nTo see documentation for fields that are applicable to all ledgers see [Create a Partnership](#bd78523a-a303-4493-a19e-4a77881ecb5a).\n\n## Data\n\nType: `Partnership`\n\n### Attributes\n\nThe `attributes` object includes details about the type of relationship between your company and the other company.\n\n| Field        | Type    | Required | Description                                                  |\n| ------------ | ------- | -------- | ------------------------------------------------------------ |\n| customer_ledger_id | string  | conditional | QBO's unique identifier for the customer. Required if the partner that you are adding already exists as a customer on your QBO ledger. |\n| vendor_ledger_id   | string  | conditional | QBO's unique identifier for the vendor. Required if the partner that you are adding already exists as a vendor on your QBO ledger. |\n\n## Response\n\nFor customers who have set up a ledger integration, Routable returns the following information in the response body as part of the `attributes` object. This information can help you identify the partner record on your ledger.\n\n### Attributes\n\n*Note:* This is not a complete list of attributes in the response body. This list includes attributes specific to ledger integrations.\n\n| Field                | Type    | Description                                                  |\n| -------------------- | ------- | ------------------------------------------------------------ |\n| customer_ref         | string  | The ledger's unique identifier for the customer.             |\n| is_ledger_only       | boolean | Indicates whether the Partnership exists on the ledger only or if it also exists in Routable's records: `true` indicates that the Partnership exists only on the ledger. |\n| vendor_ref           | string  | The ledger's unique identifier for the vendor.               |"},"response":[{"id":"1b9c335e-aef6-4128-a062-c171b57339bd","name":"Create a partnership on QBO","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"external_ref\": \"123456\",\r\n            \"is_customer\": false,\r\n            \"is_vendor\": true\r\n        },\r\n        \"relationships\": {\r\n            \"partner\": {\r\n                \"data\": {\r\n                    \"attributes\": {\r\n                        \"company_type\": \"business\",\r\n                        \"name\": \"Dunder Mifflin\"\r\n                    },\r\n                    \"type\": \"Company\"\r\n                }\r\n            },\r\n            \"partnership_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"email\": \"angela@dunder-mifflin.com\",\r\n                            \"first_name\": \"Angela\",\r\n                            \"last_name\": \"Martin\"\r\n                        },\r\n                        \"type\": \"PartnershipMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"01d5cddf-bcee-4193-89cf-816214bb4057\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Partnership\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/"},"code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Partnership\",\n        \"id\": \"d030e2b0-d5d5-49fa-9b32-efc461347e86\",\n        \"attributes\": {\n            \"created\": \"2020-07-30T20:12:37.837091Z\",\n            \"customer_ledger_id\": null,\n            \"customer_ref\": null,\n            \"default_payable_delivery_method\": null,\n            \"default_payment_terms\": null,\n            \"default_receivable_delivery_method\": null,\n            \"external_ref\": null,\n            \"is_customer\": false,\n            \"is_ledger_only\": false,\n            \"is_partner_accepted\": false,\n            \"is_vendor\": true,\n            \"ledger_link_customer\": null,\n            \"ledger_link_vendor\": null,\n            \"ledger_name_customer\": null,\n            \"ledger_name_vendor\": null,\n            \"name\": \"Dunder Mifflin\",\n            \"partner_approved_ach_customer\": false,\n            \"partner_payable_delivery_method\": null,\n            \"partner_payable_payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"partner_receivable_payment_delivery_methods_accepted\": [\n                \"ach\",\n                \"check\"\n            ],\n            \"tax_request_status\": \"not_requested\",\n            \"vendor_ledger_id\": null,\n            \"vendor_ref\": null\n        },\n        \"relationships\": {\n            \"default_payable_funding_account\": {\n                \"data\": null\n            },\n            \"default_receivable_funding_account\": {\n                \"data\": null\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"142ebafa-c045-4eac-a59f-923e1ae6ac57\"\n                }\n            },\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"0c72ec1a-c501-432a-b31e-2e44277e1d6d\"\n                    },\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"43a627e4-af9d-4908-9fb7-7ade3766cac2\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"142ebafa-c045-4eac-a59f-923e1ae6ac57\",\n            \"attributes\": {\n                \"company_type\": \"business\",\n                \"name\": \"Dunder Mifflin\"\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"0c72ec1a-c501-432a-b31e-2e44277e1d6d\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"dev@test.com\",\n                \"first_name\": \"George\",\n                \"is_archived\": false,\n                \"last_name\": \"Washington\",\n                \"phone_number\": {\n                    \"number\": \"+15234473337\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"38355261-0013-47e0-a6c0-99231893ef12\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"01d5cddf-bcee-4193-89cf-816214bb4057\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"43a627e4-af9d-4908-9fb7-7ade3766cac2\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"angela@dunder-mifflin.com\",\n                \"first_name\": \"Angela\",\n                \"is_archived\": false,\n                \"last_name\": \"Martin\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"142ebafa-c045-4eac-a59f-923e1ae6ac57\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"da62a7e7-83c0-4a1c-a40b-9e0fe4bab3f2\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"9583d945-207b-418d-ab26-d445d1209d66"}],"id":"2eb02f60-66df-4678-a4ca-376f46e4f1f8","_postman_id":"2eb02f60-66df-4678-a4ca-376f46e4f1f8"},{"name":"Items","item":[{"name":"Create an item","id":"2c03c639-2e0d-4640-baef-bd88d6accade","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"attributes\": {\r\n\t\t\t\"amount\": {{amount}},\r\n\t\t\t\"extended\": {\r\n\t\t\t\t\"memo\": \"{{memo}}\"\r\n\t\t\t},\r\n\t\t\t\"kind\": \"{{kind}}\",\r\n\t\t\t\"payment_delivery_option\": \"{{payment_delivery_option}}\",\r\n\t\t\t\"reference\": \"{{reference}}\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"attachments\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"attributes\": {\r\n\t\t\t\t\t\t\t\"file\": \"{{base64_data_uri}}\",\r\n\t\t\t\t\t\t\t\"filename\": \"{{filename}}\"\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"type\": \"ItemAttachment\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"funding_account\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{funding_account_id}}\",\r\n\t\t\t\t\t\"type\": \"FundingAccount\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"item_approvers\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"type\": \"ItemApprover\",\r\n\t\t\t\t\t\t\"relationships\": {\r\n\t\t\t\t\t\t\t\"level\": {\r\n\t\t\t\t\t\t\t\t\"data\": {\r\n\t\t\t\t\t\t\t\t\t\"id\": \"{{first_item_approval_level_id}}\",\r\n\t\t\t\t\t\t\t\t\t\"type\": \"CompanySettingsItemApprovalLevel\"\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\"membership\": {\r\n\t\t\t\t\t\t\t\t\"data\": {\r\n\t\t\t\t\t\t\t\t\t\"id\": \"{{first_item_approval_level_approver_id}}\",\r\n\t\t\t\t\t\t\t\t\t\"type\": \"Membership\"\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"line_items\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"attributes\": {\r\n\t\t\t\t\t\t\t\"account\": {\r\n\t\t\t\t\t\t\t\t\"id\": \"{{ledger_account_id}}\"\r\n\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\"amount\": {{line_amount}},\r\n\t\t\t\t\t\t\t\"billable\": \"{{billable}}\",\r\n\t\t\t\t\t\t\t\"class\": {\r\n\t\t\t\t\t\t\t\t\"id\": \"{{class_id}}\"\r\n\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\"customer_ref\": \"{{customer_ref}}\",\r\n\t\t\t\t\t\t\t\"description\": \"{{description}}\",\r\n\t\t\t\t\t\t\t\"is_taxable\": {{is_taxable}},\r\n\t\t\t\t\t\t\t\"item\": {\r\n\t\t\t\t\t\t\t\t\"id\": \"{{ledger_item_id}}\"\r\n\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\"quantity\": {{quantity}},\r\n\t\t\t\t\t\t\t\"style\": \"account\",\r\n\t\t\t\t\t\t\t\"unit_price\": {{unit_price}}\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"type\": \"LineItem\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"partnership\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{partnership_id}}\",\r\n\t\t\t\t\t\"type\": \"Partnership\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"partner_receivable_account\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{partner_receivable_account_id}}\",\r\n\t\t\t\t\t\"type\": \"FundingAccount\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"item_members\": {\r\n\t\t\t\t\"data\": [\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"attributes\": {\r\n\t\t\t\t\t\t\t\"access_item\": \"{{access_item}}\"\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"relationships\": {\r\n\t\t\t\t\t\t\t\"partnership_member\": {\r\n\t\t\t\t\t\t\t\t\"data\": {\r\n\t\t\t\t\t\t\t\t\t\"id\": \"{{partnership_member_id}}\",\r\n\t\t\t\t\t\t\t\t\t\"type\": \"PartnershipMember\"\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\"type\": \"ItemMember\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t},\r\n\t\t\t\"requester\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"id\": \"{{membership_id}}\",\r\n\t\t\t\t\t\"type\": \"Membership\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t},\r\n\t\t\"type\": \"Item\"\r\n\t}\r\n}"},"url":"https://api.sandbox.routable.com/items/","description":"<!-- Important: The following heading has been added to support stable, named links within the API docs -->`QBO` provides different options depending on whether you are creating an item associated with an account or a product/service.\n\nRoutable includes the `QBO` specific attributes in the `line_items` object in the request.\n\n- If the item is a payment, include either the `account` or `item` attribute to identify whether the payment is associated with an account or product/service in your `QBO` ledger. \n\n- For invoices, `item` is required. You cannot create invoices against accounts.\n\nWhen creating items while connected to `QuickBooks Online`, the following data is also needed.\n\nTo see documentation for fields that are applicable to all ledgers see [Create an item](#73411eae-1024-457f-843d-1c3fb5f28e15)\n\n#### Configured and Custom Fields\n\nWhen creating items with QBO, there is a chance that you will be met with validation errors for fields that are specifically enabled and disabled based on your configuration.\n\nIf you run into this, the easiest way to move forward is to...\n\n1. Connect with your finance team and have them build the \"perfect\" payment in the Routable Dashboard.\n2. Take a screenshot of the payment before sending it (or don't send it at all).\n3. Email developers@routable.com with the screenshot and we'll provide the additional data you'll need to add to your payload to proceed!\n\n![The perfect payment](https://files.readme.io/1478576-pasted_image_0.png)\n\n&nbsp;\n\n## Data\n\nType: `Item`\n\n&nbsp;\n\n### Attributes\n\nThe `attributes` object defines details about the item.\n\n| Field                             | Type         | Required    | Description                                                  |\n| --------------------------------- | ------------ | ----------- | ------------------------------------------------------------ |\n| date_issued                       | string       | no          | The date the payment will be sent or the statement date that will appear on the invoice. |\n| extended                          | object      | conditional          | includes details about discounts and taxes.     |\n\n#### extended (payable)\nFor payables associated with a QBO ledger:\n\n| Field                | Type    | Required | Description                                                  |\n| -------------------- | ------- | -------- | ------------------------------------------------------------ |\n| memo                 | string  | no       | A comment about the invoice that is used by QBO. |\n\n#### extended (receivable)\nFor receivables associated with a QBO ledger:\n\n| Field                | Type    | Required | Description                                                  |\n| -------------------- | ------- | -------- | ------------------------------------------------------------ |\n| discount             | number  | no       | Defines the percent or amount of the discount applied to the invoice subtotal. |\n| discount_calculation | string  | no       | Defines the way the discount is applied: `percentage` or `amount`. |\n| discount_style       | string  | no       | Defines whether the discount will be applied `pre_tax` or `post_tax`. |\n| memo                 | string  | no       | A comment about the invoice that is used by QBO. |\n| tax_auto             | boolean | no       | A boolean identifying whether the tax was calculated automatically or manually. |\n| tax_code             | object<br>`{\"id\": \"string\"}`  | no       | A code corresponding to the tax rules that were applied to the order. Tax rules can be set up in QBO. |\n\nNote: If any of `discount`, `discount_calculation`, or `discount_style` are supplied, **all** three of their values must be supplied.\n\n### Relationships\n\nA list of objects that define details about the item.\n\n&nbsp;\n\n#### Line Items\n\nA list of objects that identify the goods shipped and/or services rendered that are covered by the item.\n\n*Field*: `line_items`\n\n##### Data\n\nAn array that includes definitions of each line item.\n\n*Array*: yes\n\n###### Attributes Object\n\n| Field        | Type    | Required    | Description                                                  |\n| ------------ | ------- | ----------- | ------------------------------------------------------------ |\n| account   | object<br>`{\"id\": \"string\"}`  | conditional | The reference number for the account in your `QBO` ledger. Required if the payment request or invoice is associated with an account that records amounts allocated against a specific use. See the [QBO Account object documentation](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/most-commonly-used/account) for details.<br />Either account or item is required depending on the type of item you are creating. You must not include both. |\n| extended     | object | conditional | Additional details about the payment |\n| is_taxable   | boolean | no          | A boolean that identifies whether tax should be collected for the item. See the [QBO item object documentation](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/item) for more details. The `billable` attribute must be set to `billable` to set the item as taxable. |\n| item      | object<br>`{\"id\": \"string\"}`  | conditional | The reference number for the item in your `QBO` ledger. Required if the payment request or invoice is for an product or service that your company buys, sells, or re-sells. See the [QBO Item object documentation](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/most-commonly-used/item) for details.<br />Either item or account is required depending on the type of item you are creating. You must not include both. |\n| tax_amount        | number  | no         | The amount of tax associated with this line item. |\n\n\n###### extended (payable)\n\n| Field        | Type    | Required    | Description                                                  |\n| ------------ | ------- | ----------- | ------------------------------------------------------------ |\n| class     | object<br>`{\"id\": \"string\"}`  | no          | The QBO-generated identifier for the class that the item is associated with. See the [QBO class object documentation](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/class) for details. You must enable classes in `QBO` to use this attribute. |\n\n###### extended (receivable)\n\n| Field        | Type    | Required    | Description                                                  |\n| ------------ | ------- | ----------- | ------------------------------------------------------------ |\n| billable     | string  | no          | Identifies whether you will bill a customer for the item: `billable` or `not-billable`. |\n| class     | object<br>`{\"id\": \"string\"}`  | no          | The QBO-generated identifier for the class that the item is associated with. See the [QBO class object documentation](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/class) for details. You must enable classes in `QBO` to use this attribute. |\n| customer_ref | string  | no          | The reference number for the partner that you use with `QBO`.                |\n| markup | number | no | Markup amount expressed as a percent of charges already entered in the current transaction. To enter a rate of 10% use 10.0, not 0.01. |\n\n###### Field\n\n| Field | Type   | Required | Description                                      |\n| ----- | ------ | -------- | ------------------------------------------------ |\n| type  | string | yes      | The value for this attribute must be `LineItem`. |"},"response":[{"id":"3c377ee2-ea86-43ff-878a-290012535f3d","name":"Create an item - Receivable","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"amount\": 996.3,\r\n            \"date_due\": \"2020-11-10\",\r\n            \"date_issued\": \"2020-10-11\",\r\n            \"kind\": \"receivable\",\r\n            \"payment_delivery_methods_accepted\": [\r\n                \"ach\"\r\n            ],\r\n            \"payment_terms\": \"net30\",\r\n            \"reference\": \"Customer Ref # DM1234\",\r\n            \"extended\": {\r\n                \"discount\": 10,\r\n                \"discount_calculation\": \"percentage\",\r\n                \"discount_style\": \"pre_tax\",\r\n                \"memo\": \"Thanks.\",\r\n                \"message\": \"Hi Kelly,\\nThanks for choosing to work with us for your event. The invoice is attached.\",\r\n                \"tax_auto\": false,\r\n                \"tax_code\": {\r\n                    \"id\": \"2\"\r\n                }\r\n            }\r\n        },\r\n        \"relationships\": {\r\n            \"attachments\": {\r\n                \"data\": []\r\n            },\r\n            \"funding_account\": {\r\n                \"data\": {\r\n                    \"id\": \"de2e22ab-a806-49c0-9d77-113ed13e1081\",\r\n                    \"type\": \"FundingAccount\"\r\n                }\r\n            },\r\n            \"item_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"access_item\": \"actionable\"\r\n                        },\r\n                        \"relationships\": {\r\n                            \"partnership_member\": {\r\n                                \"data\": {\r\n                                    \"id\": \"af8ec8b5-3898-424e-a810-7d18f47a39ff\",\r\n                                    \"type\": \"PartnershipMember\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"ItemMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"line_items\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"amount\": 750,\r\n                            \"description\": \"Setup, breakdown.\",\r\n                            \"discount\": 0,\r\n                            \"is_taxable\": true,\r\n                            \"item\": {\r\n                                \"id\": \"2\"\r\n                            },\r\n                            \"quantity\": 10,\r\n                            \"style\": \"item\",\r\n                            \"unit_price\": 75,\r\n                            \"extended\": {\r\n                                \"class\": {\r\n                                    \"id\": \"5000000000000151559\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"LineItem\"\r\n                    },\r\n                    {\r\n                        \"attributes\": {\r\n                            \"amount\": 275,\r\n                            \"description\": \"Rock Fountain\",\r\n                            \"discount\": 0,\r\n                            \"is_taxable\": true,\r\n                            \"item\": {\r\n                                \"id\": \"5\"\r\n                            },\r\n                            \"quantity\": 1,\r\n                            \"style\": \"item\",\r\n                            \"unit_price\": 275,\r\n                            \"extended\": {\r\n                                \"class\": {\r\n                                    \"id\": \"5000000000000151559\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"LineItem\"\r\n                    }\r\n                ]\r\n            },\r\n            \"partnership\": {\r\n                \"data\": {\r\n                    \"id\": \"84defc73-83b6-4222-908d-44a01c9e311d\",\r\n                    \"type\": \"Partnership\"\r\n                }\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"01d5cddf-bcee-4193-89cf-816214bb4057\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Item\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"51de0e7d-ec0b-4cbd-b12b-867732171d78\",\n        \"attributes\": {\n            \"amount\": \"996.30\",\n            \"amount_due\": \"996.30\",\n            \"amount_original\": \"996.30\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2020-11-10\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2020-10-11\",\n            \"date_scheduled\": null,\n            \"date_sent\": \"2020-10-11\",\n            \"date_status_change\": \"2020-10-11T20:11:56.156426Z\",\n            \"days_until_due\": 30,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"has_attachments\": true,\n            \"invoice_number\": \"1040\",\n            \"is_creator\": true,\n            \"is_payment_adjustment\": false,\n            \"kind\": \"receivable\",\n            \"ledger_link\": null,\n            \"ledger_ref\": \"157\",\n            \"ledger_status\": \"pending\",\n            \"partner_notified\": true,\n            \"partner_reference\": null,\n            \"payment_delivery_method\": null,\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_delivery_option\": null,\n            \"payment_terms\": \"net30\",\n            \"reference\": \"Customer Ref # DM1234\",\n            \"status\": \"pending\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2020-10-11T20:11:56.156426Z\",\n                    \"status\": \"pending\"\n                }\n            ],\n            \"thread_modified\": \"2020-10-11T20:11:56.018216Z\"\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 1\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemAttachment\",\n                        \"id\": \"86c6c924-d9c2-4a86-a307-3050fc022cb8\"\n                    }\n                ]\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"de2e22ab-a806-49c0-9d77-113ed13e1081\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"33913df9-0bd9-4fb9-a8ab-2d4d62bd93f0\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"f8a50e1a-136a-404c-83d7-ad0b37068fe6\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"d3454fce-130b-4740-83a6-5202dbb78f63\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": null\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"84defc73-83b6-4222-908d-44a01c9e311d\"\n                }\n            },\n            \"sender\": {\n                \"data\": {\n                    \"type\": \"Membership\",\n                    \"id\": \"01d5cddf-bcee-4193-89cf-816214bb4057\"\n                }\n            },\n            \"tag_links\": {\n                \"data\": []\n            },\n            \"thread\": {\n                \"data\": {\n                    \"type\": \"Thread\",\n                    \"id\": \"7bac8ee4-b14a-4867-af67-010ed337029b\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"d3454fce-130b-4740-83a6-5202dbb78f63\",\n            \"attributes\": {\n                \"name\": \"Mifflin Dunder\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"de2e22ab-a806-49c0-9d77-113ed13e1081\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"c60c6052-e32c-454b-9af3-c0992171b782\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"38355261-0013-47e0-a6c0-99231893ef12\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"c60c6052-e32c-454b-9af3-c0992171b782\",\n            \"attributes\": {\n                \"account_number\": \"20200726233414\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"103000648\"\n            }\n        },\n        {\n            \"type\": \"ItemAttachment\",\n            \"id\": \"86c6c924-d9c2-4a86-a307-3050fc022cb8\",\n            \"attributes\": {\n                \"file\": \"https://routable-sandbox.s3.amazonaws.com/data/item/attachments/9aa95953-ecc0-4f1b-8920-fef37bd96c55.pdf?AWSAccessKeyId=AKIAY3LUTX62WADQBXCE&Signature=yNPK2MHgEfl%2FT7sw1pB67fELTUs%3D&Expires=1605039116\",\n                \"file_hash\": \"6f8c81b091766f0e672f6b0565602e1a0561a579\",\n                \"file_type\": \"application/pdf\",\n                \"file_size\": -1,\n                \"filename\": \"1040.pdf\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"33913df9-0bd9-4fb9-a8ab-2d4d62bd93f0\",\n            \"attributes\": {\n                \"access_item\": \"self_managed\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"bda7a1a5-c1e0-4155-ae8b-a84a9a57f052\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"f8a50e1a-136a-404c-83d7-ad0b37068fe6\",\n            \"attributes\": {\n                \"access_item\": \"actionable\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"af8ec8b5-3898-424e-a810-7d18f47a39ff\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"84defc73-83b6-4222-908d-44a01c9e311d\",\n            \"attributes\": {\n                \"customer_ref\": \"60\",\n                \"name\": \"Mifflin Dunder\",\n                \"vendor_ref\": null\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"af8ec8b5-3898-424e-a810-7d18f47a39ff\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"actionable\",\n                \"email\": \"kelly@dunder-mifflin.com\",\n                \"first_name\": \"Kelly\",\n                \"is_archived\": false,\n                \"last_name\": \"Kapoor\",\n                \"notification_general\": \"actionable\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"d3454fce-130b-4740-83a6-5202dbb78f63\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"8424eef5-1dcf-4404-b1b3-965048ec3b05\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"bda7a1a5-c1e0-4155-ae8b-a84a9a57f052\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"docs2@totallybodacious.com\",\n                \"first_name\": \"Paul\",\n                \"is_archived\": false,\n                \"last_name\": \"Clifton\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+15234473337\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"38355261-0013-47e0-a6c0-99231893ef12\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"01d5cddf-bcee-4193-89cf-816214bb4057\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"Thread\",\n            \"id\": \"7bac8ee4-b14a-4867-af67-010ed337029b\",\n            \"attributes\": {\n                \"is_unread\": false,\n                \"modified\": \"2020-10-11T20:11:56.018216Z\"\n            }\n        }\n    ]\n}"},{"id":"caaf24d5-a293-4b81-a5f6-e2ba73b6fbee","name":"Create an item - Payable","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"attributes\": {\r\n            \"amount\": 375,\r\n            \"date_due\": \"2020-10-11\",\r\n            \"date_issued\": \"2020-10-11\",\r\n            \"invoice_number\": \"123456789\",\r\n            \"kind\": \"payable\",\r\n            \"payment_delivery_option\": \"ach_expedited\",\r\n            \"payment_terms\": \"see_invoice\",\r\n            \"reference\": null,\r\n            \"extended\": {\r\n                \"message\": \"Thanks!\"\r\n            }\r\n        },\r\n        \"relationships\": {\r\n            \"attachments\": {\r\n                \"data\": []\r\n            },\r\n            \"funding_account\": {\r\n                \"data\": {\r\n                    \"id\": \"de2e22ab-a806-49c0-9d77-113ed13e1081\",\r\n                    \"type\": \"FundingAccount\"\r\n                }\r\n            },\r\n            \"item_members\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"access_item\": \"actionable\"\r\n                        },\r\n                        \"relationships\": {\r\n                            \"partnership_member\": {\r\n                                \"data\": {\r\n                                    \"id\": \"43a627e4-af9d-4908-9fb7-7ade3766cac2\",\r\n                                    \"type\": \"PartnershipMember\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"ItemMember\"\r\n                    }\r\n                ]\r\n            },\r\n            \"line_items\": {\r\n                \"data\": [\r\n                    {\r\n                        \"attributes\": {\r\n                            \"amount\": 125,\r\n                            \"billable\": \"billable\",\r\n                            \"customer_ref\": \"60\",\r\n                            \"description\": \"Rock Fountain\",\r\n                            \"is_taxable\": true,\r\n                            \"item\": {\r\n                                \"id\": \"5\"\r\n                            },\r\n                            \"quantity\": 1,\r\n                            \"style\": \"item\",\r\n                            \"unit_price\": 125,\r\n                            \"extended\": { \r\n                                \"class\": { \r\n                                    \"id\": \"5000000000000151559\"\r\n                                }\r\n                            }\r\n                        },\r\n                        \"type\": \"LineItem\"\r\n                    },\r\n                    {\r\n                        \"attributes\": {\r\n                            \"account\": {\r\n                                \"id\": \"58\"\r\n                            },\r\n                            \"amount\": 250,\r\n                            \"billable\": \"billable\",\r\n                            \"class\": {\r\n                                \"id\": \"5000000000000151559\"\r\n                            },\r\n                            \"customer_ref\": \"60\",\r\n                            \"description\": \"Transportation\",\r\n                            \"is_taxable\": true,\r\n                            \"quantity\": 1,\r\n                            \"style\": \"account\",\r\n                            \"unit_price\": 250\r\n                        },\r\n                        \"type\": \"LineItem\"\r\n                    }\r\n                ]\r\n            },\r\n            \"partner_receivable_account\": {\r\n                \"data\": {\r\n                    \"id\": \"ba9147b8-6dab-4a64-bdaf-2cad71df801f\",\r\n                    \"type\": \"FundingAccount\"\r\n                }\r\n            },\r\n            \"partnership\": {\r\n                \"data\": {\r\n                    \"id\": \"d030e2b0-d5d5-49fa-9b32-efc461347e86\",\r\n                    \"type\": \"Partnership\"\r\n                }\r\n            },\r\n            \"requester\": {\r\n                \"data\": {\r\n                    \"id\": \"01d5cddf-bcee-4193-89cf-816214bb4057\",\r\n                    \"type\": \"Membership\"\r\n                }\r\n            }\r\n        },\r\n        \"type\": \"Item\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/"},"code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"a3d3dba1-67b7-4dca-b841-4123baca9cba\",\n        \"attributes\": {\n            \"amount\": \"375.00\",\n            \"amount_due\": \"375.00\",\n            \"amount_original\": \"375.00\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2020-10-11\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2020-10-11\",\n            \"date_scheduled\": null,\n            \"date_sent\": \"2020-10-11\",\n            \"date_status_change\": \"2020-10-11T17:06:55.544837Z\",\n            \"days_until_due\": 0,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"has_attachments\": false,\n            \"invoice_number\": \"123456789\",\n            \"is_creator\": true,\n            \"is_payment_adjustment\": false,\n            \"kind\": \"payable\",\n            \"ledger_link\": null,\n            \"ledger_ref\": \"153\",\n            \"ledger_status\": \"pending\",\n            \"partner_notified\": true,\n            \"partner_reference\": null,\n            \"payment_delivery_method\": \"ach\",\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_delivery_option\": \"ach_expedited\",\n            \"payment_terms\": null,\n            \"reference\": null,\n            \"status\": \"processing\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2020-10-11T17:06:55.544837Z\",\n                    \"status\": \"processing\"\n                }\n            ],\n            \"thread_modified\": \"2020-10-11T17:06:55.496818Z\"\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 0\n                },\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"de2e22ab-a806-49c0-9d77-113ed13e1081\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"fc579910-9977-44d2-bd3f-75f69bcaeebb\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"ba03f923-626a-4e1d-a04c-572afd3f8438\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"142ebafa-c045-4eac-a59f-923e1ae6ac57\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"ba9147b8-6dab-4a64-bdaf-2cad71df801f\"\n                }\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"d030e2b0-d5d5-49fa-9b32-efc461347e86\"\n                }\n            },\n            \"sender\": {\n                \"data\": {\n                    \"type\": \"Membership\",\n                    \"id\": \"01d5cddf-bcee-4193-89cf-816214bb4057\"\n                }\n            },\n            \"tag_links\": {\n                \"data\": []\n            },\n            \"thread\": {\n                \"data\": {\n                    \"type\": \"Thread\",\n                    \"id\": \"2bc626dd-9ce0-400f-b1a7-7e06553bc1ed\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"142ebafa-c045-4eac-a59f-923e1ae6ac57\",\n            \"attributes\": {\n                \"name\": \"Dunder Mifflin\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"ba9147b8-6dab-4a64-bdaf-2cad71df801f\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"865de9be-2459-4cf8-9834-e514fb7bae80\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"142ebafa-c045-4eac-a59f-923e1ae6ac57\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"de2e22ab-a806-49c0-9d77-113ed13e1081\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"c60c6052-e32c-454b-9af3-c0992171b782\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"38355261-0013-47e0-a6c0-99231893ef12\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"865de9be-2459-4cf8-9834-e514fb7bae80\",\n            \"attributes\": {\n                \"account_number\": \"***3210\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"021000021\"\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"c60c6052-e32c-454b-9af3-c0992171b782\",\n            \"attributes\": {\n                \"account_number\": \"20200726233414\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"103000648\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"ba03f923-626a-4e1d-a04c-572afd3f8438\",\n            \"attributes\": {\n                \"access_item\": \"actionable\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"43a627e4-af9d-4908-9fb7-7ade3766cac2\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"fc579910-9977-44d2-bd3f-75f69bcaeebb\",\n            \"attributes\": {\n                \"access_item\": \"self_managed\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"0c72ec1a-c501-432a-b31e-2e44277e1d6d\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"d030e2b0-d5d5-49fa-9b32-efc461347e86\",\n            \"attributes\": {\n                \"customer_ref\": \"58\",\n                \"name\": \"Dunder Mifflin\",\n                \"vendor_ref\": \"59\"\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"0c72ec1a-c501-432a-b31e-2e44277e1d6d\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"docs2@totallybodacious.com\",\n                \"first_name\": \"Paul\",\n                \"is_archived\": false,\n                \"last_name\": \"Clifton\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+15234473337\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"38355261-0013-47e0-a6c0-99231893ef12\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"01d5cddf-bcee-4193-89cf-816214bb4057\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"43a627e4-af9d-4908-9fb7-7ade3766cac2\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"actionable\",\n                \"email\": \"angela@dunder-mifflin.com\",\n                \"first_name\": \"Angela\",\n                \"is_archived\": false,\n                \"last_name\": \"Martin\",\n                \"notification_general\": \"actionable\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"142ebafa-c045-4eac-a59f-923e1ae6ac57\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"da62a7e7-83c0-4a1c-a40b-9e0fe4bab3f2\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"Thread\",\n            \"id\": \"2bc626dd-9ce0-400f-b1a7-7e06553bc1ed\",\n            \"attributes\": {\n                \"is_unread\": false,\n                \"modified\": \"2020-10-11T17:06:55.496818Z\"\n            }\n        }\n    ]\n}"}],"_postman_id":"2c03c639-2e0d-4640-baef-bd88d6accade"}],"id":"d0d9d615-cdb3-40f9-a442-8b365e5f93d2","_postman_id":"d0d9d615-cdb3-40f9-a442-8b365e5f93d2"}],"id":"4e7048f7-71e3-46c6-bec3-930f894fd78a","description":"# QuickBooks Online Integration","event":[{"listen":"prerequest","script":{"id":"5d4f7bce-13d5-4606-af7c-3ea5c03d0adf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f06e697a-9794-4006-88e5-441607df8856","type":"text/javascript","exec":[""]}}],"_postman_id":"4e7048f7-71e3-46c6-bec3-930f894fd78a"},{"name":"NetSuite","item":[{"name":"Partnerships","item":[{"name":"Create a partnership","id":"58690eb5-4ab1-450e-bde3-a04ff9442b23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"external_ref\": \"{{external_ref}}\",\n            \"is_customer\": {{is_customer}},\n            \"is_vendor\": {{is_vendor}},\n            \"ledger_ref\": \"{{ledger_ref}}\"\n        },\n        \"relationships\": {\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"default_general\": \"{{default_general}}\",\n                            \"default_item\": \"{{default_item}}\",\n                            \"email\": \"{{contact_email}}\",\n                            \"first_name\": \"{{contact_first_name}}\",\n                            \"last_name\": \"{{contact_last_name}}\"\n                        },\n                        \"type\": \"PartnershipMember\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"attributes\": {\n                        \"company_type\": \"{{company_type}}\",\n                        \"name\": \"{{company_name}}\"\n                    },\n                    \"type\": \"Company\"\n                }\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"{{membership_id}}\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Partnership\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/","description":"<!-- Important: The following heading has been added to support stable, named links within the API docs -->\n###### Create a new partnership with NetSuite\n\nWhen creating partnerships while connected to `NetSuite`, the following data might also be needed.\n\nTo see documentation for fields that are applicable to all ledgers see [Create a Partnership](#bd78523a-a303-4493-a19e-4a77881ecb5a).\n\n## Data\n\nType: `Partnership`\n\n### Attributes\n\nThe `attributes` object includes details about the type of relationship between your company and the other company.\n\n| Field        | Type    | Required | Description                                                  |\n| ------------ | ------- | -------- | ------------------------------------------------------------ |\n| customer_ledger_id | string  | conditional | NetSuite's unique identifier for the customer. Required if the partner that you are adding already exists as a customer on your NetSuite ledger. |\n| vendor_ledger_id   | string  | conditional | NetSuite's unique identifier for the vendor. Required if the partner that you are adding already exists as a vendor on your NetSuite ledger. |\n\n## Response\n\nFor customers who have set up a ledger integration, Routable returns the following information in the response body as part of the `attributes` object. This information can help you identify the partner record on your ledger.\n\n### Attributes\n\n*Note:* This is not a complete list of attributes in the response body. This list includes attributes specific to ledger integrations.\n\n| Field                | Type    | Description                                                  |\n| -------------------- | ------- | ------------------------------------------------------------ |\n| customer_ref         | string  | The ledger's unique identifier for the customer.             |\n| is_ledger_only       | boolean | Indicates whether the Partnership exists on the ledger only or if it also exists in Routable's records: `true` indicates that the Partnership exists only on the ledger. |\n| vendor_ref           | string  | The ledger's unique identifier for the vendor.               |"},"response":[{"id":"daa4627f-ff1f-408a-912f-c1107b4a1da2","name":"Create a partnership - Relationship does not exist on NetSuite","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"external_ref\": \"123456\",\n            \"is_customer\": false,\n            \"is_vendor\": true\n        },\n        \"relationships\": {\n            \"partner\": {\n                \"data\": {\n                    \"attributes\": {\n                        \"company_type\": \"business\",\n                        \"name\": \"Dunder Mifflin\"\n                    },\n                    \"type\": \"Company\"\n                }\n            },\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"default_general\": \"actionable\",\n                            \"default_item\": \"actionable\",\n                            \"email\": \"angela@dunder-mifflin.com\",\n                            \"first_name\": \"Angela\",\n                            \"last_name\": \"Martin\"\n                        },\n                        \"type\": \"PartnershipMember\"\n                    }\n                ]\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"ebd596d6-6cb0-45c0-bed9-a206f031639b\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Partnership\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/partnerships/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Partnership\",\n        \"id\": \"37734af4-56d0-4cb5-919c-9b02e1efdb37\",\n        \"attributes\": {\n            \"created\": \"2021-02-18T00:06:26.724958Z\",\n            \"customer_ref\": null,\n            \"external_ref\": \"123456\",\n            \"is_customer\": false,\n            \"is_ledger_only\": false,\n            \"is_vendor\": true,\n            \"name\": \"Dunder Mifflin\",\n            \"partner_status\": \"added\",\n            \"vendor_ref\": \"20441\"\n        },\n        \"relationships\": {\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"de7a0343-aa98-44d2-8701-b5398aa730d3\"\n                }\n            },\n            \"partnership_members\": {\n                \"data\": [\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"f4541e59-e410-4aac-9bad-aaf8322c0d5a\"\n                    },\n                    {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"bbe34b73-7b7b-4f5a-aeb8-ccc11f246963\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"de7a0343-aa98-44d2-8701-b5398aa730d3\",\n            \"attributes\": {\n                \"company_type\": \"business\",\n                \"name\": \"Dunder Mifflin\"\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"bbe34b73-7b7b-4f5a-aeb8-ccc11f246963\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"actionable\",\n                \"email\": \"angela@dunder-mifflin.com\",\n                \"first_name\": \"Angela\",\n                \"is_archived\": false,\n                \"last_name\": \"Martin\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"de7a0343-aa98-44d2-8701-b5398aa730d3\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"2714b9a5-2331-42e4-a840-96c1ac04b327\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"f4541e59-e410-4aac-9bad-aaf8322c0d5a\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"philco-ns@routable.com\",\n                \"first_name\": \"Phil\",\n                \"is_archived\": false,\n                \"last_name\": \"Co\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+15374242840\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"8f1549f0-6a58-4530-9922-148f9a812738\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"a5638173-3eef-4f84-9509-e72e6d686184\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"58690eb5-4ab1-450e-bde3-a04ff9442b23"}],"id":"5e25dd96-fb6e-422d-a754-5400967f3d55","_postman_id":"5e25dd96-fb6e-422d-a754-5400967f3d55"},{"name":"Items","item":[{"name":"Create an item","id":"17c3a0ba-a4b8-4e9a-8f74-e07e572d38ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"amount\": {{amount}},\n            \"kind\": \"{{kind}}\",\n            \"payment_delivery_option\": \"{{payment_delivery_option}}\",\n            \"reference\": \"{{reference}}\"\n        },\n        \"relationships\": {\n            \"approver_selected\": {\n                \"data\": {\n                    \"id\": \"{{approver_id}}\",\n                    \"type\": \"Membership\"\n                }\n            },\n            \"attachments\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"file\": \"{{base64_data_uri}}\",\n                            \"filename\": \"{{filename}}\"\n                        },\n                        \"type\": \"ItemAttachment\"\n                    }\n                ]\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"id\": \"{{funding_account_id}}\",\n                    \"type\": \"FundingAccount\"\n                }\n            },\n            \"item_members\": {\n                \"data\": [\n                    {\n                        \"relationships\": {\n                            \"partnership_member\": {\n                                \"data\": {\n                                    \"id\": \"{{partnership_member_id}}\",\n                                    \"type\": \"PartnershipMember\"\n                                }\n                            }\n                        },\n                        \"type\": \"ItemMember\"\n                    }\n                ]\n            },\n            \"line_items\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"amount\": {{line_amount}},\n                            \"description\": \"{{description}}\",\n                            \"quantity\": {{quantity}},\n                            \"style\": \"item\",\n                            \"unit_price\": {{unit_price}}\n                        },\n                        \"type\": \"LineItem\"\n                    }\n                ]\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"id\": \"{{partnership_id}}\",\n                    \"type\": \"Partnership\"\n                }\n            },\n            \"partner_receivable_account\": {\n                \"data\": {\n                    \"id\": \"{{partner_receivable_account_id}}\",\n                    \"type\": \"FundingAccount\"\n                }\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"{{membership_id}}\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Item\"\n    },\n    \"meta\": {\n        \"message\": \"{{message}}\"\n    }\n}"},"url":"https://api.sandbox.routable.com/items/","description":"<!-- Important: The following heading has been added to support stable, named links within the API docs -->NetSuite provides different options depending on whether you are creating an item associated with an account or a product/service.\n\nTo see documentation for fields that are applicable to all ledgers see [Create an item](#73411eae-1024-457f-843d-1c3fb5f28e15)\n\n#### Configured and Custom Fields\n\nWhen creating items with NetSuite, there is a chance that you will be met with validation errors for fields that are specifically enabled and disabled based on your configuration.\n\nIf you run into this, the easiest way to move forward is to...\n\n1. Connect with your finance team and have them build the \"perfect\" payment in the Routable Dashboard.\n2. Take a screenshot of the payment before sending it (or don't send it at all).\n3. Email developers@routable.com with the screenshot and we'll provide the additional data you'll need to add to your payload to proceed!\n\n![The perfect payment](https://files.readme.io/aa212f7-Screen_Shot_2021-06-24_at_11.49.15_AM.png)\n\n\n## Data\n\nType: `Item`\n\n### Attributes\n\nThe `attributes` object defines details about the item.\n\n| Field                 | Type                         | Required    | Description |\n|-----------------------|------------------------------|-------------|-------------|\n| extended              | object                       | yes         | Additional details about the payment |\n\n#### extended (payable)\nFor payables associated with a NetSuite ledger:\n\n| Field                 | Type                         | Required    | Description |\n|-----------------------|------------------------------|-------------|-------------|\n| account               | object<br>`{\"id\": \"string\"}` | no          | The reference id for the account in NetSuite that will be affected by this item. |\n| class                 | object<br>`{\"id\": \"string\"}` | conditional | When classes are enabled on NetSuite, the reference id for the class that this item should be associated with. |\n| location              | object<br>`{\"id\": \"string\"}` | conditional | When locations are enabled on NetSuite, the reference id for a location that this item should be associated with. Required when NetSuite is configured to require locations. |\n| memo                  | string                       | no          | A comment about the item that is used by NetSuite. |\n| posting_period        | object<br>`{\"id\": \"string\"}` | no          | The reference id for a posting period that this item should be associated with. |\n\n#### extended (receivable)\nFor receivables associated with a NetSuite ledger:\n\n| Field                 | Type                         | Required    | Description |\n|-----------------------|------------------------------|-------------|-------------|\n| class                 | object<br>`{\"id\": \"string\"}` | conditional | When classes are enabled on NetSuite, the reference id for the class that this item should be associated with. |\n| department            | object<br>`{\"id\": \"string\"}` | conditional | When departments are enabled on NetSuite, the reference id for the department that this item should be associated with. |\n| location              | object<br>`{\"id\": \"string\"}` | conditional | When locations are enabled on NetSuite, the reference id for a location that this item should be associated with. Required when NetSuite is configured to require locations. |\n| posting_period        | object<br>`{\"id\": \"string\"}` | no          | The reference id for a posting period that this item should be associated with. |\n\n### Relationships\n\nA list of objects that define details about the item.\n\n#### Line Items\n\nA list of objects that identify the goods shipped and/or services rendered that are covered by the item.\n\n*Field*: `line_items`\n\n##### Data\n\nAn array that includes definitions of each line item.\n\n*Array*: yes\n\n###### Attributes Object\n\n\n| Field                 | Type                         | Required    | Description |\n|-----------------------|------------------------------|-------------|-------------|\n| account               | object<br>`{\"id\": \"string\"}` | conditional | The reference id for the account in NetSuite that will be affected by this line item. Required when the line item style is `account`. |\n| extended              | object                       | yes         | Additional details about the line item|\n| item                  | object<br>`{\"id\": \"string\"}` | conditional | The reference id for the item in NetSuite that will be associated with this line item. Required when the line item style is `item`. |\n| style                 | string                       | yes         | The style of this line item: `account` or `item`. When the item is a receivable, only `item` is allowed. |\n| tax                   | object<br>`{\"id\": \"string\"}` | conditional | The reference id for the tax in NetSuite that will be associated with this line item. Required when the line item style is `item`.  |\n\n###### extended (payable)\n\n| Field                 | Type                         | Required    | Description |\n|-----------------------|------------------------------|-------------|-------------|\n| amortiz_start_date    | date string                  | conditional | When amortization is enabled on NetSuite, this is the amortization start date. |\n| amortization_end_date | date string                  | conditional | When amortization is enabled on NetSuite, this is the amortization end date. |\n| amortization_residual | string                       | conditional | When amortization is enabled on NetSuite, this is the amortization residual rate. |\n| amortization_sched    | object<br>`{\"id\": \"string\"}` | conditional | When amortization is enabled on NetSuite, this is the amortization schedule. |\n| class                 | object<br>`{\"id\": \"string\"}` | conditional | When classes are enabled on NetSuite, the reference id for a class that this line item should be associated with. |\n| customer_ref          | string                       | conditional | The reference id for the customer that this line item should be associated with. |\n| department            | object<br>`{\"id\": \"string\"}` | conditional | When departments are enabled on NetSuite, the department id that this line item should be associated with. |\n| location              | object<br>`{\"id\": \"string\"}` | conditional | When locations are enabled on NetSuite, the reference id for the location that this line item should be associated with. |\n\n###### extended (receivable)\n\n| Field                 | Type                         | Required    | Description |\n|-----------------------|------------------------------|-------------|-------------|\n| class                 | object<br>`{\"id\": \"string\"}` | conditional | When classes are enabled on NetSuite, the reference id for a class that this line item should be associated with. |\n| location              | object<br>`{\"id\": \"string\"}` | conditional | When locations are enabled on NetSuite, the reference id for a location that this line item should be associated with. Required when NetSuite is configured to require locations. |\n\n###### Field\n\n| Field                 | Type                         | Required    | Description |\n|-----------------------|------------------------------|-------------|-------------|\n| type                  | string                       | yes         | The value for this attribute must be `LineItem`. |"},"response":[{"id":"508d333c-0ca1-4c8a-b57e-f659f271e58c","name":"Create an item - Payable","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"amount\": 375,\n            \"date_due\": \"2021-10-11\",\n            \"date_issued\": \"2021-02-17\",\n            \"invoice_number\": \"123456789\",\n            \"kind\": \"payable\",\n            \"payment_delivery_option\": \"ach_expedited\",\n            \"reference\": null,\n            \"extended\": {\n                \"location\": {\n                    \"id\": \"21\"\n                }\n            }\n        },\n        \"relationships\": {\n            \"attachments\": {\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"id\": \"1ea4edcc-f3e9-473f-8e75-2b28b96ef869\",\n                    \"type\": \"FundingAccount\"\n                }\n            },\n            \"item_members\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"access_item\": \"actionable\"\n                        },\n                        \"relationships\": {\n                            \"partnership_member\": {\n                                \"data\": {\n                                    \"id\": \"bbe34b73-7b7b-4f5a-aeb8-ccc11f246963\",\n                                    \"type\": \"PartnershipMember\"\n                                }\n                            }\n                        },\n                        \"type\": \"ItemMember\"\n                    }\n                ]\n            },\n            \"line_items\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"amount\": 125,\n                            \"description\": \"Rock Fountain\",\n                            \"item\": {\n                                \"id\": \"501\"\n                            },\n                            \"quantity\": 1,\n                            \"style\": \"item\",\n                            \"unit_price\": 125\n                        },\n                        \"type\": \"LineItem\"\n                    },\n                    {\n                        \"attributes\": {\n                            \"account\": {\n                                \"id\": \"156\"\n                            },\n                            \"amount\": 250,\n                            \"description\": \"Transportation\",\n                            \"quantity\": 1,\n                            \"style\": \"account\",\n                            \"unit_price\": 250\n                        },\n                        \"type\": \"LineItem\"\n                    }\n                ]\n            },\n            \"partner_receivable_account\": {\n                \"data\": {\n                    \"id\": \"64ba4d38-8e31-485e-960c-1702649b3d30\",\n                    \"type\": \"FundingAccount\"\n                }\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"id\": \"37734af4-56d0-4cb5-919c-9b02e1efdb37\",\n                    \"type\": \"Partnership\"\n                }\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"a5638173-3eef-4f84-9509-e72e6d686184\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Item\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"3f203766-3e96-4d43-a258-5483387fe39c\",\n        \"attributes\": {\n            \"amount\": \"375.00\",\n            \"amount_due\": \"375.00\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2021-10-11\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2021-02-17\",\n            \"date_scheduled\": null,\n            \"date_sent\": \"2021-02-17\",\n            \"date_status_change\": \"2021-02-18T00:47:26.632820Z\",\n            \"days_until_due\": 236,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"funding_provider_memo\": null,\n            \"has_attachments\": false,\n            \"invoice_number\": \"123456789\",\n            \"is_creator\": true,\n            \"kind\": \"payable\",\n            \"ledger_ref\": \"45129\",\n            \"ledger_status\": \"pending\",\n            \"payment_delivery_method\": \"ach\",\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_delivery_option\": \"ach_expedited\",\n            \"payment_terms\": null,\n            \"reference\": null,\n            \"status\": \"processing\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2021-02-18T00:47:26.632820Z\",\n                    \"status\": \"processing\"\n                }\n            ]\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 0\n                },\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"1ea4edcc-f3e9-473f-8e75-2b28b96ef869\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"4e95c9cd-7113-4cc4-b84f-b1b82b6e5985\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"887c7bc2-b2b5-4e7c-8fa6-50f78dce5b22\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"de7a0343-aa98-44d2-8701-b5398aa730d3\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"64ba4d38-8e31-485e-960c-1702649b3d30\"\n                }\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"37734af4-56d0-4cb5-919c-9b02e1efdb37\"\n                }\n            },\n            \"tag_links\": {\n                \"data\": []\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"de7a0343-aa98-44d2-8701-b5398aa730d3\",\n            \"attributes\": {\n                \"name\": \"Dunder Mifflin\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"1ea4edcc-f3e9-473f-8e75-2b28b96ef869\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"23ef1c76-cbe0-4d64-a883-a788371cf48e\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"8f1549f0-6a58-4530-9922-148f9a812738\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"64ba4d38-8e31-485e-960c-1702649b3d30\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"a5f18f7a-7f0b-4eca-b532-0022b8ceb87f\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"de7a0343-aa98-44d2-8701-b5398aa730d3\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"23ef1c76-cbe0-4d64-a883-a788371cf48e\",\n            \"attributes\": {\n                \"account_number\": \"22424\",\n                \"institution_name\": \"United Bank\",\n                \"routing_number\": \"056008849\"\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"a5f18f7a-7f0b-4eca-b532-0022b8ceb87f\",\n            \"attributes\": {\n                \"account_number\": \"***8150\",\n                \"institution_name\": \"Citizens Bank Na\",\n                \"routing_number\": \"011401533\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"4e95c9cd-7113-4cc4-b84f-b1b82b6e5985\",\n            \"attributes\": {\n                \"access_item\": \"self_managed\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"f4541e59-e410-4aac-9bad-aaf8322c0d5a\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"887c7bc2-b2b5-4e7c-8fa6-50f78dce5b22\",\n            \"attributes\": {\n                \"access_item\": \"actionable\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"bbe34b73-7b7b-4f5a-aeb8-ccc11f246963\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"37734af4-56d0-4cb5-919c-9b02e1efdb37\",\n            \"attributes\": {\n                \"customer_ref\": null,\n                \"name\": \"Dunder Mifflin\",\n                \"vendor_ref\": \"20441\"\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"bbe34b73-7b7b-4f5a-aeb8-ccc11f246963\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"actionable\",\n                \"email\": \"angela@dunder-mifflin.com\",\n                \"first_name\": \"Angela\",\n                \"is_archived\": false,\n                \"last_name\": \"Martin\",\n                \"notification_general\": \"none\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"de7a0343-aa98-44d2-8701-b5398aa730d3\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"2714b9a5-2331-42e4-a840-96c1ac04b327\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"f4541e59-e410-4aac-9bad-aaf8322c0d5a\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"philco-ns@routable.com\",\n                \"first_name\": \"Phil\",\n                \"is_archived\": false,\n                \"last_name\": \"Co\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+15374242840\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"8f1549f0-6a58-4530-9922-148f9a812738\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"a5638173-3eef-4f84-9509-e72e6d686184\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"},{"id":"04b40927-f491-49e1-a3bb-b5d7100a8e5d","name":"Create an item - Receivable","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"amount\": 1099.32,\n            \"date_due\": \"2021-11-10\",\n            \"date_issued\": \"2021-02-14\",\n            \"kind\": \"receivable\",\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_terms\": \"net30\",\n            \"reference\": \"Customer Ref # DM1234\"\n        },\n        \"relationships\": {\n            \"attachments\": {\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"id\": \"1ea4edcc-f3e9-473f-8e75-2b28b96ef869\",\n                    \"type\": \"FundingAccount\"\n                }\n            },\n            \"item_members\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"access_item\": \"actionable\"\n                        },\n                        \"relationships\": {\n                            \"partnership_member\": {\n                                \"data\": {\n                                    \"id\": \"381039e5-b0dc-44c0-99ad-1ba8497d3bb8\",\n                                    \"type\": \"PartnershipMember\"\n                                }\n                            }\n                        },\n                        \"type\": \"ItemMember\"\n                    }\n                ]\n            },\n            \"line_items\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"amount\": 750.00,\n                            \"description\": \"Setup, breakdown.\",\n                            \"item\": {\n                                \"id\": \"501\"\n                            },\n                            \"quantity\": 10,\n                            \"style\": \"item\",\n                            \"tax\": {\n                                \"id\": \"-111\"\n                            },\n                            \"unit_price\": 75,\n                            \"extended\": {\n                                \"location\": {\n                                    \"id\": \"21\"\n                                }\n                            }\n                        },\n                        \"type\": \"LineItem\"\n                    },\n                    {\n                        \"attributes\": {\n                            \"amount\": 275.00,\n                            \"description\": \"Rock Fountain\",\n                            \"item\": {\n                                \"id\": \"501\"\n                            },\n                            \"quantity\": 1,\n                            \"style\": \"item\",\n                            \"tax\": {\n                                \"id\": \"-111\"\n                            },\n                            \"unit_price\": 275,\n                            \"extended\": {\n                                \"location\": {\n                                    \"id\": \"21\"\n                                }\n                            }\n                        },\n                        \"type\": \"LineItem\"\n                    }\n                ]\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"id\": \"957c446e-1146-407d-b720-a8f158eea16a\",\n                    \"type\": \"Partnership\"\n                }\n            },\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"a5638173-3eef-4f84-9509-e72e6d686184\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Item\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"c413d38b-b1f4-465e-8d87-c9df5170659f\",\n        \"attributes\": {\n            \"amount\": \"1099.32\",\n            \"amount_due\": \"1099.32\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2021-11-10\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2021-02-14\",\n            \"date_scheduled\": null,\n            \"date_sent\": \"2021-02-17\",\n            \"date_status_change\": \"2021-02-18T01:20:28.769298Z\",\n            \"days_until_due\": 266,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"funding_provider_memo\": null,\n            \"has_attachments\": true,\n            \"invoice_number\": \"INV100001079\",\n            \"is_creator\": true,\n            \"kind\": \"receivable\",\n            \"ledger_ref\": \"45229\",\n            \"ledger_status\": \"pending\",\n            \"payment_delivery_method\": null,\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_delivery_option\": null,\n            \"payment_terms\": \"net30\",\n            \"reference\": \"Customer Ref # DM1234\",\n            \"status\": \"pending\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2021-02-18T01:20:28.769298Z\",\n                    \"status\": \"pending\"\n                }\n            ]\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 1\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemAttachment\",\n                        \"id\": \"fb657e92-3e1f-420d-873c-219726c2182d\"\n                    }\n                ]\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"1ea4edcc-f3e9-473f-8e75-2b28b96ef869\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"3a9f9549-a8f4-40a1-bca9-bdd1c7806e62\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"256afb12-4c8d-45dd-b408-bbb6891eb0fa\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"4e2483b0-4cd4-4dff-8314-c07982d07db3\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": null\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"957c446e-1146-407d-b720-a8f158eea16a\"\n                }\n            },\n            \"tag_links\": {\n                \"data\": []\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"4e2483b0-4cd4-4dff-8314-c07982d07db3\",\n            \"attributes\": {\n                \"name\": \"InstaWork\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"1ea4edcc-f3e9-473f-8e75-2b28b96ef869\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"23ef1c76-cbe0-4d64-a883-a788371cf48e\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"8f1549f0-6a58-4530-9922-148f9a812738\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"23ef1c76-cbe0-4d64-a883-a788371cf48e\",\n            \"attributes\": {\n                \"account_number\": \"22424\",\n                \"institution_name\": \"United Bank\",\n                \"routing_number\": \"056008849\"\n            }\n        },\n        {\n            \"type\": \"ItemAttachment\",\n            \"id\": \"fb657e92-3e1f-420d-873c-219726c2182d\",\n            \"attributes\": {\n                \"file\": \"https://routable-development.s3.amazonaws.com/data/item/attachments/d68b7c7c-6ffd-40e7-884b-126ff4c141e6.pdf?AWSAccessKeyId=AKIAY3LUTX62ZOWFM2ON&Signature=MoWUiJsUXBRYqD4viHvpyei5kzA%3D&Expires=1616203230\",\n                \"file_hash\": \"66ca6eb301c3361b31de67dcf8d0515e2409b2d1\",\n                \"file_type\": \"application/pdf\",\n                \"file_size\": -1,\n                \"filename\": \"INV100001079.pdf\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"256afb12-4c8d-45dd-b408-bbb6891eb0fa\",\n            \"attributes\": {\n                \"access_item\": \"actionable\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"381039e5-b0dc-44c0-99ad-1ba8497d3bb8\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"3a9f9549-a8f4-40a1-bca9-bdd1c7806e62\",\n            \"attributes\": {\n                \"access_item\": \"self_managed\"\n            },\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"7eb7d62a-6fd3-4fb9-8e1b-933f9c7250af\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"957c446e-1146-407d-b720-a8f158eea16a\",\n            \"attributes\": {\n                \"customer_ref\": \"20641\",\n                \"name\": \"InstaWork\",\n                \"vendor_ref\": null\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"381039e5-b0dc-44c0-99ad-1ba8497d3bb8\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"actionable\",\n                \"default_item\": \"actionable\",\n                \"email\": \"zaldy@instawork.com\",\n                \"first_name\": \"Zaldy\",\n                \"is_archived\": false,\n                \"last_name\": \"Worker\",\n                \"notification_general\": \"actionable\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"4e2483b0-4cd4-4dff-8314-c07982d07db3\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"32fe8e60-2094-406e-a592-2f764956fb93\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"7eb7d62a-6fd3-4fb9-8e1b-933f9c7250af\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"default_general\": \"self_managed\",\n                \"default_item\": \"self_managed\",\n                \"email\": \"philco-ns@routable.com\",\n                \"first_name\": \"Phil\",\n                \"is_archived\": false,\n                \"last_name\": \"Co\",\n                \"notification_general\": \"self_managed\",\n                \"phone_number\": {\n                    \"number\": \"+15374242840\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"8f1549f0-6a58-4530-9922-148f9a812738\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"a5638173-3eef-4f84-9509-e72e6d686184\"\n                    }\n                },\n                \"notification_bounce\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"17c3a0ba-a4b8-4e9a-8f74-e07e572d38ab"}],"id":"b2ca9539-f5f8-4cad-b477-528c2ea2259a","_postman_id":"b2ca9539-f5f8-4cad-b477-528c2ea2259a"}],"id":"630caae3-1fe1-4b50-b374-10cb0c070b52","description":"# Getting Started - NetSuite Integration\n\n<!-- BEGIN [GETTING STARTED] -->\n<!-- When updating, copy/paste this block to other areas of the docs -->\nThe steps below describe how to use the Routable API to send and request payments. In this example, you will perform the following actions:\n\n- **Create a partnership** - Partnerships define the relationship between your company and the companies that you do business with, including contact info and whether the company is a vendor, customer, or both.\n- **Add a funding account** - Funding accounts define bank accounts that accept deposits or fund payments, or addresses for mailing paper checks.\n\n  _Note: By adding a funding account to a partnership, you can send payments without requiring any additional action from your vendor._\n\n- **Send a payment** - Payments define the amount, date, and delivery method of a payment that you will send to a vendor. Set the value of the `kind` parameter to `payable` in the body of the request to identify that this is a payment to your partner company.\n\n- **Request a payment** - Payment requests generate invoices that Routable sends to customers for payment. Define elements of the invoice like line items and payment terms in the body of the request. Set the value of the `kind` attribute to `receivable` to identify the payment as a request.\n<!-- END [GETTING STARTED] -->\n\n## Send a Payment\n\nFollow the steps below to create a partnership, add a funding account, and send a payment:\n\n1.  Create a new partnership by sending a POST request to the `/partnerships/` endpoint with information about the partner company in the body of the request.\n\n    See the [Create a Partnership with NetSuite](#975baff0-c2a8-48d7-b85e-1af007a45704) operation definition for details about the request and response attributes.\n\n2. After creating the partnership, capture the `id` value of the partnership object. You will use the partnership `id` to add a funding account to the partner.\n\n   Also, capture the `id` value of the PartnershipMember you just created. You will use this to specify the ItemMember when you create your Item.\n\n3. Add a funding account (in this example we chose to add a bank account, but you can choose whether you want to add a bank account or a paper check mailing address) to the partnership by sending a POST request to the `/partnerships/{{partnership_id}}/funding_account_bank/` endpoint with bank account information in the body of the request. Set the `{{partnership_id}}` value in the URL to the value that you captured in step 2. \n\n   See the [Add a Funding Bank](#026ff92b-9ce7-44e8-835b-77e95511b833) operation definition for details about the request and response parameters.\n\n4.  Capture the value of the `id` attribute from the response. You will use it to identify the funding account to pay to when you send the payment.\n\n5.  Create a payment by sending a POST request to the `/items/` endpoint with details about the payment in the body of the request.\n\n    NetSuite requires several unique parameters in the request body so that the payment can be posted to your ledger.\n\n    See the [Create an Item with NetSuite](#23b00c9c-8ee6-419f-88ff-60f41fe4d75f) operation definition for details about the request and response attributes.\n\n## Request a Payment\n\nSending an invoice with Routable is similar to sending a payment.\nTo send an invoice, you must first create a partnership with the `is_customer` attribute set to `true`.\nYou can then send an invoice to the customer using the `/items/` endpoint.\n\nFollow the steps below to create a customer and send an invoice:\n\n1.  Create a new customer by sending a POST request to the `/partnerships/` endpoint with information about the partner company in the body of the request.\n\n    You must set the value of the `is_customer` attribute to `true` to be able to request a payment from the partner company.\n\n    See the [Create a Partnership with NetSuite](#975baff0-c2a8-48d7-b85e-1af007a45704) operation definition for details about the request and response attributes.\n\n2.  Capture the `id` value of the partnership object. You will use it to identify the partner company that will receive the invoice. \n\n    Capture the `id` value of the PartnershipMember you just created. You will use this to specify the `ItemMember` when you create your `Item`.\n\n3.  Request a payment by sending a POST request to the `/items/` endpoint with details about the payment in the body of the request.\n\n    NetSuite requires several unique parameters in the request body so that the payment can be posted to your ledger.\n\n    See the [Create an Item with NetSuite](#23b00c9c-8ee6-419f-88ff-60f41fe4d75f) operation definition for details about the request and response attributes.","_postman_id":"630caae3-1fe1-4b50-b374-10cb0c070b52"}],"id":"ed4b7d00-7fee-499f-ba20-50b4183ef0cf","event":[{"listen":"prerequest","script":{"id":"d5dae97b-d041-40fc-b298-a7e2708bed62","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6cf5fc21-cc62-4328-98b8-d529c7a3e0a1","type":"text/javascript","exec":[""]}}],"_postman_id":"ed4b7d00-7fee-499f-ba20-50b4183ef0cf"},{"name":"Tagging","item":[{"name":"Tags","item":[{"name":"Create a  tag","event":[{"listen":"test","script":{"id":"bf9961ae-1ae1-401f-b3ca-950ae3d3edad","exec":["if (pm.response.code >= 400) {","    return;","}","","let jsonData;","try {","    jsonData = pm.response.json();","} catch(err) {","    return;","}","","pm.environment.set(\"tag_id\", jsonData.data.id);","pm.environment.set(\"tag_name\", jsonData.data.attributes.name);",""],"type":"text/javascript"}}],"id":"d215cb75-8259-457f-bd41-88d7ca81d85b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"name\": \"{{tag_name}}\"\n        },\n        \"relationships\": {\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"{{membership_id}}\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Tag\"\n    }\n}"},"url":{"raw":"https://api.sandbox.routable.com/tagging/tags/","protocol":"https","host":["api","sandbox","routable","com"],"path":["tagging","tags",""],"query":[{"key":"","value":"","type":"text","disabled":true}]},"description":"Create a new `Tag` object.\n\n## Data\n\nType: `Tag`\n\n### Attributes\n|Field|Type|Required|Description|\n|---|---|---|---|\n|name|string|yes|the label value for this tag|\n\n### Relationships\n\n#### Requester\n\n*Field*: `requester`\n\n*Array*: No\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|uuid|yes|the id of the `Membership` that is creating this `Tag`|\n|type|string|yes|`Membership`|"},"response":[{"id":"73dfe67f-7d18-416d-ab14-d5bd765f3f21","name":"Create a  tag","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"name\": \"important\"\n        },\n        \"relationships\": {\n            \"requester\": {\n                \"data\": {\n                    \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\",\n                    \"type\": \"Membership\"\n                }\n            }\n        },\n        \"type\": \"Tag\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.sandbox.routable.com/tagging/tags/","protocol":"https","host":["api","sandbox","routable","com"],"path":["tagging","tags",""],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 04:53:25 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"101"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"520e731a-7727-4fcd-b6d2-cf4364b6f023"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Tag\",\n        \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n        \"attributes\": {\n            \"name\": \"important\"\n        }\n    }\n}"}],"_postman_id":"d215cb75-8259-457f-bd41-88d7ca81d85b"},{"name":"Search tags","id":"b2155b22-cc2b-45c9-8d3c-708d1d7addc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":{"raw":"https://api.sandbox.routable.com/tagging/tags/?search={{tag_name}}","protocol":"https","host":["api","sandbox","routable","com"],"path":["tagging","tags",""],"query":[{"key":"search","value":"{{tag_name}}"}]},"description":"Search all `Tag` records associated with your company. Searches are case insensitive and match any part of existing `Tag` names."},"response":[{"id":"82fb11f7-bae5-4166-8068-0adc612ae6d8","name":"Search tags","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":{"raw":"https://api.sandbox.routable.com/tagging/tags/?search=important","protocol":"https","host":["api","sandbox","routable","com"],"path":["tagging","tags",""],"query":[{"key":"search","value":"important"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 04:55:25 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"359"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"70269bb6-6a93-4d3a-b891-cd7052a27799"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/tagging/tags/?search=important\",\n        \"last\": \"https://api.sandbox.routable.com/tagging/tags/?page%5Bnumber%5D=1&search=important\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"Tag\",\n            \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n            \"attributes\": {\n                \"name\": \"important\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 1,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"b2155b22-cc2b-45c9-8d3c-708d1d7addc5"},{"name":"List all tags","id":"535e2530-30a4-4f08-aa89-35e79792026d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/tagging/tags/","description":"Returns a list of all the `Tag` records for your company."},"response":[{"id":"470c4267-d78d-41e0-91ec-2ab8a71e07d4","name":"List all tags","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/tagging/tags/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 04:55:47 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"417"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"aca859b6-96cb-4a82-9a7c-4b3367227c3f"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/tagging/tags/\",\n        \"last\": \"https://api.sandbox.routable.com/tagging/tags/?page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"Tag\",\n            \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n            \"attributes\": {\n                \"name\": \"important\"\n            }\n        },\n        {\n            \"type\": \"Tag\",\n            \"id\": \"fcfa74cb-54ac-4fef-a613-c18407e94567\",\n            \"attributes\": {\n                \"name\": \"priority\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 2,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"535e2530-30a4-4f08-aa89-35e79792026d"},{"name":"Get a tag","id":"51763eab-65c3-4916-998f-86442ce4711c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/tagging/tags/{{tag_id}}/","description":"Returns details about an individual `Tag` belonging to your company."},"response":[{"id":"01dee50d-66f7-4ad6-9185-c64ca9281903","name":"Get a tag","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/tagging/tags/9966c9a2-d471-45bd-9d85-ee14e0f5a711/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 04:56:02 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"101"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"a7c599e3-f4ff-4be2-9e9c-b51e91d3996f"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Tag\",\n        \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n        \"attributes\": {\n            \"name\": \"important\"\n        }\n    }\n}"}],"_postman_id":"51763eab-65c3-4916-998f-86442ce4711c"}],"id":"85e3bbe7-aeab-410e-b593-46161b17bafd","description":"A `Tag` object represents a named value that can be used to label a tagged object.  `Tag` objects can be created independently, or they can be associated with one or more tagged objects.\n\n## The Tag object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`Tag`|\n\n### Attributes\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|name|string|yes|the label value for this tag|","event":[{"listen":"prerequest","script":{"id":"6e195ebe-243c-4479-8ded-536905cdd054","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"71bab402-0299-42a8-bb64-0bd223a13905","type":"text/javascript","exec":[""]}}],"_postman_id":"85e3bbe7-aeab-410e-b593-46161b17bafd"},{"name":"Tag Links","item":[{"name":"Context Independent","item":[{"name":"Create a  tag link","event":[{"listen":"test","script":{"id":"b484a1e2-ffbb-4c84-82fb-a52b4ec572e0","exec":["if (pm.response.code >= 400) {","    return;","}","","let jsonData;","try {","    jsonData = pm.response.json();","} catch(err) {","    return;","}","","pm.environment.set(\"tag_link_id\", jsonData.data.id);",""],"type":"text/javascript"}}],"id":"23083819-12dd-46c7-b023-a3c75046fdd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"relationships\": {\n            \"tag\": {\n                \"data\": {\n                    \"id\": \"{{tag_id}}\",\n                    \"type\": \"Tag\"\n                }\n            },\n            \"tagged_object\": {\n                \"data\": {\n                    \"id\": \"{{item_id}}\",\n                    \"type\": \"Item\"\n                }\n            }\n        },\n        \"type\": \"TagLink\"\n    }\n}"},"url":"https://api.sandbox.routable.com/tagging/tag_links/","description":"Create a new `TagLink` to associate a `Tag` with a taggable object.\n\n## Data\n\nType: `TagLink`\n\n### Relationships\n\n#### Tag\n\n*Field*: `tag`\n\n*Array*: No\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|uuid|yes|the id of the `Tag` to assign to this `TagLink`|\n|type|string|yes|`Tag`|\n\n#### Tagged Object\n\n*Field*: `tagged_object`\n\n*Array*: No\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|uuid|yes|the id of the instance to assign to this `TagLink`|\n|type|string|yes|the type of the instance to assign|"},"response":[{"id":"a780865e-c143-4277-9b4f-733690bce7e9","name":"Create a  tag link","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"relationships\": {\n            \"tag\": {\n                \"data\": {\n                    \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n                    \"type\": \"Tag\"\n                }\n            },\n            \"tagged_object\": {\n                \"data\": {\n                    \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\",\n                    \"type\": \"Item\"\n                }\n            }\n        },\n        \"type\": \"TagLink\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/tagging/tag_links/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 13:30:10 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"370"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"8da37cb8-0b6c-4d1f-8557-9cc524119b33"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"TagLink\",\n        \"id\": \"99146d36-d509-4629-b75e-ebbe287bc374\",\n        \"attributes\": {},\n        \"relationships\": {\n            \"tag\": {\n                \"data\": {\n                    \"type\": \"Tag\",\n                    \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\"\n                }\n            },\n            \"tagged_object\": {\n                \"data\": {\n                    \"type\": \"Item\",\n                    \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Tag\",\n            \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n            \"attributes\": {\n                \"name\": \"important\"\n            }\n        }\n    ]\n}"}],"_postman_id":"23083819-12dd-46c7-b023-a3c75046fdd7"},{"name":"Remove a tag link","event":[{"listen":"prerequest","script":{"id":"5bec85ac-a2b2-4654-9c60-6dec7ce7f653","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"f6859846-0efe-4d42-90ec-dc18b633e892","exec":["if (pm.response.code >= 400) {","    return;","}","","pm.environment.unset(\"tag_link_id\");"],"type":"text/javascript"}}],"id":"4e61be72-e8ec-4f80-9d30-7064248a0b39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/tagging/tag_links/{{tag_link_id}}/","description":"Deletes a `TagLink` record. This removes the association between the `Tag` and the tagged object but does not delete either of those objects."},"response":[{"id":"bd202005-435f-44ad-aff1-b9aeb6a126d5","name":"Remove a tag link","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/tagging/tag_links/99146d36-d509-4629-b75e-ebbe287bc374/"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 13:31:53 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, DELETE, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"83ae7038-8a0a-426e-bca5-a2db4c7a0636"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4e61be72-e8ec-4f80-9d30-7064248a0b39"},{"name":"Get a tag link","id":"e1bc51e9-5d8a-4e51-8683-861b607fd4e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/tagging/tag_links/{{tag_link_id}}/","description":"Returns details about an individual `TagLink` belonging to your company."},"response":[{"id":"9a1ff927-0ec0-4587-98ae-c23302781a1c","name":"Get a tag link","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/tagging/tag_links/99146d36-d509-4629-b75e-ebbe287bc374/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 13:31:05 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"370"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, DELETE, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"c9859993-1ddb-471e-b836-46cad431749c"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"TagLink\",\n        \"id\": \"99146d36-d509-4629-b75e-ebbe287bc374\",\n        \"attributes\": {},\n        \"relationships\": {\n            \"tag\": {\n                \"data\": {\n                    \"type\": \"Tag\",\n                    \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\"\n                }\n            },\n            \"tagged_object\": {\n                \"data\": {\n                    \"type\": \"Item\",\n                    \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Tag\",\n            \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n            \"attributes\": {\n                \"name\": \"important\"\n            }\n        }\n    ]\n}"}],"_postman_id":"e1bc51e9-5d8a-4e51-8683-861b607fd4e1"}],"id":"229e78df-7c1d-480a-8f5c-a71eec6e8fc7","description":"`TagLink` records can be created, viewed, and removed outside of the context of a tagged object.","event":[{"listen":"prerequest","script":{"id":"e969b140-0282-4baf-8640-36acfbcd08a9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c6de4f10-e7cc-41b2-b4de-77f4f30ef2f6","type":"text/javascript","exec":[""]}}],"_postman_id":"229e78df-7c1d-480a-8f5c-a71eec6e8fc7"},{"name":"Taggable Objects","item":[{"name":"Items","item":[{"name":"Create an item tag link","event":[{"listen":"test","script":{"id":"c6762dac-30e4-4a5e-8334-a274d4e74ba4","exec":["if (pm.response.code >= 400) {","    return;","}","","let jsonData;","try {","    jsonData = pm.response.json();","} catch(err) {","    return;","}","","pm.environment.set(\"item_tag_link_id\", jsonData.data.id);","pm.environment.set(\"tagged_item_id\", jsonData.data.relationships.tagged_object.data.id);",""],"type":"text/javascript"}}],"id":"4399b662-16e7-486b-b527-8819bd807d68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"relationships\": {\n            \"tag\": {\n                \"data\": {\n                    \"id\": \"{{tag_id}}\",\n                    \"type\": \"Tag\"\n                }\n            }\n        },\n        \"type\": \"TagLink\"\n    }\n}"},"url":"https://api.sandbox.routable.com/items/{{item_id}}/tag_links/","description":"Create a new `TagLink` to associate a `Tag` with the current `Item`.\n\nThis endpoint differs from the context independent creation endpoint in that you do not need to specify the `Item` as the `tagged_object`, due to the creation taking place within the context of the `Item`.\n\n## Data\n\nType: `TagLink`\n\n### Relationships\n\n#### Tag\n\n*Field*: `tag`\n\n*Array*: No\n\n|Field|Type|Required|Description|\n|---|---|---|---|\n|id|uuid|yes|the id of the `Tag` to assign to this `TagLink`|\n|type|string|yes|`Tag`|"},"response":[{"id":"500447b8-7e50-42c9-bd14-bef878eb1688","name":"Create an item tag link","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"relationships\": {\n            \"tag\": {\n                \"data\": {\n                    \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n                    \"type\": \"Tag\"\n                }\n            }\n        },\n        \"type\": \"TagLink\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.sandbox.routable.com/items/49bac92a-9f8f-4150-ac9c-44a6925f140d/tag_links/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 13:39:01 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"370"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"9fb0cc65-281c-4fb6-b459-bbcc139049cf"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"TagLink\",\n        \"id\": \"082a6929-b6e5-4a31-90f0-662c57c8a789\",\n        \"attributes\": {},\n        \"relationships\": {\n            \"tag\": {\n                \"data\": {\n                    \"type\": \"Tag\",\n                    \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\"\n                }\n            },\n            \"tagged_object\": {\n                \"data\": {\n                    \"type\": \"Item\",\n                    \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Tag\",\n            \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n            \"attributes\": {\n                \"name\": \"important\"\n            }\n        }\n    ]\n}"}],"_postman_id":"4399b662-16e7-486b-b527-8819bd807d68"},{"name":"Remove an item tag link","event":[{"listen":"prerequest","script":{"id":"4d5e550f-83fc-49a3-8eb1-8dfcf81b1e70","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"ff71d627-3b56-49d1-9e21-79c470b6c4b9","exec":["if (pm.response.code >= 400) {","    return;","}","","pm.environment.unset(\"item_tag_link_id\");","pm.environment.unset(\"tagged_item_id\");"],"type":"text/javascript"}}],"id":"1ff09591-1351-4ca3-ba78-499bcf442162","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/items/{{tagged_item_id}}/tag_links/{{item_tag_link_id}}/","description":"Deletes a `TagLink` associated with the given `Item`.\n\nThis removes the association between the `Tag` and the `Item` but does not delete either of those objects.\n\nIf the `TagLink` is not associated with the `Item` record you will receive a \"Not found\" response."},"response":[{"id":"a5551395-3fc9-432d-95b5-b7885cc0bc0a","name":"Remove an item tag link","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"url":"https://api.sandbox.routable.com/items/49bac92a-9f8f-4150-ac9c-44a6925f140d/tag_links/082a6929-b6e5-4a31-90f0-662c57c8a789/"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 13:42:53 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, DELETE, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"e4c9c27d-77cf-4ac9-8bc4-8017f00d8e83"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1ff09591-1351-4ca3-ba78-499bcf442162"},{"name":"Get an item tag link","id":"caaca902-44b8-421a-8b95-fad7fe534d46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/items/{{tagged_item_id}}/tag_links/{{item_tag_link_id}}/","description":"Returns details for a `TagLink` associated with the given `Item`.\n\nIf the `TagLink` is not associated with the `Item` record you will receive a \"Not found\" response."},"response":[{"id":"5ec9b158-c750-4ba1-b980-975246f07be0","name":"Get an item tag link","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/items/49bac92a-9f8f-4150-ac9c-44a6925f140d/tag_links/082a6929-b6e5-4a31-90f0-662c57c8a789/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 13:39:36 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"370"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, DELETE, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"3e4a68da-3f54-48bd-a469-0453f2dbe0e9"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"TagLink\",\n        \"id\": \"082a6929-b6e5-4a31-90f0-662c57c8a789\",\n        \"attributes\": {},\n        \"relationships\": {\n            \"tag\": {\n                \"data\": {\n                    \"type\": \"Tag\",\n                    \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\"\n                }\n            },\n            \"tagged_object\": {\n                \"data\": {\n                    \"type\": \"Item\",\n                    \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Tag\",\n            \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n            \"attributes\": {\n                \"name\": \"important\"\n            }\n        }\n    ]\n}"}],"_postman_id":"caaca902-44b8-421a-8b95-fad7fe534d46"},{"name":"List all item tag links","id":"f0d0634d-6f81-4cec-af9a-50fe7f4104ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/items/{{tagged_item_id}}/tag_links/","description":"Returns a list of any `TagLink` records associated with the given `Item`."},"response":[{"id":"b92a0c63-5eac-468d-9de6-731895e1383c","name":"List all item tag links","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/items/49bac92a-9f8f-4150-ac9c-44a6925f140d/tag_links/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 13:41:07 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1022"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"6eccff65-50a3-48f9-b24d-311f55967243"}],"cookie":[],"responseTime":null,"body":"{\n    \"links\": {\n        \"first\": \"https://api.sandbox.routable.com/items/49bac92a-9f8f-4150-ac9c-44a6925f140d/tag_links/\",\n        \"last\": \"https://api.sandbox.routable.com/items/49bac92a-9f8f-4150-ac9c-44a6925f140d/tag_links/?page%5Bnumber%5D=1\",\n        \"next\": null,\n        \"prev\": null\n    },\n    \"data\": [\n        {\n            \"type\": \"TagLink\",\n            \"id\": \"082a6929-b6e5-4a31-90f0-662c57c8a789\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"tag\": {\n                    \"data\": {\n                        \"type\": \"Tag\",\n                        \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\"\n                    }\n                },\n                \"tagged_object\": {\n                    \"data\": {\n                        \"type\": \"Item\",\n                        \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"TagLink\",\n            \"id\": \"4e34d3d8-1ae7-4f9b-91d1-a1cd43948110\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"tag\": {\n                    \"data\": {\n                        \"type\": \"Tag\",\n                        \"id\": \"fcfa74cb-54ac-4fef-a613-c18407e94567\"\n                    }\n                },\n                \"tagged_object\": {\n                    \"data\": {\n                        \"type\": \"Item\",\n                        \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"Tag\",\n            \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n            \"attributes\": {\n                \"name\": \"important\"\n            }\n        },\n        {\n            \"type\": \"Tag\",\n            \"id\": \"fcfa74cb-54ac-4fef-a613-c18407e94567\",\n            \"attributes\": {\n                \"name\": \"priority\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"page\": 1,\n            \"pages\": 1,\n            \"count\": 2,\n            \"page_size\": 25\n        }\n    }\n}"}],"_postman_id":"f0d0634d-6f81-4cec-af9a-50fe7f4104ea"},{"name":"Item with tags","id":"88a92d58-3f8a-479b-a3fc-b6f874363d42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/items/{{tagged_item_id}}/","description":"Example of an `Item` with a `TagLink`"},"response":[{"id":"90ac32dd-1b00-4b4b-b606-9234fdd1ca6c","name":"Item with tags","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/items/49bac92a-9f8f-4150-ac9c-44a6925f140d/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Thu, 06 Aug 2020 13:41:37 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"4861"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, PATCH, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"083ec735-9a11-4f27-a27a-83b2358f3a90"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Item\",\n        \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\",\n        \"attributes\": {\n            \"amount\": \"5000.00\",\n            \"amount_due\": \"5000.00\",\n            \"amount_paid\": \"0.00\",\n            \"check_number\": null,\n            \"date_approved\": null,\n            \"date_due\": \"2020-06-16\",\n            \"date_expected\": null,\n            \"date_externally_paid\": null,\n            \"date_issued\": \"2020-06-16\",\n            \"date_scheduled\": null,\n            \"date_sent\": null,\n            \"date_status_change\": \"2020-06-16T13:12:20.259860Z\",\n            \"days_until_due\": -51,\n            \"external_ref\": null,\n            \"externally_paid_method\": null,\n            \"externally_paid_reference\": null,\n            \"has_attachments\": false,\n            \"invoice_number\": null,\n            \"is_creator\": true,\n            \"kind\": \"payable\",\n            \"ledger_ref\": null,\n            \"ledger_status\": \"no_ledger\",\n            \"payment_delivery_method\": \"ach\",\n            \"payment_delivery_methods_accepted\": [\n                \"ach\"\n            ],\n            \"payment_delivery_option\": \"ach_expedited\",\n            \"payment_terms\": null,\n            \"reference\": \"Invoice #4245\",\n            \"status\": \"pending\",\n            \"status_timeline\": [\n                {\n                    \"date\": \"2020-06-16T13:12:20.259860Z\",\n                    \"status\": \"pending\"\n                }\n            ]\n        },\n        \"relationships\": {\n            \"approvals\": {\n                \"data\": []\n            },\n            \"attachments\": {\n                \"meta\": {\n                    \"count\": 0\n                },\n                \"data\": []\n            },\n            \"funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\"\n                }\n            },\n            \"item_members\": {\n                \"meta\": {\n                    \"count\": 2\n                },\n                \"data\": [\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"f7c290ee-758f-4000-a18e-3fcc2ab43412\"\n                    },\n                    {\n                        \"type\": \"ItemMember\",\n                        \"id\": \"a224726a-7588-4448-a1a4-d8f1ef78a3e7\"\n                    }\n                ]\n            },\n            \"partner\": {\n                \"data\": {\n                    \"type\": \"Company\",\n                    \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                }\n            },\n            \"partner_funding_account\": {\n                \"data\": {\n                    \"type\": \"FundingAccount\",\n                    \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\"\n                }\n            },\n            \"partnership\": {\n                \"data\": {\n                    \"type\": \"Partnership\",\n                    \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\"\n                }\n            },\n            \"tag_links\": {\n                \"data\": [\n                    {\n                        \"type\": \"TagLink\",\n                        \"id\": \"082a6929-b6e5-4a31-90f0-662c57c8a789\"\n                    },\n                    {\n                        \"type\": \"TagLink\",\n                        \"id\": \"4e34d3d8-1ae7-4f9b-91d1-a1cd43948110\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"Company\",\n            \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\",\n            \"attributes\": {\n                \"name\": \"InstaWork\"\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"3f1797ea-dc48-4bcd-8a92-a21f5172c9e1\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingAccount\",\n            \"id\": \"a7ab428c-939b-4328-b05c-9d8e27ac31c5\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                },\n                \"bank\": {\n                    \"data\": {\n                        \"type\": \"FundingInfoBank\",\n                        \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\"\n                    }\n                },\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"889dde19-1179-4c80-a557-63eed08c259a\",\n            \"attributes\": {\n                \"account_number\": \"56854521185\",\n                \"institution_name\": \"Jpmorgan Chase\",\n                \"routing_number\": \"021000021\"\n            }\n        },\n        {\n            \"type\": \"FundingInfoBank\",\n            \"id\": \"e8aeedaa-f450-4d84-9ca1-6cafb8e071a3\",\n            \"attributes\": {\n                \"account_number\": \"***7374\",\n                \"institution_name\": \"Bank Of America, N.A.\",\n                \"routing_number\": \"122000661\"\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"a224726a-7588-4448-a1a4-d8f1ef78a3e7\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"ItemMember\",\n            \"id\": \"f7c290ee-758f-4000-a18e-3fcc2ab43412\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"partnership_member\": {\n                    \"data\": {\n                        \"type\": \"PartnershipMember\",\n                        \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Partnership\",\n            \"id\": \"97f318b5-d438-4205-90ed-20c889ef676b\",\n            \"attributes\": {\n                \"customer_ref\": null,\n                \"name\": \"InstaWork\",\n                \"vendor_ref\": null\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"8af68cb3-4831-470f-ac98-7f380d73a48d\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"michelle@fedex.com\",\n                \"first_name\": \"Michelle\",\n                \"is_archived\": false,\n                \"last_name\": \"Jones\",\n                \"phone_number\": {\n                    \"number\": \"+18738207968\",\n                    \"country\": \"US\"\n                }\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"9aed9792-f93c-4372-bb2d-6ae0082797db\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"660640d3-82e0-43a2-ac8a-071d63c15f54\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"PartnershipMember\",\n            \"id\": \"d2d804ac-8882-4de2-877f-0b33651240ea\",\n            \"attributes\": {\n                \"avatar\": null,\n                \"email\": \"zaldy@instawork.com\",\n                \"first_name\": \"Zaldy\",\n                \"is_archived\": false,\n                \"last_name\": \"Worker\",\n                \"phone_number\": null\n            },\n            \"relationships\": {\n                \"company\": {\n                    \"data\": {\n                        \"type\": \"Company\",\n                        \"id\": \"b1783d25-f428-47c9-8f6e-2b8983343482\"\n                    }\n                },\n                \"membership\": {\n                    \"data\": {\n                        \"type\": \"Membership\",\n                        \"id\": \"fd04d875-9970-4017-9eec-bf8fcee4ac4f\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"Tag\",\n            \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\",\n            \"attributes\": {\n                \"name\": \"important\"\n            }\n        },\n        {\n            \"type\": \"Tag\",\n            \"id\": \"fcfa74cb-54ac-4fef-a613-c18407e94567\",\n            \"attributes\": {\n                \"name\": \"priority\"\n            }\n        },\n        {\n            \"type\": \"TagLink\",\n            \"id\": \"082a6929-b6e5-4a31-90f0-662c57c8a789\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"tag\": {\n                    \"data\": {\n                        \"type\": \"Tag\",\n                        \"id\": \"9966c9a2-d471-45bd-9d85-ee14e0f5a711\"\n                    }\n                },\n                \"tagged_object\": {\n                    \"data\": {\n                        \"type\": \"Item\",\n                        \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"TagLink\",\n            \"id\": \"4e34d3d8-1ae7-4f9b-91d1-a1cd43948110\",\n            \"attributes\": {},\n            \"relationships\": {\n                \"tag\": {\n                    \"data\": {\n                        \"type\": \"Tag\",\n                        \"id\": \"fcfa74cb-54ac-4fef-a613-c18407e94567\"\n                    }\n                },\n                \"tagged_object\": {\n                    \"data\": {\n                        \"type\": \"Item\",\n                        \"id\": \"49bac92a-9f8f-4150-ac9c-44a6925f140d\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"88a92d58-3f8a-479b-a3fc-b6f874363d42"}],"id":"0716f91d-c3e2-491f-9a7e-2a21b0fe2b9a","description":"`TagLink` objects can be associated with `Item` records.\n\n`TagLink` records in the context of an `Item` are accessed with URLs that begin with a path that identifies that `Item`.","event":[{"listen":"prerequest","script":{"id":"9d5e5407-dbc8-448a-ad35-974483a7e4bd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ccb3fd54-68c1-43f5-98cb-2464ae2689e5","type":"text/javascript","exec":[""]}}],"_postman_id":"0716f91d-c3e2-491f-9a7e-2a21b0fe2b9a"}],"id":"9765a8df-8691-4e58-8999-b6a2ae5e6dda","description":"`TagLink` records can also be created, viewed, listed, and removed in the context of taggable objects, including `Item` objects.","event":[{"listen":"prerequest","script":{"id":"f95bb55b-ca31-4528-bed9-72609d61cbf3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5f644896-6852-412c-9fe5-e436ed8ac858","type":"text/javascript","exec":[""]}}],"_postman_id":"9765a8df-8691-4e58-8999-b6a2ae5e6dda"}],"id":"ebfca10d-270a-4bcf-aade-75d413e110ac","description":"A `TagLink` object represents the relationship between a `Tag` and a tagged object.\n\n`TagLink` objects can either be created on their own (context independent) or in the context of a taggable object. Context independent `TagLink` records can be viewed from the context of their taggable object, and vice versa.\n\nThe context of a `TagLink` is determined by the URL used to access it.\n- URLs for `TagLink` records that are context independent start with `/tagging/`\n- URLs for `TagLink` records that are in the context of a taggable object start with the URL path for that object.\n\n## The TagLink object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`TagLink`|\n\n### Relationships\n\n|Value|Object|Array|List|\n|---|---|---|---|\n|tag|`Tag`|no|no|\n|tagged_object|varies|no|no|","_postman_id":"ebfca10d-270a-4bcf-aade-75d413e110ac"}],"id":"0697d973-3180-49eb-bdae-6750a93f8fea","description":"Tagging is a process in which you can add additional context to existing records by labeling them with values that mean something to you or your team.\n\nThis process typically requires the following workflow:\n\n1. Identify an object or objects that should be labeled with a tag value.\n2. Determine if the tag value has already been added for your company.  If it has not yet been added, create a new `Tag` record for the value.\n3. Associate the `Tag` record with the object or objects that will be labeled by creating `TagLink` records.\n\nIf a tagged object no longer requires a `Tag`, delete the `TagLink` record associating that `Tag` with the object. Both the `Tag` and the object will be retained, but they will no longer be linked.","event":[{"listen":"prerequest","script":{"id":"065ef0a0-25dc-42b0-b1b4-d3b320b7d55c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"90e73f7a-a8fb-4f2b-9ad8-152a42ddb37b","type":"text/javascript","exec":[""]}}],"_postman_id":"0697d973-3180-49eb-bdae-6750a93f8fea"},{"name":"Company","item":[{"name":"Get a company","id":"2d6b2bff-50a6-4ec1-896c-f6723d5fd8e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/companies/{{company_id}}/","description":"Retrieve details about your company. If enabled, this endpoint also exposes item approval settings."},"response":[{"id":"5d269490-92c0-4f90-b6e3-949ad5b40754","name":"Get a company with item approval settings","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/companies/8c1dc6e9-fa79-44b4-9137-02310b970916/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Company\",\n        \"id\": \"8c1dc6e9-fa79-44b4-9137-02310b970916\",\n        \"attributes\": {\n            \"name\": \"Instawork\",\n            \"namespace\": \"instawork\"\n        },\n        \"relationships\": {\n            \"item_approval_settings\": {\n                \"data\": {\n                    \"type\": \"CompanySettingsItemApproval\",\n                    \"id\": \"9d33002c-468a-4a63-b71d-1380f69e0faa\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"CompanySettingsItemApproval\",\n            \"id\": \"9d33002c-468a-4a63-b71d-1380f69e0faa\",\n            \"attributes\": {\n                \"enforce_for_approvers\": false,\n                \"is_editing_item_approvals\": false,\n                \"payable_requires_approver\": true,\n                \"payable_requires_approver_amount\": 1000,\n                \"receivable_requires_approver\": true,\n                \"receivable_requires_approver_amount\": 1000\n            },\n            \"relationships\": {\n                \"item_approval_levels\": {\n                    \"meta\": {\n                        \"count\": 4\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"CompanySettingsItemApprovalLevel\",\n                            \"id\": \"966f69fe-b3ce-4258-8751-005dff24ffa8\"\n                        },\n                        {\n                            \"type\": \"CompanySettingsItemApprovalLevel\",\n                            \"id\": \"722dfaad-6f80-4e98-a7b7-c80cdb2ca5bf\"\n                        },\n                        {\n                            \"type\": \"CompanySettingsItemApprovalLevel\",\n                            \"id\": \"9f30b8ee-9d56-4b46-ab54-a8730d2f1d74\"\n                        },\n                        {\n                            \"type\": \"CompanySettingsItemApprovalLevel\",\n                            \"id\": \"1e2cfd4b-8a1e-4e90-b95b-b58aa61bcd4b\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"CompanySettingsItemApprovalLevel\",\n            \"id\": \"1e2cfd4b-8a1e-4e90-b95b-b58aa61bcd4b\",\n            \"attributes\": {\n                \"amount\": \"1250.00\",\n                \"item_kind\": \"receivable\",\n                \"level_type\": \"any\",\n                \"position\": 2\n            },\n            \"relationships\": {\n                \"qualified_approvers\": {\n                    \"meta\": {\n                        \"count\": 3\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"85c742a8-07e2-4c8a-bd1d-3291994ebefe\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"fc5b04f0-2fa6-49ae-88ee-527ae17b6ca8\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"c6373be3-5e89-41bb-90b8-623241c73521\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"CompanySettingsItemApprovalLevel\",\n            \"id\": \"722dfaad-6f80-4e98-a7b7-c80cdb2ca5bf\",\n            \"attributes\": {\n                \"amount\": \"1250.00\",\n                \"item_kind\": \"payable\",\n                \"level_type\": \"any\",\n                \"position\": 2\n            },\n            \"relationships\": {\n                \"qualified_approvers\": {\n                    \"meta\": {\n                        \"count\": 2\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"85c742a8-07e2-4c8a-bd1d-3291994ebefe\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"fc5b04f0-2fa6-49ae-88ee-527ae17b6ca8\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"CompanySettingsItemApprovalLevel\",\n            \"id\": \"966f69fe-b3ce-4258-8751-005dff24ffa8\",\n            \"attributes\": {\n                \"amount\": \"1000.00\",\n                \"item_kind\": \"payable\",\n                \"level_type\": \"any\",\n                \"position\": 1\n            },\n            \"relationships\": {\n                \"qualified_approvers\": {\n                    \"meta\": {\n                        \"count\": 3\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"c4488134-6721-4c5d-8855-06f268c1a7f2\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"66542521-e014-4a3c-8698-24928bce4c31\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"8674b807-8240-4756-ad05-a1b84cf6be27\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"CompanySettingsItemApprovalLevel\",\n            \"id\": \"9f30b8ee-9d56-4b46-ab54-a8730d2f1d74\",\n            \"attributes\": {\n                \"amount\": \"1000.00\",\n                \"item_kind\": \"receivable\",\n                \"level_type\": \"any\",\n                \"position\": 1\n            },\n            \"relationships\": {\n                \"qualified_approvers\": {\n                    \"meta\": {\n                        \"count\": 2\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"c4488134-6721-4c5d-8855-06f268c1a7f2\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"8674b807-8240-4756-ad05-a1b84cf6be27\"\n                        }\n                    ]\n                }\n            }\n        }\n    ]\n}"},{"id":"fb28c408-8a4c-4c3a-98fb-5b770531e3fb","name":"Get a company","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/companies/8c1dc6e9-fa79-44b4-9137-02310b970916/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"Company\",\n        \"id\": \"8c1dc6e9-fa79-44b4-9137-02310b970916\",\n        \"attributes\": {\n            \"name\": \"Instawork\",\n            \"namespace\": \"instawork\"\n        },\n        \"relationships\": {\n            \"item_approval_settings\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"2d6b2bff-50a6-4ec1-896c-f6723d5fd8e0"},{"name":"Get item approval settings","id":"4dbd9d8f-691d-4271-913a-5a64eb07197a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":"https://api.sandbox.routable.com/companies/{{company_id}}/item_approval_settings/{{item_approval_settings_id}}/","description":"After your company's approval settings have been submitted to the Routable support team and approvals have been enabled for your account, you can retrieve the approval level and assigned approver details needed to create items that require approvals."},"response":[{"id":"4f7ab5ce-dcce-4d9e-9085-67673cb31915","name":"Get item approval settings","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"url":{"raw":"https://api.sandbox.routable.com/companies/8c1dc6e9-fa79-44b4-9137-02310b970916/item_approval_settings/9d33002c-468a-4a63-b71d-1380f69e0faa/","protocol":"https","host":["api","sandbox","routable","com"],"path":["companies","8c1dc6e9-fa79-44b4-9137-02310b970916","item_approval_settings","9d33002c-468a-4a63-b71d-1380f69e0faa",""],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Tue, 29 Dec 2020 21:43:36 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"55"},{"key":"Connection","value":"keep-alive"},{"key":"WWW-Authenticate","value":"Bearer"},{"key":"Vary","value":"Accept, Cookie"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Request-ID","value":"8f13cd15-5b0b-41fb-90bc-1e2a39ad2e4c"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"CompanySettingsItemApproval\",\n        \"id\": \"9d33002c-468a-4a63-b71d-1380f69e0faa\",\n        \"attributes\": {\n            \"enforce_for_approvers\": false,\n            \"is_editing_item_approvals\": false,\n            \"payable_requires_approver\": true,\n            \"payable_requires_approver_amount\": 1000.0,\n            \"receivable_requires_approver\": true,\n            \"receivable_requires_approver_amount\": 1000.0\n        },\n        \"relationships\": {\n            \"item_approval_levels\": {\n                \"meta\": {\n                    \"count\": 4\n                },\n                \"data\": [\n                    {\n                        \"type\": \"CompanySettingsItemApprovalLevel\",\n                        \"id\": \"966f69fe-b3ce-4258-8751-005dff24ffa8\"\n                    },\n                    {\n                        \"type\": \"CompanySettingsItemApprovalLevel\",\n                        \"id\": \"722dfaad-6f80-4e98-a7b7-c80cdb2ca5bf\"\n                    },\n                    {\n                        \"type\": \"CompanySettingsItemApprovalLevel\",\n                        \"id\": \"9f30b8ee-9d56-4b46-ab54-a8730d2f1d74\"\n                    },\n                    {\n                        \"type\": \"CompanySettingsItemApprovalLevel\",\n                        \"id\": \"1e2cfd4b-8a1e-4e90-b95b-b58aa61bcd4b\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"CompanySettingsItemApprovalLevel\",\n            \"id\": \"1e2cfd4b-8a1e-4e90-b95b-b58aa61bcd4b\",\n            \"attributes\": {\n                \"amount\": \"1250.00\",\n                \"item_kind\": \"receivable\",\n                \"level_type\": \"any\",\n                \"position\": 2\n            },\n            \"relationships\": {\n                \"qualified_approvers\": {\n                    \"meta\": {\n                        \"count\": 3\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"85c742a8-07e2-4c8a-bd1d-3291994ebefe\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"fc5b04f0-2fa6-49ae-88ee-527ae17b6ca8\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"c6373be3-5e89-41bb-90b8-623241c73521\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"CompanySettingsItemApprovalLevel\",\n            \"id\": \"722dfaad-6f80-4e98-a7b7-c80cdb2ca5bf\",\n            \"attributes\": {\n                \"amount\": \"1250.00\",\n                \"item_kind\": \"payable\",\n                \"level_type\": \"any\",\n                \"position\": 2\n            },\n            \"relationships\": {\n                \"qualified_approvers\": {\n                    \"meta\": {\n                        \"count\": 2\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"85c742a8-07e2-4c8a-bd1d-3291994ebefe\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"fc5b04f0-2fa6-49ae-88ee-527ae17b6ca8\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"CompanySettingsItemApprovalLevel\",\n            \"id\": \"966f69fe-b3ce-4258-8751-005dff24ffa8\",\n            \"attributes\": {\n                \"amount\": \"1000.00\",\n                \"item_kind\": \"payable\",\n                \"level_type\": \"any\",\n                \"position\": 1\n            },\n            \"relationships\": {\n                \"qualified_approvers\": {\n                    \"meta\": {\n                        \"count\": 3\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"c4488134-6721-4c5d-8855-06f268c1a7f2\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"66542521-e014-4a3c-8698-24928bce4c31\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"8674b807-8240-4756-ad05-a1b84cf6be27\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"CompanySettingsItemApprovalLevel\",\n            \"id\": \"9f30b8ee-9d56-4b46-ab54-a8730d2f1d74\",\n            \"attributes\": {\n                \"amount\": \"1000.00\",\n                \"item_kind\": \"receivable\",\n                \"level_type\": \"any\",\n                \"position\": 1\n            },\n            \"relationships\": {\n                \"qualified_approvers\": {\n                    \"meta\": {\n                        \"count\": 2\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"c4488134-6721-4c5d-8855-06f268c1a7f2\"\n                        },\n                        {\n                            \"type\": \"Membership\",\n                            \"id\": \"8674b807-8240-4756-ad05-a1b84cf6be27\"\n                        }\n                    ]\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"4dbd9d8f-691d-4271-913a-5a64eb07197a"}],"id":"8894f0b2-cf4f-4cad-a3d1-7bc131ab4e4c","description":"Settings related to your company can be retrieved from company endpoints.\n\n- The `Company` object represents your company.\n- The `CompanySettingsItemApproval` object represents the configuration used for assigning approvers for items, if enabled.\n- The `CompanySettingsItemApprovalLevel` object represents the specific criteria and approvers used to assign approvers for items, based on item kind and dollar amount.\n\n## The Company object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`Company`|\n\n### Attributes\n\n|Field|Description|List|\n|---|---|---|\n|name|The name of the company|no|\n|namespace|The team URL value used when logging in to the Routable website|no|\n\n### Relationships\n\n|Value|Object|Array|List|\n|---|---|---|---|\n|item_approval_settings|`CompanySettingsItemApproval`|no|yes|\n\n## The CompanySettingsItemApproval object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`CompanySettingsItemApproval`|\n\n&nbsp;\n\n### Attributes\n\n|Field|Description|List|\n|---|---|---|\n|enforce_for_approvers|Designates whether creators of items can also approve those items|no|\n|is_editing_item_approvals|Designates whether approval rules for your company are being edited. Items cannot be created while approval rules are being edited.|no|\n|payable_requires_approver|Designates whether payable items require approval for some dollar amount|no|\n|payable_requires_approver_amount|The minimum dollar amount threshold that must be met to require approvals for payable items|no|\n|receivable_requires_approver|Designates whether receivable items require approval for some dollar amount|no|\n|receivable_requires_approver_amount|The minimum dollar amount threshold that must be met to require approvals for receivable items|no|\n\n### Relationships\n\n|Value|Object|Array|List|\n|---|---|---|---|\n|item_approval_levels|`CompanySettingsItemApprovalLevel`|no|yes|\n\n## The CompanySettingsItemApprovalLevel object\n\n|Field|Description|\n|---|---|\n|id|Unique identifier for the object|\n|type|`CompanySettingsItemApprovalLevel`|\n\n### Attributes\n\n|Field|Description|List|\n|---|---|---|\n|amount|The dollar amount that an item must meet or exceed to qualify for this level. This value will be greater than or equal to the previous level's dollar amount.|no|\n|item_kind|The type of Item to which this level applies. Values: `payable` or `receivable`|no|\n|level_type|The restriction on the number of approvers who must give their approval before this level can be completed. If this value is `all`, all qualified approvers must be submitted for this level when creating items that require approval. Values: `any` or `all`.|no|\n|position|The sort order for this level. Approval proceeds from lowest position to highest.|no|\n\n### Relationships\n\n|Value|Object|Array|List|\n|---|---|---|---|\n|qualified_approvers|`Membership`|no|yes|","event":[{"listen":"prerequest","script":{"id":"62c3201a-32c9-4728-b773-fd9f343c976c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"260c4155-592d-45ef-8f37-7d397eb73fef","type":"text/javascript","exec":[""]}}],"_postman_id":"8894f0b2-cf4f-4cad-a3d1-7bc131ab4e4c"}],"auth":{"type":"bearer","bearer":{"token":"{{auth_token}}"}},"event":[{"listen":"prerequest","script":{"id":"fb40fd4b-ddcf-48e4-b274-62cf4e057ccb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5a9fa5d9-1f13-4485-af37-93d72798d6ad","type":"text/javascript","exec":[""]}}]}