Skip to main content
Version: 2.0.0

Quickbooks

You'll need to provide the following variables in your postman collection:

VariableDescriptionExample
API_VERSIONRepresents the version of the Alloy Unified API you intend to make calls to. API versions are dated and new versions are released quarterly (in March, June, September, and December).2023-12
connectionIdThe Id of the connection. Call the GET List Connections endpoint to find a connectionId.
apiKeyYour API key. Never share this with anyone.

JSON
{
"info": {
"_postman_id": "9fc905cc-7bc5-46bc-be56-3deb37a72a3d",
"name": "QBO UAPI",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "19112139",
"_collection_link": "https://planetary-crater-495600.postman.co/workspace/Alloy-One-New~68c3616b-3ff3-473b-ba08-af2e97a835e5/collection/19112139-9fc905cc-7bc5-46bc-be56-3deb37a72a3d?action=share&source=collection_link&creator=19112139"
},
"item": [
{
"name": "01 Setup",
"item": [
{
"name": "Setup UAPI Data",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;\r",
"\r",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");\r",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;\r",
" \r",
"if (contentTypeHeaderExists) {\r",
" tests[\"Content-Type is application/json\"] = \r",
" responseHeaders[\"Content-Type\"].has(\"application/json\");\r",
"}\r",
"\r",
"\r",
"\r",
"var jsonData = pm.response.json();\r",
"let qboCredentialId = jsonData.uapiQBOCredentialId;\r",
"postman.setEnvironmentVariable(\"qboCredentialId\", qboCredentialId);\r",
"postman.setEnvironmentVariable(\"URL\", pm.environment.get(\"embedded_api_base_url\"));"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "GET",
"header": [
{
"key": "X-Alloy-Auth",
"value": "1234567890abcdefghijklmnopqrstuvwxyz",
"type": "text"
}
],
"url": {
"raw": "{{api_base_url}}/api/testHelpers/setupUapi/QBO",
"host": ["{{api_base_url}}"],
"path": ["api", "testHelpers", "setupUapi", "QBO"]
}
},
"response": []
}
]
},
{
"name": "02 Create then Retrieve",
"item": [
{
"name": "Create Account",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] account is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData.account).to.not.be.null;",
" pm.expect(jsonData.account).to.have.property('remoteId');",
" pm.expect(jsonData.account).to.have.property('accountName');",
" pm.expect(jsonData.account).to.have.property('accountDescription');",
" pm.expect(jsonData.account).to.have.property('classification');",
" pm.expect(jsonData.account).to.have.property('accountType');",
" pm.expect(jsonData.account).to.have.property('accountStatus');",
" pm.expect(jsonData.account).to.have.property('currentBalance');",
" pm.expect(jsonData.account).to.have.property('currency');",
" pm.expect(jsonData.account).to.have.property('accountNumber');",
" pm.expect(jsonData.account).to.have.property('parentAccountId');",
" pm.expect(jsonData.account).to.have.property('companyId');",
" pm.expect(jsonData.account).to.have.property('id');",
" pm.expect(jsonData.account.classification).to.equal('EXPENSE');",
" pm.expect(jsonData.account.accountType).to.equal('COST_OF_GOODS_SOLD');",
" pm.expect(jsonData.account.currency).to.equal('USD');",
"});",
"",
"var jsonData = pm.response.json();",
"let accountId = jsonData.account.id;",
"postman.setEnvironmentVariable(\"accountId\", accountId);",
"",
"console.log(pm.response.json());"
],
"type": "text/javascript",
"packages": {}
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"accountName\": \"FrancisChild+{{$randomUUID}}\",\n \"accountType\": \"COST_OF_GOODS_SOLD\",\n \"currency\": \"USD\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/accounts?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "accounts"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Account",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] account is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData.account).to.not.be.null;",
" pm.expect(jsonData.account).to.have.property('remoteId');",
" pm.expect(jsonData.account).to.have.property('accountName');",
" pm.expect(jsonData.account).to.have.property('accountDescription');",
" pm.expect(jsonData.account).to.have.property('classification');",
" pm.expect(jsonData.account).to.have.property('accountType');",
" pm.expect(jsonData.account).to.have.property('accountStatus');",
" pm.expect(jsonData.account).to.have.property('currentBalance');",
" pm.expect(jsonData.account).to.have.property('currency');",
" pm.expect(jsonData.account).to.have.property('accountNumber');",
" pm.expect(jsonData.account).to.have.property('parentAccountId');",
" pm.expect(jsonData.account).to.have.property('companyId');",
" pm.expect(jsonData.account).to.have.property('id');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/accounts/{{accountId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"accounts",
"{{accountId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Create Customer",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] customer is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('customer');",
" pm.expect(jsonData.customer).to.not.be.null;",
" pm.expect(jsonData.customer).to.have.property('remoteId');",
" pm.expect(jsonData.customer).to.have.property('customerName');",
" pm.expect(jsonData.customer).to.have.property('email');",
" pm.expect(jsonData.customer).to.have.property('taxNumber');",
" pm.expect(jsonData.customer).to.have.property('customerStatus');",
" pm.expect(jsonData.customer).to.have.property('currency');",
" pm.expect(jsonData.customer).to.have.property('companyId');",
" pm.expect(jsonData.customer).to.have.property('addresses');",
" pm.expect(jsonData.customer.addresses).to.be.an('array').that.is.not.empty;",
" pm.expect(jsonData.customer.addresses[0]).to.have.property('addressType');",
" pm.expect(jsonData.customer.addresses[0]).to.have.property('street1');",
" pm.expect(jsonData.customer).to.have.property('phoneNumbers');",
" pm.expect(jsonData.customer.phoneNumbers).to.be.an('array').that.is.not.empty;",
" pm.expect(jsonData.customer.phoneNumbers[0]).to.have.property('phoneNumberType');",
" pm.expect(jsonData.customer.phoneNumbers[0]).to.have.property('phoneNumber');",
" pm.expect(jsonData.customer).to.have.property('addresses');",
" pm.expect(jsonData.customer).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.customer).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.customer).to.have.property('remoteDeleted');",
" pm.expect(jsonData.customer).to.have.property('updatedAt');",
" pm.expect(jsonData.customer).to.have.property('createdAt');",
" pm.expect(jsonData.customer).to.have.property('id');",
" pm.expect(jsonData.customer.addresses[0].addressType).to.equal('BILLING');",
" pm.expect(jsonData.customer.addresses[0].street1).to.equal('Beverly Hills');",
" pm.expect(jsonData.customer.addresses[0].zipCode).to.equal('90210');",
" pm.expect(jsonData.customer.addresses[0].country).to.equal('US');",
" pm.expect(jsonData.customer.phoneNumbers[0].phoneNumber).to.equal('09173210215');",
" pm.expect(jsonData.customer.phoneNumbers[0].phoneNumberType).to.equal('MOBILE');",
"});",
"",
"var jsonData = pm.response.json();",
"let customerId = jsonData.customer.id;",
"postman.setEnvironmentVariable(\"customerId\", customerId);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"customerName\": \"Alloy+{{$randomUUID}}\",\n \"email\":\"alloy+{{$randomUUID}}@runalloy.com\",\n \"addresses\": [\n { \n \"addressType\": \"BILLING\",\n \"street1\": \"Beverly Hills\",\n \"zipCode\": \"90210\",\n \"country\": \"US\"\n }\n ],\n \"phoneNumbers\": [\n {\n \"phoneNumberType\": \"MOBILE\",\n \"phoneNumber\": \"09173210215\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/customers?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "customers"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Customer",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"customer is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('customer');",
" pm.expect(jsonData.customer).to.not.be.null;",
" pm.expect(jsonData.customer).to.have.property('remoteId');",
" pm.expect(jsonData.customer).to.have.property('customerName');",
" pm.expect(jsonData.customer).to.have.property('email');",
" pm.expect(jsonData.customer).to.have.property('taxNumber');",
" pm.expect(jsonData.customer).to.have.property('customerStatus');",
" pm.expect(jsonData.customer).to.have.property('currency');",
" pm.expect(jsonData.customer).to.have.property('companyId');",
" pm.expect(jsonData.customer).to.have.property('addresses');",
" pm.expect(jsonData.customer).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.customer).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.customer).to.have.property('remoteDeleted');",
" pm.expect(jsonData.customer).to.have.property('updatedAt');",
" pm.expect(jsonData.customer).to.have.property('createdAt');",
" pm.expect(jsonData.customer).to.have.property('id');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/customers/{{customerId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"customers",
"{{customerId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Create Vendor",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"vendor is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('vendor');",
" pm.expect(jsonData.vendor).to.not.be.null;",
" pm.expect(jsonData.vendor).to.have.property('remoteId');",
" pm.expect(jsonData.vendor).to.have.property('vendorName');",
" pm.expect(jsonData.vendor).to.have.property('email');",
" pm.expect(jsonData.vendor).to.have.property('taxNumber');",
" pm.expect(jsonData.vendor).to.have.property('vendorStatus');",
" pm.expect(jsonData.vendor).to.have.property('currency');",
" pm.expect(jsonData.vendor).to.have.property('companyId');",
" pm.expect(jsonData.vendor).to.have.property('addresses');",
" pm.expect(jsonData.vendor.addresses).to.be.an('array').that.is.not.empty;",
" pm.expect(jsonData.vendor).to.have.property('phoneNumbers');",
" pm.expect(jsonData.vendor).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.vendor).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.vendor).to.have.property('remoteDeleted');",
" pm.expect(jsonData.vendor).to.have.property('updatedAt');",
" pm.expect(jsonData.vendor).to.have.property('createdAt');",
" pm.expect(jsonData.vendor).to.have.property('id');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('addressType');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('street1');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('street2');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('city');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('state');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('country');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('countrySubdivision');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('country');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('zipCode');",
" pm.expect(jsonData.vendor.addresses[0].street1).to.equal('Avenue of the Americas');",
" pm.expect(jsonData.vendor.addresses[0].zipCode).to.equal('90210');",
"",
"});",
"",
"var jsonData = pm.response.json();",
"let vendorId = jsonData.vendor.id;",
"postman.setEnvironmentVariable(\"vendorId\", vendorId);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"vendorName\": \"Alloy+{{$randomUUID}}\",\n \"vendorStatus\": \"ACTIVE\",\n \"email\":\"alloy+{{$randomUUID}}@runalloy.com\",\n \"addresses\": [\n { \n \"addressType\": \"BILLING\",\n \"street1\": \"Avenue of the Americas\",\n \"zipCode\": \"90210\",\n \"country\": \"US\"\n }\n ],\n \"phoneNumbers\": [\n {\n \"phoneNumberType\": \"MOBILE\",\n \"phoneNumber\": \"09173210215\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/vendors?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "vendors"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Vendor",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] vendor is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('vendor');",
" pm.expect(jsonData.vendor).to.not.be.null;",
" pm.expect(jsonData.vendor).to.have.property('remoteId');",
" pm.expect(jsonData.vendor).to.have.property('vendorName');",
" pm.expect(jsonData.vendor).to.have.property('email');",
" pm.expect(jsonData.vendor).to.have.property('taxNumber');",
" pm.expect(jsonData.vendor).to.have.property('vendorStatus');",
" pm.expect(jsonData.vendor).to.have.property('currency');",
" pm.expect(jsonData.vendor).to.have.property('companyId');",
" pm.expect(jsonData.vendor).to.have.property('addresses');",
" pm.expect(jsonData.vendor.addresses).to.be.an('array');",
" pm.expect(jsonData.vendor).to.have.property('phoneNumbers');",
" pm.expect(jsonData.vendor).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.vendor).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.vendor).to.have.property('remoteDeleted');",
" pm.expect(jsonData.vendor).to.have.property('updatedAt');",
" pm.expect(jsonData.vendor).to.have.property('createdAt');",
" pm.expect(jsonData.vendor).to.have.property('id');",
" if(jsonData.vendor.addresses.length > 0) {",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('addressType');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('street1');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('street2');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('city');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('state');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('country');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('countrySubdivision');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('country');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('zipCode');",
" }",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/vendors/{{vendorId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"vendors",
"{{vendorId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Create Item",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] item is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('item');",
" pm.expect(jsonData.item).to.not.be.null;",
" pm.expect(jsonData.item).to.have.property('remoteId');",
" pm.expect(jsonData.item).to.have.property('itemName');",
" pm.expect(jsonData.item).to.have.property('itemStatus');",
" pm.expect(jsonData.item).to.have.property('itemType');",
" pm.expect(jsonData.item).to.have.property('unitPrice');",
" pm.expect(jsonData.item).to.have.property('purchasePrice');",
" pm.expect(jsonData.item).to.have.property('qtyOnHand');",
" pm.expect(jsonData.item).to.have.property('billAccountId');",
" pm.expect(jsonData.item).to.have.property('invoiceAccountId');",
" pm.expect(jsonData.item).to.have.property('assetAccountId');",
" pm.expect(jsonData.item).to.have.property('companyId');",
" pm.expect(jsonData.item).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.item).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.item).to.have.property('remoteDeleted');",
" pm.expect(jsonData.item).to.have.property('updatedAt');",
" pm.expect(jsonData.item).to.have.property('createdAt');",
" pm.expect(jsonData.item).to.have.property('id');",
" pm.expect(jsonData.item.itemType).to.equal(\"SERVICE\");",
" pm.expect(jsonData.item.itemName).to.contain(\"Item\");",
"});",
"",
"var jsonData = pm.response.json();",
"console.log(jsonData);",
"let itemId = jsonData.item.id;",
"postman.setEnvironmentVariable(\"itemId\", itemId);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"itemName\": \"{{$randomAdjective}} {{$randomNoun}} Item {{$randomUUID}}\",\n \"itemType\": \"SERVICE\",\n \"billAccountId\": \"{{accountId}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/items?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "items"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Item",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] item is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('item');",
" pm.expect(jsonData.item).to.not.be.null;",
" pm.expect(jsonData.item).to.have.property('remoteId');",
" pm.expect(jsonData.item).to.have.property('itemName');",
" pm.expect(jsonData.item).to.have.property('itemStatus');",
" pm.expect(jsonData.item).to.have.property('itemType');",
" pm.expect(jsonData.item).to.have.property('unitPrice');",
" pm.expect(jsonData.item).to.have.property('purchasePrice');",
" pm.expect(jsonData.item).to.have.property('qtyOnHand');",
" pm.expect(jsonData.item).to.have.property('billAccountId');",
" pm.expect(jsonData.item).to.have.property('invoiceAccountId');",
" pm.expect(jsonData.item).to.have.property('assetAccountId');",
" pm.expect(jsonData.item).to.have.property('companyId');",
" pm.expect(jsonData.item).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.item).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.item).to.have.property('remoteDeleted');",
" pm.expect(jsonData.item).to.have.property('updatedAt');",
" pm.expect(jsonData.item).to.have.property('createdAt');",
" pm.expect(jsonData.item).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/items/{{itemId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"items",
"{{itemId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Get Account For Create PO",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"accounts are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('accounts');",
" pm.expect(jsonData.accounts[0]).to.not.be.null;",
" pm.expect(jsonData.accounts[0]).to.have.property('remoteId');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountName');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountDescription');",
" pm.expect(jsonData.accounts[0]).to.have.property('classification');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountType');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountStatus');",
" pm.expect(jsonData.accounts[0]).to.have.property('currentBalance');",
" pm.expect(jsonData.accounts[0]).to.have.property('currency');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountNumber');",
" pm.expect(jsonData.accounts[0]).to.have.property('parentAccountId');",
" pm.expect(jsonData.accounts[0]).to.have.property('companyId');",
" pm.expect(jsonData.accounts[0]).to.have.property('id');",
"});",
"",
"var jsonData = pm.response.json();",
"let accountId = jsonData.accounts[0].id;",
"postman.setEnvironmentVariable(\"accountIdForCreatePO\", accountId);",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": []
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/accounts?credentialId={{qboCredentialId}}&classification=LIABILITY&accountType=ACCOUNTS_PAYABLE",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "accounts"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
},
{
"key": "classification",
"value": "LIABILITY"
},
{
"key": "accountType",
"value": "ACCOUNTS_PAYABLE"
}
]
}
},
"response": []
},
{
"name": "Create Purchase Order",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] purchase order is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('purchaseOrder');",
" pm.expect(jsonData.purchaseOrder).to.not.be.null;",
" pm.expect(jsonData.purchaseOrder).to.have.property('remoteId');",
" pm.expect(jsonData.purchaseOrder).to.have.property('purchaseOrderStatus');",
" pm.expect(jsonData.purchaseOrder).to.have.property('issueDate');",
" pm.expect(jsonData.purchaseOrder).to.have.property('purchaseOrderNumber');",
" pm.expect(jsonData.purchaseOrder).to.have.property('deliveryDate');",
" pm.expect(jsonData.purchaseOrder).to.have.property('deliveryAddress');",
" pm.expect(jsonData.purchaseOrder).to.have.property('vendorId');",
" pm.expect(jsonData.purchaseOrder).to.have.property('accountId');",
" pm.expect(jsonData.purchaseOrder).to.have.property('memo');",
" pm.expect(jsonData.purchaseOrder).to.have.property('companyId');",
" pm.expect(jsonData.purchaseOrder).to.have.property('totalAmount');",
" pm.expect(jsonData.purchaseOrder).to.have.property('currency');",
" pm.expect(jsonData.purchaseOrder).to.have.property('exchangeRate');",
" pm.expect(jsonData.purchaseOrder).to.have.property('lineItems');",
" pm.expect(jsonData.purchaseOrder).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.purchaseOrder).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.purchaseOrder).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.purchaseOrder).to.have.property('remoteDeleted');",
" pm.expect(jsonData.purchaseOrder).to.have.property('updatedAt');",
" pm.expect(jsonData.purchaseOrder).to.have.property('createdAt');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('id');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('remoteId');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('description');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('quantity');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('accountingItemId');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('accountId');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('trackingCategoryId');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('taxAmount');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('totalLineAmount');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('currency');",
" pm.expect(jsonData.purchaseOrder.lineItems[0]).to.have.property('trackingCategoryIds');",
"});",
"",
"var jsonData = pm.response.json();",
"let purchaseOrderId = jsonData.purchaseOrder.id;",
"postman.setEnvironmentVariable(\"purchaseOrderId\", purchaseOrderId);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"vendorId\": \"{{vendorId}}\",\n \"accountId\": \"{{accountIdForCreatePO}}\",\n \"lineItems\": [{\n \"description\": \"Line Item 1\",\n \"accountingItemId\": \"{{itemId}}\",\n \"totalLineAmount\": 100\n }]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/purchase-orders?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"purchase-orders"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Purchase Order",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"purchase order is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('purchaseOrder');",
" pm.expect(jsonData.purchaseOrder).to.not.be.null;",
" pm.expect(jsonData.purchaseOrder).to.have.property('remoteId');",
" pm.expect(jsonData.purchaseOrder).to.have.property('purchaseOrderStatus');",
" pm.expect(jsonData.purchaseOrder).to.have.property('issueDate');",
" pm.expect(jsonData.purchaseOrder).to.have.property('purchaseOrderNumber');",
" pm.expect(jsonData.purchaseOrder).to.have.property('deliveryDate');",
" pm.expect(jsonData.purchaseOrder).to.have.property('deliveryAddress');",
" pm.expect(jsonData.purchaseOrder).to.have.property('vendorId');",
" pm.expect(jsonData.purchaseOrder).to.have.property('accountId');",
" pm.expect(jsonData.purchaseOrder).to.have.property('memo');",
" pm.expect(jsonData.purchaseOrder).to.have.property('companyId');",
" pm.expect(jsonData.purchaseOrder).to.have.property('totalAmount');",
" pm.expect(jsonData.purchaseOrder).to.have.property('currency');",
" pm.expect(jsonData.purchaseOrder).to.have.property('exchangeRate');",
" pm.expect(jsonData.purchaseOrder).to.have.property('lineItems');",
" pm.expect(jsonData.purchaseOrder).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.purchaseOrder).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.purchaseOrder).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.purchaseOrder).to.have.property('remoteDeleted');",
" pm.expect(jsonData.purchaseOrder).to.have.property('updatedAt');",
" pm.expect(jsonData.purchaseOrder).to.have.property('createdAt');",
" pm.expect(jsonData.purchaseOrder).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/purchase-orders/{{purchaseOrderId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"purchase-orders",
"{{purchaseOrderId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Create Bill",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"bill is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('bill');",
" pm.expect(jsonData.bill).to.not.be.null;",
" pm.expect(jsonData.bill).to.have.property('remoteId');",
" pm.expect(jsonData.bill).to.have.property('vendorId');",
" pm.expect(jsonData.bill).to.have.property('billNumber');",
" pm.expect(jsonData.bill).to.have.property('issueDate');",
" pm.expect(jsonData.bill).to.have.property('dueDate');",
" pm.expect(jsonData.bill).to.have.property('paidOnDate');",
" pm.expect(jsonData.bill).to.have.property('memo');",
" pm.expect(jsonData.bill).to.have.property('companyId');",
" pm.expect(jsonData.bill).to.have.property('currency');",
" pm.expect(jsonData.bill).to.have.property('exchangeRate');",
" pm.expect(jsonData.bill).to.have.property('totalDiscount');",
" pm.expect(jsonData.bill).to.have.property('subTotal');",
" pm.expect(jsonData.bill).to.have.property('billStatus');",
" pm.expect(jsonData.bill).to.have.property('totalTaxAmount');",
" pm.expect(jsonData.bill).to.have.property('totalAmount');",
" pm.expect(jsonData.bill).to.have.property('balance');",
" pm.expect(jsonData.bill).to.have.property('trackingCategories');",
" pm.expect(jsonData.bill).to.have.property('lineItems');",
" pm.expect(jsonData.bill).to.have.property('purchaseOrders');",
" pm.expect(jsonData.bill).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.bill).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.bill).to.have.property('remoteDeleted');",
" pm.expect(jsonData.bill).to.have.property('updatedAt');",
" pm.expect(jsonData.bill).to.have.property('createdAt');",
" pm.expect(jsonData.bill).to.have.property('id');",
" pm.expect(jsonData.bill.billNumber).to.equal('PLDT-001');",
" pm.expect(jsonData.bill.lineItems[0].description).to.equal('Line Item 1');",
" pm.expect(jsonData.bill.lineItems[0].totalAmount).to.equal(100);",
"});",
"",
"var jsonData = pm.response.json();",
"let billId = jsonData.bill.id;",
"postman.setEnvironmentVariable(\"billId\", billId);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"vendorId\": \"{{vendorId}}\",\n \"billNumber\": \"PLDT-001\",\n \"lineItems\": [\n {\n \"description\": \"Line Item 1\",\n \"totalAmount\": 100,\n \"accountId\": \"{{accountId}}\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/bills?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "bills"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Bill",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] bill is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('bill');",
" pm.expect(jsonData.bill).to.not.be.null;",
" pm.expect(jsonData.bill).to.have.property('remoteId');",
" pm.expect(jsonData.bill).to.have.property('vendorId');",
" pm.expect(jsonData.bill).to.have.property('billNumber');",
" pm.expect(jsonData.bill).to.have.property('issueDate');",
" pm.expect(jsonData.bill).to.have.property('dueDate');",
" pm.expect(jsonData.bill).to.have.property('paidOnDate');",
" pm.expect(jsonData.bill).to.have.property('memo');",
" pm.expect(jsonData.bill).to.have.property('companyId');",
" pm.expect(jsonData.bill).to.have.property('currency');",
" pm.expect(jsonData.bill).to.have.property('exchangeRate');",
" pm.expect(jsonData.bill).to.have.property('totalDiscount');",
" pm.expect(jsonData.bill).to.have.property('subTotal');",
" pm.expect(jsonData.bill).to.have.property('billStatus');",
" pm.expect(jsonData.bill).to.have.property('totalTaxAmount');",
" pm.expect(jsonData.bill).to.have.property('totalAmount');",
" pm.expect(jsonData.bill).to.have.property('balance');",
" pm.expect(jsonData.bill).to.have.property('trackingCategories');",
" pm.expect(jsonData.bill).to.have.property('lineItems');",
" pm.expect(jsonData.bill).to.have.property('purchaseOrders');",
" pm.expect(jsonData.bill).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.bill).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.bill).to.have.property('remoteDeleted');",
" pm.expect(jsonData.bill).to.have.property('updatedAt');",
" pm.expect(jsonData.bill).to.have.property('createdAt');",
" pm.expect(jsonData.bill).to.have.property('id');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('id');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('remoteId');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('description');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('quantity');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('currency');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('accountingItemId');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('accountId');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('trackingCategoryId');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.bill.lineItems[0]).to.have.property('companyId');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/bills/{{billId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"bills",
"{{billId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Get Item For Create Invoice",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] items are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('items');",
" pm.expect(jsonData.items[0]).to.not.be.null;",
" pm.expect(jsonData.items[0]).to.have.property('remoteId');",
" pm.expect(jsonData.items[0]).to.have.property('itemName');",
" pm.expect(jsonData.items[0]).to.have.property('itemStatus');",
" pm.expect(jsonData.items[0]).to.have.property('itemType');",
" pm.expect(jsonData.items[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.items[0]).to.have.property('purchasePrice');",
" pm.expect(jsonData.items[0]).to.have.property('qtyOnHand');",
" pm.expect(jsonData.items[0]).to.have.property('billAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('invoiceAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('assetAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('companyId');",
" pm.expect(jsonData.items[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.items[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('createdAt');",
" pm.expect(jsonData.items[0]).to.have.property('id');",
"});",
"",
"var jsonData = pm.response.json();",
"let itemId = jsonData.items[0].id;",
"postman.setEnvironmentVariable(\"itemIdForCreateInvoice\", itemId);",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/items?credentialId={{qboCredentialId}}&itemName=Commission",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "items"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
},
{
"key": "itemName",
"value": "Commission"
}
]
}
},
"response": []
},
{
"name": "Create Invoice",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] invoice is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('invoice');",
" pm.expect(jsonData.invoice).to.not.be.null;",
" pm.expect(jsonData.invoice).to.have.property('remoteId');",
" pm.expect(jsonData.invoice).to.have.property('customerId');",
" pm.expect(jsonData.invoice).to.have.property('invoiceNumber');",
" pm.expect(jsonData.invoice).to.have.property('issueDate');",
" pm.expect(jsonData.invoice).to.have.property('dueDate');",
" pm.expect(jsonData.invoice).to.have.property('paidOnDate');",
" pm.expect(jsonData.invoice).to.have.property('memo');",
" pm.expect(jsonData.invoice).to.have.property('companyId');",
" pm.expect(jsonData.invoice).to.have.property('currency');",
" pm.expect(jsonData.invoice).to.have.property('exchangeRate');",
" pm.expect(jsonData.invoice).to.have.property('totalDiscount');",
" pm.expect(jsonData.invoice).to.have.property('subTotal');",
" pm.expect(jsonData.invoice).to.have.property('invoiceStatus');",
" pm.expect(jsonData.invoice).to.have.property('totalTaxAmount');",
" pm.expect(jsonData.invoice).to.have.property('totalAmount');",
" pm.expect(jsonData.invoice).to.have.property('balance');",
" pm.expect(jsonData.invoice).to.have.property('trackingCategories');",
" pm.expect(jsonData.invoice).to.have.property('lineItems');",
" pm.expect(jsonData.invoice).to.have.property('purchaseOrders');",
" pm.expect(jsonData.invoice).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.invoice).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.invoice).to.have.property('remoteDeleted');",
" pm.expect(jsonData.invoice).to.have.property('updatedAt');",
" pm.expect(jsonData.invoice).to.have.property('createdAt');",
" pm.expect(jsonData.invoice).to.have.property('id');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('id');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('remoteId');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('description');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('quantity');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('currency');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('accountingItemId');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('accountId');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('trackingCategoryId');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('companyId');",
"});",
"",
"var jsonData = pm.response.json();",
"let invoiceId = jsonData.invoice.id;",
"postman.setEnvironmentVariable(\"invoiceId\", invoiceId);"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"customerId\": \"{{customerId}}\",\n \"invoiceNumber\": \"ALY-001\",\n \"lineItems\": [\n {\n \"description\": \"Francis Menguito - Developer\",\n \"totalAmount\": 10000,\n \"accountingItemId\": \"{{itemIdForCreateInvoice}}\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/invoices?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "invoices"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Invoice",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"invoice is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('invoice');",
" pm.expect(jsonData.invoice).to.not.be.null;",
" pm.expect(jsonData.invoice).to.have.property('remoteId');",
" pm.expect(jsonData.invoice).to.have.property('customerId');",
" pm.expect(jsonData.invoice).to.have.property('invoiceNumber');",
" pm.expect(jsonData.invoice).to.have.property('issueDate');",
" pm.expect(jsonData.invoice).to.have.property('dueDate');",
" pm.expect(jsonData.invoice).to.have.property('paidOnDate');",
" pm.expect(jsonData.invoice).to.have.property('memo');",
" pm.expect(jsonData.invoice).to.have.property('companyId');",
" pm.expect(jsonData.invoice).to.have.property('currency');",
" pm.expect(jsonData.invoice).to.have.property('exchangeRate');",
" pm.expect(jsonData.invoice).to.have.property('totalDiscount');",
" pm.expect(jsonData.invoice).to.have.property('subTotal');",
" pm.expect(jsonData.invoice).to.have.property('invoiceStatus');",
" pm.expect(jsonData.invoice).to.have.property('totalTaxAmount');",
" pm.expect(jsonData.invoice).to.have.property('totalAmount');",
" pm.expect(jsonData.invoice).to.have.property('balance');",
" pm.expect(jsonData.invoice).to.have.property('trackingCategories');",
" pm.expect(jsonData.invoice).to.have.property('lineItems');",
" pm.expect(jsonData.invoice).to.have.property('purchaseOrders');",
" pm.expect(jsonData.invoice).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.invoice).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.invoice).to.have.property('remoteDeleted');",
" pm.expect(jsonData.invoice).to.have.property('updatedAt');",
" pm.expect(jsonData.invoice).to.have.property('createdAt');",
" pm.expect(jsonData.invoice).to.have.property('id');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('id');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('remoteId');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('description');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('quantity');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('currency');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('accountingItemId');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('accountId');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('trackingCategoryId');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.invoice.lineItems[0]).to.have.property('companyId');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/invoices/{{invoiceId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"invoices",
"{{invoiceId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Create Payment",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] payment is created correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('payment');",
" pm.expect(jsonData.payment).to.not.be.null;",
" pm.expect(jsonData.payment).to.have.property('remoteId');",
" pm.expect(jsonData.payment).to.have.property('transactionDate');",
" pm.expect(jsonData.payment).to.have.property('customerId');",
" pm.expect(jsonData.payment).to.have.property('vendorId');",
" pm.expect(jsonData.payment).to.have.property('accountId');",
" pm.expect(jsonData.payment).to.have.property('currency');",
" pm.expect(jsonData.payment).to.have.property('exchangeRate');",
" pm.expect(jsonData.payment).to.have.property('companyId');",
" pm.expect(jsonData.payment).to.have.property('totalAmount');",
" pm.expect(jsonData.payment).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.payment).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.payment).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.payment).to.have.property('remoteDeleted');",
" pm.expect(jsonData.payment).to.have.property('updatedAt');",
" pm.expect(jsonData.payment).to.have.property('createdAt');",
" pm.expect(jsonData.payment).to.have.property('id');",
" pm.expect(jsonData.payment.totalAmount).to.equal(10);",
"});",
"",
"var jsonData = pm.response.json();",
"let paymentId = jsonData.payment.id;",
"postman.setEnvironmentVariable(\"paymentId\", paymentId);",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"customerId\": \"{{customerId}}\",\n \"totalAmount\": 10\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/payments?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "payments"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Payment",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] payment is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('payment');",
" pm.expect(jsonData.payment).to.not.be.null;",
" pm.expect(jsonData.payment).to.have.property('remoteId');",
" pm.expect(jsonData.payment).to.have.property('transactionDate');",
" pm.expect(jsonData.payment).to.have.property('customerId');",
" pm.expect(jsonData.payment).to.have.property('vendorId');",
" pm.expect(jsonData.payment).to.have.property('accountId');",
" pm.expect(jsonData.payment).to.have.property('currency');",
" pm.expect(jsonData.payment).to.have.property('exchangeRate');",
" pm.expect(jsonData.payment).to.have.property('companyId');",
" pm.expect(jsonData.payment).to.have.property('totalAmount');",
" pm.expect(jsonData.payment).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.payment).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.payment).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.payment).to.have.property('remoteDeleted');",
" pm.expect(jsonData.payment).to.have.property('updatedAt');",
" pm.expect(jsonData.payment).to.have.property('createdAt');",
" pm.expect(jsonData.payment).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/payments/{{paymentId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"payments",
"{{paymentId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
}
]
},
{
"name": "03 Update",
"item": [
{
"name": "Update Account",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"account is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData.account).to.not.be.null;",
" pm.expect(jsonData.account).to.have.property('remoteId');",
" pm.expect(jsonData.account).to.have.property('accountName');",
" pm.expect(jsonData.account).to.have.property('accountDescription');",
" pm.expect(jsonData.account).to.have.property('classification');",
" pm.expect(jsonData.account).to.have.property('accountType');",
" pm.expect(jsonData.account).to.have.property('accountStatus');",
" pm.expect(jsonData.account).to.have.property('currentBalance');",
" pm.expect(jsonData.account).to.have.property('currency');",
" pm.expect(jsonData.account).to.have.property('accountNumber');",
" pm.expect(jsonData.account).to.have.property('parentAccountId');",
" pm.expect(jsonData.account).to.have.property('companyId');",
" pm.expect(jsonData.account).to.have.property('id');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"accountName\": \"CachoChildren+{{$randomUUID}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/accounts/{{accountId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"accounts",
"{{accountId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Update Customer",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"customer is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('customer');",
" pm.expect(jsonData.customer).to.not.be.null;",
" pm.expect(jsonData.customer).to.have.property('remoteId');",
" pm.expect(jsonData.customer).to.have.property('customerName');",
" pm.expect(jsonData.customer).to.have.property('email');",
" pm.expect(jsonData.customer).to.have.property('taxNumber');",
" pm.expect(jsonData.customer).to.have.property('customerStatus');",
" pm.expect(jsonData.customer).to.have.property('currency');",
" pm.expect(jsonData.customer).to.have.property('companyId');",
" pm.expect(jsonData.customer).to.have.property('addresses');",
" pm.expect(jsonData.customer).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.customer).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.customer).to.have.property('remoteDeleted');",
" pm.expect(jsonData.customer).to.have.property('updatedAt');",
" pm.expect(jsonData.customer).to.have.property('createdAt');",
" pm.expect(jsonData.customer).to.have.property('id');",
" pm.expect(jsonData.customer.customerName).to.include(\"AlloyUpdate\");",
" pm.expect(jsonData.customer.addresses).to.be.an('array').that.is.not.empty;",
" pm.expect(jsonData.customer.addresses[0].street1).to.include(\"Lombard\");",
" pm.expect(jsonData.customer.addresses[0].zipCode).to.include(\"94012\");",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"customerName\": \"AlloyUpdate+{{$randomUUID}}\",\n \"addresses\": [\n { \n \"addressType\": \"BILLING\",\n \"street1\": \"Lombard\",\n \"zipCode\": \"94012\",\n \"country\": \"US\"\n }\n ],\n \"phoneNumbers\": [\n {\n \"phoneNumberType\": \"MOBILE\",\n \"phoneNumber\": \"09173210215\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/customers/{{customerId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"customers",
"{{customerId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Update Vendor",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"vendor is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('vendor');",
" pm.expect(jsonData.vendor).to.not.be.null;",
" pm.expect(jsonData.vendor).to.have.property('remoteId');",
" pm.expect(jsonData.vendor).to.have.property('vendorName');",
" pm.expect(jsonData.vendor).to.have.property('email');",
" pm.expect(jsonData.vendor).to.have.property('taxNumber');",
" pm.expect(jsonData.vendor).to.have.property('vendorStatus');",
" pm.expect(jsonData.vendor).to.have.property('currency');",
" pm.expect(jsonData.vendor).to.have.property('companyId');",
" pm.expect(jsonData.vendor).to.have.property('addresses');",
" pm.expect(jsonData.vendor.addresses).to.be.an('array').that.is.not.empty;",
" pm.expect(jsonData.vendor).to.have.property('phoneNumbers');",
" pm.expect(jsonData.vendor).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.vendor).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.vendor).to.have.property('remoteDeleted');",
" pm.expect(jsonData.vendor).to.have.property('updatedAt');",
" pm.expect(jsonData.vendor).to.have.property('createdAt');",
" pm.expect(jsonData.vendor).to.have.property('id');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('addressType');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('street1');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('street2');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('city');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('state');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('country');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('countrySubdivision');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('country');",
" pm.expect(jsonData.vendor.addresses[0]).to.have.property('zipCode');",
" pm.expect(jsonData.vendor.addresses[0].street1).to.equal('Dan Troy');",
" pm.expect(jsonData.vendor.addresses[0].zipCode).to.equal('14221');",
" pm.expect(jsonData.vendor.vendorName).to.include(\"AlloyUpdate\");",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"vendorName\": \"AlloyUpdate+{{$randomUUID}}\",\n \"vendorStatus\": \"ACTIVE\",\n \"addresses\": [\n { \n \"addressType\": \"BILLING\",\n \"street1\": \"Dan Troy\",\n \"zipCode\": \"14221\",\n \"country\": \"US\"\n }\n ],\n \"phoneNumbers\": [\n {\n \"phoneNumberType\": \"MOBILE\",\n \"phoneNumber\": \"09173210215\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/vendors/{{vendorId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"vendors",
"{{vendorId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Get Item with itemType INVENTORY for Update Item unitPrice",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] items are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('items');",
" pm.expect(jsonData.items[0]).to.not.be.null;",
" pm.expect(jsonData.items[0]).to.have.property('remoteId');",
" pm.expect(jsonData.items[0]).to.have.property('itemName');",
" pm.expect(jsonData.items[0]).to.have.property('itemStatus');",
" pm.expect(jsonData.items[0]).to.have.property('itemType');",
" pm.expect(jsonData.items[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.items[0]).to.have.property('purchasePrice');",
" pm.expect(jsonData.items[0]).to.have.property('qtyOnHand');",
" pm.expect(jsonData.items[0]).to.have.property('billAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('invoiceAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('assetAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('companyId');",
" pm.expect(jsonData.items[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.items[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('createdAt');",
" pm.expect(jsonData.items[0]).to.have.property('id');",
"});",
"",
"var jsonData = pm.response.json();",
"let itemId = jsonData.items[0].id;",
"postman.setEnvironmentVariable(\"itemIdForUpdate\", itemId);",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/items?credentialId={{qboCredentialId}}&itemType=INVENTORY",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "items"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
},
{
"key": "itemType",
"value": "INVENTORY"
}
]
}
},
"response": []
},
{
"name": "Update Item",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] item is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('item');",
" pm.expect(jsonData.item).to.not.be.null;",
" pm.expect(jsonData.item).to.have.property('remoteId');",
" pm.expect(jsonData.item).to.have.property('itemName');",
" pm.expect(jsonData.item).to.have.property('itemStatus');",
" pm.expect(jsonData.item).to.have.property('itemType');",
" pm.expect(jsonData.item).to.have.property('unitPrice');",
" pm.expect(jsonData.item).to.have.property('purchasePrice');",
" pm.expect(jsonData.item).to.have.property('qtyOnHand');",
" pm.expect(jsonData.item).to.have.property('billAccountId');",
" pm.expect(jsonData.item).to.have.property('invoiceAccountId');",
" pm.expect(jsonData.item).to.have.property('assetAccountId');",
" pm.expect(jsonData.item).to.have.property('companyId');",
" pm.expect(jsonData.item).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.item).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.item).to.have.property('remoteDeleted');",
" pm.expect(jsonData.item).to.have.property('updatedAt');",
" pm.expect(jsonData.item).to.have.property('createdAt');",
" pm.expect(jsonData.item).to.have.property('id');",
" pm.expect(jsonData.item.itemType).to.equal(\"INVENTORY\");",
" pm.expect(jsonData.item.itemStatus).to.equal(\"ACTIVE\");",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"itemStatus\": \"ACTIVE\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/items/{{itemIdForUpdate}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"items",
"{{itemIdForUpdate}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
}
]
},
{
"name": "04 List and Count",
"item": [
{
"name": "List Company Info",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] companyInfo are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('companyInfo');",
" pm.expect(jsonData.companyInfo[0]).to.not.be.null;",
" pm.expect(jsonData.companyInfo[0]).to.have.property('remoteId');",
" pm.expect(jsonData.companyInfo[0]).to.have.property('companyName');",
" pm.expect(jsonData.companyInfo[0]).to.have.property('companyLegalName');",
" pm.expect(jsonData.companyInfo[0]).to.have.property('taxNumber');",
" pm.expect(jsonData.companyInfo[0]).to.have.property('fiscalYearEndMonth');",
" pm.expect(jsonData.companyInfo[0]).to.have.property('fiscalYearEndDay');",
" pm.expect(jsonData.companyInfo[0]).to.have.property('currency');",
" pm.expect(jsonData.companyInfo[0]).to.have.property('companyUrls');",
" pm.expect(jsonData.companyInfo[0].companyUrls).to.be.an('array');",
" pm.expect(jsonData.companyInfo[0]).to.have.property('companyAddresses');",
" pm.expect(jsonData.companyInfo[0].companyAddresses).to.be.an('array');",
" pm.expect(jsonData.companyInfo[0]).to.have.property('companyPhoneNumbers');",
" pm.expect(jsonData.companyInfo[0].companyPhoneNumbers).to.be.an('array');",
" if(jsonData.companyInfo[0].companyAddresses.length > 0) {",
" pm.expect(jsonData.companyInfo[0].companyAddresses[0]).to.have.property('zipCode');",
" pm.expect(jsonData.companyInfo[0].companyAddresses[0]).to.have.property('city');",
" pm.expect(jsonData.companyInfo[0].companyAddresses[0]).to.have.property('addressType');",
" pm.expect(jsonData.companyInfo[0].companyAddresses[0]).to.have.property('street1');",
" pm.expect(jsonData.companyInfo[0].companyAddresses[0]).to.have.property('state');",
" pm.expect(jsonData.companyInfo[0].companyAddresses[0]).to.have.property('countrySubdivision');",
" }",
" pm.expect(jsonData.companyInfo[0]).to.have.property('id');",
"});",
"",
"var jsonData = pm.response.json();",
"let companyInfoId = jsonData.companyInfo[0].id;",
"postman.setEnvironmentVariable(\"companyInfoId\", companyInfoId);",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/company-info?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "company-info"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Get Company Info Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] companyInfo count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/company-info/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"company-info",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Company Info",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] companyInfo is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('companyInfo');",
" pm.expect(jsonData.companyInfo).to.not.be.null;",
" pm.expect(jsonData.companyInfo).to.have.property('remoteId');",
" pm.expect(jsonData.companyInfo).to.have.property('companyName');",
" pm.expect(jsonData.companyInfo).to.have.property('companyLegalName');",
" pm.expect(jsonData.companyInfo).to.have.property('taxNumber');",
" pm.expect(jsonData.companyInfo).to.have.property('fiscalYearEndMonth');",
" pm.expect(jsonData.companyInfo).to.have.property('fiscalYearEndDay');",
" pm.expect(jsonData.companyInfo).to.have.property('currency');",
" pm.expect(jsonData.companyInfo).to.have.property('companyUrls');",
" pm.expect(jsonData.companyInfo.companyUrls).to.be.an('array');",
" pm.expect(jsonData.companyInfo).to.have.property('companyAddresses');",
" pm.expect(jsonData.companyInfo.companyAddresses).to.be.an('array');",
" pm.expect(jsonData.companyInfo).to.have.property('companyPhoneNumbers');",
" pm.expect(jsonData.companyInfo.companyPhoneNumbers).to.be.an('array');",
" if(jsonData.companyInfo.companyAddresses.length > 0) {",
" pm.expect(jsonData.companyInfo.companyAddresses[0]).to.have.property('zipCode');",
" pm.expect(jsonData.companyInfo.companyAddresses[0]).to.have.property('city');",
" pm.expect(jsonData.companyInfo.companyAddresses[0]).to.have.property('addressType');",
" pm.expect(jsonData.companyInfo.companyAddresses[0]).to.have.property('street1');",
" pm.expect(jsonData.companyInfo.companyAddresses[0]).to.have.property('state');",
" pm.expect(jsonData.companyInfo.companyAddresses[0]).to.have.property('countrySubdivision');",
" }",
" pm.expect(jsonData.companyInfo).to.have.property('id');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/company-info/{{companyInfoId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"company-info",
"{{companyInfoId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Accounts",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] accounts are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" console.log(jsonData);",
" pm.expect(jsonData).to.have.property('accounts');",
" pm.expect(jsonData.accounts[0]).to.not.be.null;",
" pm.expect(jsonData.accounts[0]).to.have.property('remoteId');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountName');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountDescription');",
" pm.expect(jsonData.accounts[0]).to.have.property('classification');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountType');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountStatus');",
" pm.expect(jsonData.accounts[0]).to.have.property('currentBalance');",
" pm.expect(jsonData.accounts[0]).to.have.property('currency');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountNumber');",
" pm.expect(jsonData.accounts[0]).to.have.property('parentAccountId');",
" pm.expect(jsonData.accounts[0]).to.have.property('companyId');",
" pm.expect(jsonData.accounts[0]).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": []
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/accounts?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "accounts"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Accounts Filters",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] accounts are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" console.log(jsonData);",
" pm.expect(jsonData).to.have.property('accounts');",
" pm.expect(jsonData.accounts[0]).to.not.be.null;",
" pm.expect(jsonData.accounts[0]).to.have.property('remoteId');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountName');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountDescription');",
" pm.expect(jsonData.accounts[0]).to.have.property('classification');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountType');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountStatus');",
" pm.expect(jsonData.accounts[0]).to.have.property('currentBalance');",
" pm.expect(jsonData.accounts[0]).to.have.property('currency');",
" pm.expect(jsonData.accounts[0]).to.have.property('accountNumber');",
" pm.expect(jsonData.accounts[0]).to.have.property('parentAccountId');",
" pm.expect(jsonData.accounts[0]).to.have.property('companyId');",
" pm.expect(jsonData.accounts[0]).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": []
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/accounts?credentialId={{qboCredentialId}}&accountNameContains=FrancisChild&classificationContains=EXP&accountStatus=ACTIVE&currency=USD&accountTypeContains=COST_OF_GOO",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "accounts"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
},
{
"key": "accountNameContains",
"value": "FrancisChild"
},
{
"key": "classificationContains",
"value": "EXP"
},
{
"key": "accountStatus",
"value": "ACTIVE"
},
{
"key": "currentBalance",
"value": "0",
"description": "bug",
"disabled": true
},
{
"key": "currentBalanceMin",
"value": "0",
"description": "bug i think",
"disabled": true
},
{
"key": "currentBalanceNotEquals",
"value": "1",
"description": "this is working",
"disabled": true
},
{
"key": "currency",
"value": "USD"
},
{
"key": "accountTypeContains",
"value": "COST_OF_GOO"
}
]
}
},
"response": []
},
{
"name": "Get Account Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] Account count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/accounts/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"accounts",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Customers",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] customers are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('customers');",
" pm.expect(jsonData.customers[0]).to.not.be.null;",
" pm.expect(jsonData.customers[0]).to.have.property('remoteId');",
" pm.expect(jsonData.customers[0]).to.have.property('customerName');",
" pm.expect(jsonData.customers[0]).to.have.property('email');",
" pm.expect(jsonData.customers[0]).to.have.property('taxNumber');",
" pm.expect(jsonData.customers[0]).to.have.property('customerStatus');",
" pm.expect(jsonData.customers[0]).to.have.property('currency');",
" pm.expect(jsonData.customers[0]).to.have.property('companyId');",
" pm.expect(jsonData.customers[0]).to.have.property('addresses');",
" pm.expect(jsonData.customers[0].addresses).to.be.an('array');",
" if(jsonData.customers[0].addresses.length > 0) {",
" pm.expect(jsonData.customers[0].addresses[0]).to.have.property('addressType');",
" pm.expect(jsonData.customers[0].addresses[0]).to.have.property('street1');",
" }",
" pm.expect(jsonData.customers[0]).to.have.property('phoneNumbers');",
" pm.expect(jsonData.customers[0].phoneNumbers).to.be.an('array');",
" if(jsonData.customers[0].phoneNumbers.length > 0) {",
" pm.expect(jsonData.customers[0].phoneNumbers[0]).to.have.property('phoneNumberType');",
" pm.expect(jsonData.customers[0].phoneNumbers[0]).to.have.property('phoneNumber');",
" }",
" pm.expect(jsonData.customers[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.customers[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.customers[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.customers[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.customers[0]).to.have.property('createdAt');",
" pm.expect(jsonData.customers[0]).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/customers?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "customers"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Get Customers Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] customer count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/customers/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"customers",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Vendors",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] vendors are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('vendors');",
" pm.expect(jsonData.vendors[0]).to.not.be.null;",
" pm.expect(jsonData.vendors[0]).to.have.property('remoteId');",
" pm.expect(jsonData.vendors[0]).to.have.property('vendorName');",
" pm.expect(jsonData.vendors[0]).to.have.property('email');",
" pm.expect(jsonData.vendors[0]).to.have.property('taxNumber');",
" pm.expect(jsonData.vendors[0]).to.have.property('vendorStatus');",
" pm.expect(jsonData.vendors[0]).to.have.property('currency');",
" pm.expect(jsonData.vendors[0]).to.have.property('companyId');",
" pm.expect(jsonData.vendors[0]).to.have.property('addresses');",
" pm.expect(jsonData.vendors[0]).to.have.property('phoneNumbers');",
" pm.expect(jsonData.vendors[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.vendors[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.vendors[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.vendors[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.vendors[0]).to.have.property('createdAt');",
" pm.expect(jsonData.vendors[0]).to.have.property('id');",
"",
" pm.expect(jsonData.vendors[0]).to.have.property('addresses');",
" pm.expect(jsonData.vendors[0].addresses[0]).to.have.property('street1');",
" pm.expect(jsonData.vendors[0].addresses[0]).to.have.property('addressType');",
" pm.expect(jsonData.vendors[0].addresses[0]).to.have.property('street2');",
" pm.expect(jsonData.vendors[0].addresses[0]).to.have.property('city');",
" pm.expect(jsonData.vendors[0].addresses[0]).to.have.property('state');",
" pm.expect(jsonData.vendors[0].addresses[0]).to.have.property('countrySubdivision');",
" pm.expect(jsonData.vendors[0].addresses[0]).to.have.property('country');",
" pm.expect(jsonData.vendors[0].addresses[0]).to.have.property('zipCode');",
"",
" if (jsonData.vendors[0].phoneNumbers.length > 0){",
" pm.expect(jsonData.vendors[0].phoneNumbers[0]).to.have.property('phoneNumberType');",
" pm.expect(jsonData.vendors[0].phoneNumbers[0]).to.have.property('phoneNumber');",
" }",
" ",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/vendors?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "vendors"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Get Vendor Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] vendor count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/vendors/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"vendors",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Tax Rates",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] taxRates are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('taxRates');",
" pm.expect(jsonData.taxRates[0]).to.not.be.null;",
" pm.expect(jsonData.taxRates[0]).to.have.property('remoteId');",
" pm.expect(jsonData.taxRates[0]).to.have.property('description');",
" pm.expect(jsonData.taxRates[0]).to.have.property('totalTaxRate');",
" pm.expect(jsonData.taxRates[0]).to.have.property('effectiveTaxRate');",
" pm.expect(jsonData.taxRates[0]).to.have.property('companyId');",
" pm.expect(jsonData.taxRates[0]).to.have.property('id');",
"});",
"",
"var jsonData = pm.response.json();",
"let taxRateId = jsonData.taxRates[0].id;",
"postman.setEnvironmentVariable(\"taxRateId\", taxRateId);",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/tax-rates?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "tax-rates"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Get Tax Rate Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"tax rate count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/tax-rates/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"tax-rates",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Tax Rate",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] taxRate is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('taxRate');",
" pm.expect(jsonData.taxRate).to.have.property('remoteId');",
" pm.expect(jsonData.taxRate).to.have.property('description');",
" pm.expect(jsonData.taxRate).to.have.property('totalTaxRate');",
" pm.expect(jsonData.taxRate).to.have.property('effectiveTaxRate');",
" pm.expect(jsonData.taxRate).to.have.property('companyId');",
" pm.expect(jsonData.taxRate).to.have.property('id');",
" ",
" pm.expect(jsonData.taxRate.totalTaxRate).to.be.a(\"number\");",
" pm.expect(jsonData.taxRate.remoteId).to.be.a(\"string\");",
"",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/tax-rates/{{taxRateId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"tax-rates",
"{{taxRateId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Tracking Categories",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] trackingCategories are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('trackingCategories');",
" pm.expect(jsonData.trackingCategories[0]).to.not.be.null;",
" pm.expect(jsonData.trackingCategories[0]).to.have.property('remoteId');",
" pm.expect(jsonData.trackingCategories[0]).to.have.property('trackingCategoryName');",
" pm.expect(jsonData.trackingCategories[0]).to.have.property('trackingCategoryStatus');",
" pm.expect(jsonData.trackingCategories[0]).to.have.property('trackingCategoryType');",
" pm.expect(jsonData.trackingCategories[0]).to.have.property('parentCategoryId');",
" pm.expect(jsonData.trackingCategories[0]).to.have.property('companyId');",
" pm.expect(jsonData.trackingCategories[0]).to.have.property('id');",
"});",
"",
"var jsonData = pm.response.json();",
"let trackingCategoryId = jsonData.trackingCategories[0].id;",
"postman.setEnvironmentVariable(\"trackingCategoryId\", trackingCategoryId);",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/tracking-categories?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"tracking-categories"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Get Tracking Category Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"tracking category count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/tracking-categories/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"tracking-categories",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Retrieve Tracking Category",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] tracking category is retrieved correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('trackingCategory');",
" pm.expect(jsonData.trackingCategory).to.not.be.null;",
" pm.expect(jsonData.trackingCategory).to.have.property('remoteId');",
" pm.expect(jsonData.trackingCategory).to.have.property('trackingCategoryName');",
" pm.expect(jsonData.trackingCategory).to.have.property('trackingCategoryStatus');",
" pm.expect(jsonData.trackingCategory).to.have.property('trackingCategoryType');",
" pm.expect(jsonData.trackingCategory).to.have.property('parentCategoryId');",
" pm.expect(jsonData.trackingCategory).to.have.property('companyId');",
" pm.expect(jsonData.trackingCategory).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/tracking-categories/{{trackingCategoryId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"tracking-categories",
"{{trackingCategoryId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Items",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] items are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('items');",
" pm.expect(jsonData.items[0]).to.not.be.null;",
" pm.expect(jsonData.items[0]).to.have.property('remoteId');",
" pm.expect(jsonData.items[0]).to.have.property('itemName');",
" pm.expect(jsonData.items[0]).to.have.property('itemStatus');",
" pm.expect(jsonData.items[0]).to.have.property('itemType');",
" pm.expect(jsonData.items[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.items[0]).to.have.property('purchasePrice');",
" pm.expect(jsonData.items[0]).to.have.property('qtyOnHand');",
" pm.expect(jsonData.items[0]).to.have.property('billAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('invoiceAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('assetAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('companyId');",
" pm.expect(jsonData.items[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.items[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('createdAt');",
" pm.expect(jsonData.items[0]).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/items?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "items"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Items Filters",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] items are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('items');",
" pm.expect(jsonData.items[0]).to.not.be.null;",
" pm.expect(jsonData.items[0]).to.have.property('remoteId');",
" pm.expect(jsonData.items[0]).to.have.property('itemName');",
" pm.expect(jsonData.items[0]).to.have.property('itemStatus');",
" pm.expect(jsonData.items[0]).to.have.property('itemType');",
" pm.expect(jsonData.items[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.items[0]).to.have.property('purchasePrice');",
" pm.expect(jsonData.items[0]).to.have.property('qtyOnHand');",
" pm.expect(jsonData.items[0]).to.have.property('billAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('invoiceAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('assetAccountId');",
" pm.expect(jsonData.items[0]).to.have.property('companyId');",
" pm.expect(jsonData.items[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.items[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.items[0]).to.have.property('createdAt');",
" pm.expect(jsonData.items[0]).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/items?credentialId={{qboCredentialId}}&itemNameContains=Item&itemStatus=ACTIVE&itemType=SERVICE",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "items"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
},
{
"key": "itemNameContains",
"value": "Item"
},
{
"key": "itemStatus",
"value": "ACTIVE"
},
{
"key": "itemType",
"value": "SERVICE"
}
]
}
},
"response": []
},
{
"name": "Get Item Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] item count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/items/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"items",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Purchase Orders",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] purchase orders are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('purchaseOrders');",
" pm.expect(jsonData.purchaseOrders[0]).to.not.be.null;",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('remoteId');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('purchaseOrderStatus');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('issueDate');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('purchaseOrderNumber');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('deliveryDate');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('deliveryAddress');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('vendorId');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('accountId');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('memo');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('companyId');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('currency');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('lineItems');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('createdAt');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('id');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('id');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('remoteId');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('description');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('quantity');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('accountingItemId');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('accountId');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('trackingCategoryId');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('taxAmount');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('totalLineAmount');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('currency');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('trackingCategoryIds');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/purchase-orders?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"purchase-orders"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Purchase Orders Filters",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] purchase orders are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('purchaseOrders');",
" pm.expect(jsonData.purchaseOrders[0]).to.not.be.null;",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('remoteId');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('purchaseOrderStatus');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('issueDate');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('purchaseOrderNumber');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('deliveryDate');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('deliveryAddress');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('vendorId');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('accountId');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('memo');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('companyId');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('currency');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('lineItems');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('createdAt');",
" pm.expect(jsonData.purchaseOrders[0]).to.have.property('id');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('id');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('remoteId');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('description');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('quantity');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('accountingItemId');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('accountId');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('trackingCategoryId');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('taxAmount');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('totalLineAmount');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('currency');",
" pm.expect(jsonData.purchaseOrders[0].lineItems[0]).to.have.property('trackingCategoryIds');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/purchase-orders?credentialId={{qboCredentialId}}&purchaseOrderStatus=Open&currency=USD&totalAmount=100",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"purchase-orders"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
},
{
"key": "purchaseOrderStatus",
"value": "Open"
},
{
"key": "currency",
"value": "USD"
},
{
"key": "totalAmount",
"value": "100"
}
]
}
},
"response": []
},
{
"name": "Get Purchase Order Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"purchase order count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/purchase-orders/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"purchase-orders",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Bills",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] bills are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('bills');",
" pm.expect(jsonData.bills[0]).to.not.be.null;",
" pm.expect(jsonData.bills[0]).to.have.property('remoteId');",
" pm.expect(jsonData.bills[0]).to.have.property('vendorId');",
" pm.expect(jsonData.bills[0]).to.have.property('billNumber');",
" pm.expect(jsonData.bills[0]).to.have.property('issueDate');",
" pm.expect(jsonData.bills[0]).to.have.property('dueDate');",
" pm.expect(jsonData.bills[0]).to.have.property('paidOnDate');",
" pm.expect(jsonData.bills[0]).to.have.property('memo');",
" pm.expect(jsonData.bills[0]).to.have.property('companyId');",
" pm.expect(jsonData.bills[0]).to.have.property('currency');",
" pm.expect(jsonData.bills[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.bills[0]).to.have.property('totalDiscount');",
" pm.expect(jsonData.bills[0]).to.have.property('subTotal');",
" pm.expect(jsonData.bills[0]).to.have.property('billStatus');",
" pm.expect(jsonData.bills[0]).to.have.property('totalTaxAmount');",
" pm.expect(jsonData.bills[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.bills[0]).to.have.property('balance');",
" pm.expect(jsonData.bills[0]).to.have.property('trackingCategories');",
" pm.expect(jsonData.bills[0]).to.have.property('lineItems');",
" pm.expect(jsonData.bills[0]).to.have.property('purchaseOrders');",
" pm.expect(jsonData.bills[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.bills[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.bills[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.bills[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.bills[0]).to.have.property('createdAt');",
" pm.expect(jsonData.bills[0]).to.have.property('id');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('id');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('remoteId');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('description');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('quantity');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('currency');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('accountingItemId');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('accountId');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('trackingCategoryId');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('companyId');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/bills?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "bills"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Bills Filters",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] bills are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('bills');",
" pm.expect(jsonData.bills[0]).to.not.be.null;",
" pm.expect(jsonData.bills[0]).to.have.property('remoteId');",
" pm.expect(jsonData.bills[0]).to.have.property('vendorId');",
" pm.expect(jsonData.bills[0]).to.have.property('billNumber');",
" pm.expect(jsonData.bills[0]).to.have.property('issueDate');",
" pm.expect(jsonData.bills[0]).to.have.property('dueDate');",
" pm.expect(jsonData.bills[0]).to.have.property('paidOnDate');",
" pm.expect(jsonData.bills[0]).to.have.property('memo');",
" pm.expect(jsonData.bills[0]).to.have.property('companyId');",
" pm.expect(jsonData.bills[0]).to.have.property('currency');",
" pm.expect(jsonData.bills[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.bills[0]).to.have.property('totalDiscount');",
" pm.expect(jsonData.bills[0]).to.have.property('subTotal');",
" pm.expect(jsonData.bills[0]).to.have.property('billStatus');",
" pm.expect(jsonData.bills[0]).to.have.property('totalTaxAmount');",
" pm.expect(jsonData.bills[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.bills[0]).to.have.property('balance');",
" pm.expect(jsonData.bills[0]).to.have.property('trackingCategories');",
" pm.expect(jsonData.bills[0]).to.have.property('lineItems');",
" pm.expect(jsonData.bills[0]).to.have.property('purchaseOrders');",
" pm.expect(jsonData.bills[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.bills[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.bills[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.bills[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.bills[0]).to.have.property('createdAt');",
" pm.expect(jsonData.bills[0]).to.have.property('id');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('id');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('remoteId');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('description');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('quantity');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('currency');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('accountingItemId');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('accountId');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('trackingCategoryId');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.bills[0].lineItems[0]).to.have.property('companyId');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/bills?credentialId={{qboCredentialId}}&currency=USD&totalAmount=100&billNumberContains=PLDT",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "bills"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
},
{
"key": "currency",
"value": "USD"
},
{
"key": "exchangeRate",
"value": "1",
"description": "bug",
"disabled": true
},
{
"key": "totalAmount",
"value": "100"
},
{
"key": "billNumberContains",
"value": "PLDT"
}
]
}
},
"response": []
},
{
"name": "Get Bill Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] bill count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/bills/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"bills",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Invoices",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] invoices are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('invoices');",
" pm.expect(jsonData.invoices[0]).to.not.be.null;",
" pm.expect(jsonData.invoices[0]).to.have.property('remoteId');",
" pm.expect(jsonData.invoices[0]).to.have.property('customerId');",
" pm.expect(jsonData.invoices[0]).to.have.property('invoiceNumber');",
" pm.expect(jsonData.invoices[0]).to.have.property('issueDate');",
" pm.expect(jsonData.invoices[0]).to.have.property('dueDate');",
" pm.expect(jsonData.invoices[0]).to.have.property('paidOnDate');",
" pm.expect(jsonData.invoices[0]).to.have.property('memo');",
" pm.expect(jsonData.invoices[0]).to.have.property('companyId');",
" pm.expect(jsonData.invoices[0]).to.have.property('currency');",
" pm.expect(jsonData.invoices[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.invoices[0]).to.have.property('totalDiscount');",
" pm.expect(jsonData.invoices[0]).to.have.property('subTotal');",
" pm.expect(jsonData.invoices[0]).to.have.property('invoiceStatus');",
" pm.expect(jsonData.invoices[0]).to.have.property('totalTaxAmount');",
" pm.expect(jsonData.invoices[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.invoices[0]).to.have.property('balance');",
" pm.expect(jsonData.invoices[0]).to.have.property('trackingCategories');",
" pm.expect(jsonData.invoices[0]).to.have.property('lineItems');",
" pm.expect(jsonData.invoices[0]).to.have.property('purchaseOrders');",
" pm.expect(jsonData.invoices[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.invoices[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.invoices[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.invoices[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.invoices[0]).to.have.property('createdAt');",
" pm.expect(jsonData.invoices[0]).to.have.property('id');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('id');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('remoteId');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('description');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('quantity');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('currency');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('accountingItemId');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('accountId');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('trackingCategoryId');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('companyId');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/invoices?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "invoices"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Invoices Filters",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] invoices are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('invoices');",
" pm.expect(jsonData.invoices[0]).to.not.be.null;",
" pm.expect(jsonData.invoices[0]).to.have.property('remoteId');",
" pm.expect(jsonData.invoices[0]).to.have.property('customerId');",
" pm.expect(jsonData.invoices[0]).to.have.property('invoiceNumber');",
" pm.expect(jsonData.invoices[0]).to.have.property('issueDate');",
" pm.expect(jsonData.invoices[0]).to.have.property('dueDate');",
" pm.expect(jsonData.invoices[0]).to.have.property('paidOnDate');",
" pm.expect(jsonData.invoices[0]).to.have.property('memo');",
" pm.expect(jsonData.invoices[0]).to.have.property('companyId');",
" pm.expect(jsonData.invoices[0]).to.have.property('currency');",
" pm.expect(jsonData.invoices[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.invoices[0]).to.have.property('totalDiscount');",
" pm.expect(jsonData.invoices[0]).to.have.property('subTotal');",
" pm.expect(jsonData.invoices[0]).to.have.property('invoiceStatus');",
" pm.expect(jsonData.invoices[0]).to.have.property('totalTaxAmount');",
" pm.expect(jsonData.invoices[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.invoices[0]).to.have.property('balance');",
" pm.expect(jsonData.invoices[0]).to.have.property('trackingCategories');",
" pm.expect(jsonData.invoices[0]).to.have.property('lineItems');",
" pm.expect(jsonData.invoices[0]).to.have.property('purchaseOrders');",
" pm.expect(jsonData.invoices[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.invoices[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.invoices[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.invoices[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.invoices[0]).to.have.property('createdAt');",
" pm.expect(jsonData.invoices[0]).to.have.property('id');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('id');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('remoteId');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('description');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('unitPrice');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('quantity');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('currency');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('accountingItemId');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('accountId');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('trackingCategoryId');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.invoices[0].lineItems[0]).to.have.property('companyId');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/invoices?credentialId={{qboCredentialId}}&invoiceNumberContains=ALY&currency=USD&totalAmount=10000&balance=10000&balanceMin=1&totalAmountMin=1",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "invoices"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
},
{
"key": "invoiceNumberContains",
"value": "ALY"
},
{
"key": "currency",
"value": "USD"
},
{
"key": "exchangeRate",
"value": "1",
"description": "bug",
"disabled": true
},
{
"key": "totalAmount",
"value": "10000"
},
{
"key": "balance",
"value": "10000"
},
{
"key": "balanceMin",
"value": "1"
},
{
"key": "totalAmountMin",
"value": "1"
}
]
}
},
"response": []
},
{
"name": "Get Invoice Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] invoice count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/invoices/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"invoices",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Payments",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] payments are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('payments');",
" pm.expect(jsonData.payments[0]).to.not.be.null;",
" pm.expect(jsonData.payments[0]).to.have.property('remoteId');",
" pm.expect(jsonData.payments[0]).to.have.property('transactionDate');",
" pm.expect(jsonData.payments[0]).to.have.property('customerId');",
" pm.expect(jsonData.payments[0]).to.have.property('vendorId');",
" pm.expect(jsonData.payments[0]).to.have.property('accountId');",
" pm.expect(jsonData.payments[0]).to.have.property('currency');",
" pm.expect(jsonData.payments[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.payments[0]).to.have.property('companyId');",
" pm.expect(jsonData.payments[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.payments[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.payments[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.payments[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.payments[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.payments[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.payments[0]).to.have.property('createdAt');",
" pm.expect(jsonData.payments[0]).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/payments?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "payments"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "List Payments Filters",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] payments are listed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('payments');",
" pm.expect(jsonData.payments[0]).to.not.be.null;",
" pm.expect(jsonData.payments[0]).to.have.property('remoteId');",
" pm.expect(jsonData.payments[0]).to.have.property('transactionDate');",
" pm.expect(jsonData.payments[0]).to.have.property('customerId');",
" pm.expect(jsonData.payments[0]).to.have.property('vendorId');",
" pm.expect(jsonData.payments[0]).to.have.property('accountId');",
" pm.expect(jsonData.payments[0]).to.have.property('currency');",
" pm.expect(jsonData.payments[0]).to.have.property('exchangeRate');",
" pm.expect(jsonData.payments[0]).to.have.property('companyId');",
" pm.expect(jsonData.payments[0]).to.have.property('totalAmount');",
" pm.expect(jsonData.payments[0]).to.have.property('trackingCategoryIds');",
" pm.expect(jsonData.payments[0]).to.have.property('remoteCreatedAt');",
" pm.expect(jsonData.payments[0]).to.have.property('remoteUpdatedAt');",
" pm.expect(jsonData.payments[0]).to.have.property('remoteDeleted');",
" pm.expect(jsonData.payments[0]).to.have.property('updatedAt');",
" pm.expect(jsonData.payments[0]).to.have.property('createdAt');",
" pm.expect(jsonData.payments[0]).to.have.property('id');",
"});",
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/payments?credentialId={{qboCredentialId}}&currency=USD&totalAmount=10&totalAmountMin=1",
"host": ["{{URL}}"],
"path": ["{{API_VERSION}}", "one", "accounting", "payments"],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
},
{
"key": "currency",
"value": "USD"
},
{
"key": "exchangeRate",
"value": "1",
"description": "bug",
"disabled": true
},
{
"key": "totalAmount",
"value": "10"
},
{
"key": "totalAmountMin",
"value": "1"
}
]
}
},
"response": []
},
{
"name": "Get Payment Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"response should be okay to process\", function () {",
" pm.response.to.have.status(200);",
" pm.response.to.not.be.error;",
" pm.response.to.not.have.jsonBody(\"error\");",
"});",
"",
"pm.test(\"[qbo] payment count is displayed correctly\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('count');",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
},
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/payments/count?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"payments",
"count"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
}
]
},
{
"name": "05 Delete",
"item": [
{
"name": "Delete Account",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 422\"] = responseCode.code === 422;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"Status code is 422\", function () {",
" pm.response.to.have.status(422);",
"});",
"",
"pm.test(\"Body has code and message\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('code');",
" pm.expect(jsonData).to.have.property('message');",
"});",
"",
"pm.test(\"Code is OPERATION_NOT_SUPPORTED\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData.code).to.eql(\"OPERATION_NOT_SUPPORTED\");",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/accounts/{{accountId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"accounts",
"{{accountId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Delete Customer",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 422\"] = responseCode.code === 422;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"Status code is 422\", function () {",
" pm.response.to.have.status(422);",
"});",
"",
"pm.test(\"Body has code and message\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('code');",
" pm.expect(jsonData).to.have.property('message');",
"});",
"",
"pm.test(\"Code is OPERATION_NOT_SUPPORTED\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData.code).to.eql(\"OPERATION_NOT_SUPPORTED\");",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/customers/{{customerId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"customers",
"{{customerId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Delete Vendor",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 422\"] = responseCode.code === 422;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"Status code is 422\", function () {",
" pm.response.to.have.status(422);",
"});",
"",
"pm.test(\"Body has code and message\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('code');",
" pm.expect(jsonData).to.have.property('message');",
"});",
"",
"pm.test(\"Code is OPERATION_NOT_SUPPORTED\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData.code).to.eql(\"OPERATION_NOT_SUPPORTED\");",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/vendors/{{vendorId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"vendors",
"{{vendorId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Delete Item",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 422\"] = responseCode.code === 422;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"Status code is 422\", function () {",
" pm.response.to.have.status(422);",
"});",
"",
"pm.test(\"Body has code and message\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('code');",
" pm.expect(jsonData).to.have.property('message');",
"});",
"",
"pm.test(\"Code is OPERATION_NOT_SUPPORTED\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData.code).to.eql(\"OPERATION_NOT_SUPPORTED\");",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/items/{{itemId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"items",
"{{itemId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Delete Purchase Order",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 422\"] = responseCode.code === 422;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"Status code is 422\", function () {",
" pm.response.to.have.status(422);",
"});",
"",
"pm.test(\"Body has code and message\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('code');",
" pm.expect(jsonData).to.have.property('message');",
"});",
"",
"pm.test(\"Code is OPERATION_NOT_SUPPORTED\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData.code).to.eql(\"OPERATION_NOT_SUPPORTED\");",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/purchase-orders/{{purchaseOrderId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"purchase-orders",
"{{purchaseOrderId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Delete Bill",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 422\"] = responseCode.code === 422;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"Status code is 422\", function () {",
" pm.response.to.have.status(422);",
"});",
"",
"pm.test(\"Body has code and message\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('code');",
" pm.expect(jsonData).to.have.property('message');",
"});",
"",
"pm.test(\"Code is OPERATION_NOT_SUPPORTED\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData.code).to.eql(\"OPERATION_NOT_SUPPORTED\");",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/bills/{{billId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"bills",
"{{billId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Delete Invoice",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 422\"] = responseCode.code === 422;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"Status code is 422\", function () {",
" pm.response.to.have.status(422);",
"});",
"",
"pm.test(\"Body has code and message\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('code');",
" pm.expect(jsonData).to.have.property('message');",
"});",
"",
"pm.test(\"Code is OPERATION_NOT_SUPPORTED\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData.code).to.eql(\"OPERATION_NOT_SUPPORTED\");",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/invoices/{{invoiceId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"invoices",
"{{invoiceId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
},
{
"name": "Delete Payment",
"event": [
{
"listen": "test",
"script": {
"exec": [
"tests[\"Status code is 422\"] = responseCode.code === 422;",
"",
"var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");",
"tests[\"Has Content-Type\"] = contentTypeHeaderExists;",
" ",
"if (contentTypeHeaderExists) {",
" tests[\"Content-Type is application/json\"] = ",
" responseHeaders[\"Content-Type\"].has(\"application/json\");",
"}",
"",
"pm.test(\"Status code is 422\", function () {",
" pm.response.to.have.status(422);",
"});",
"",
"pm.test(\"Body has code and message\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('code');",
" pm.expect(jsonData).to.have.property('message');",
"});",
"",
"pm.test(\"Code is OPERATION_NOT_SUPPORTED\", function () {",
" let jsonData = pm.response.json();",
" pm.expect(jsonData.code).to.eql(\"OPERATION_NOT_SUPPORTED\");",
"});"
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"accept": true
}
},
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{apiKey}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{URL}}/{{API_VERSION}}/one/accounting/payments/{{paymentId}}?credentialId={{qboCredentialId}}",
"host": ["{{URL}}"],
"path": [
"{{API_VERSION}}",
"one",
"accounting",
"payments",
"{{paymentId}}"
],
"query": [
{
"key": "credentialId",
"value": "{{qboCredentialId}}"
}
]
}
},
"response": []
}
]
},
{
"name": "06 Clean Up",
"item": [
{
"name": "Remove UAPI Data",
"request": {
"auth": {
"type": "noauth"
},
"method": "GET",
"header": [
{
"key": "X-Alloy-Auth",
"value": "1234567890abcdefghijklmnopqrstuvwxyz",
"type": "text"
}
],
"url": {
"raw": "{{api_base_url}}/api/testHelpers/finishUapi/QBO",
"host": ["{{api_base_url}}"],
"path": ["api", "testHelpers", "finishUapi", "QBO"]
}
},
"response": []
}
]
}
],
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{API_KEY}}",
"type": "string"
}
]
},
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [""]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [""]
}
}
]
}