{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/pos.test"
        }
    ],
    "info": {
        "name": "Gulf POS API Documentation",
        "_postman_id": "a757988e-97df-44b1-8b74-30accd9b9964",
        "description": "Gulf POS API Documentation",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Attendance management",
            "description": "",
            "item": [
                {
                    "name": "Get Attendance",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/get-attendance\/:user_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/get-attendance\/:user_id",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "1",
                                    "description": "id of the user"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"id\": 4,\n\"user_id\": 1,\n\"business_id\": 1,\n\"clock_in_time\": \"2020-09-12 13:13:00\",\n\"clock_out_time\": \"2020-09-12 13:15:00\",\n\"essentials_shift_id\": 3,\n\"ip_address\": null,\n\"clock_in_note\": \"test clock in from api\",\n\"clock_out_note\": \"test clock out from api\",\n\"created_at\": \"2020-09-12 13:14:39\",\n\"updated_at\": \"2020-09-12 13:15:39\"\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Clock In",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/clock-in",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/clock-in"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":1,\"clock_in_time\":\"2000-06-13 13:13:00\",\"clock_in_note\":\"architecto\",\"ip_address\":\"architecto\",\"latitude\":\"architecto\",\"longitude\":\"architecto\"}"
                        },
                        "description": "[User must have \"essentials.allow_users_for_attendance_from_api\" permission to Clock in]"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"success\":true,\n\"msg\":\"Clocked In successfully\",\n\"type\":\"clock_in\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Clock Out",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/clock-out",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/clock-out"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":1,\"clock_out_time\":\"2000-06-13 13:13:00\",\"clock_out_note\":\"architecto\",\"latitude\":\"architecto\",\"longitude\":\"architecto\"}"
                        },
                        "description": "[User must have \"essentials.allow_users_for_attendance_from_api\" permission to Clock out]"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"success\":true,\n\"msg\":\"Clocked Out successfully\",\n\"type\":\"clock_out\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List Holidays",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/holidays",
                            "query": [
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "id of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "start_date",
                                    "value": "2020-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2020-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/holidays?location_id=1&start_date=2020-06-25&end_date=2020-06-25"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 2,\n\"name\": \"Independence Day\",\n\"start_date\": \"2020-08-15\",\n\"end_date\": \"2020-09-15\",\n\"business_id\": 1,\n\"location_id\": null,\n\"note\": \"test holiday\",\n\"created_at\": \"2020-09-15 11:25:56\",\n\"updated_at\": \"2020-09-15 11:25:56\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Brand management",
            "description": "",
            "item": [
                {
                    "name": "List brands",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/brand",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/brand"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"Levis\",\n\"description\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:19:47\",\n\"updated_at\": \"2018-01-03 21:19:47\"\n},\n{\n\"id\": 2,\n\"business_id\": 1,\n\"name\": \"Espirit\",\n\"description\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:19:58\",\n\"updated_at\": \"2018-01-03 21:19:58\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified brand",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/brand\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/brand\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the brand."
                                },
                                {
                                    "id": "brand",
                                    "key": "brand",
                                    "value": "1",
                                    "description": "comma separated ids of the brands"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"Levis\",\n\"description\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:19:47\",\n\"updated_at\": \"2018-01-03 21:19:47\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Business Location management",
            "description": "",
            "item": [
                {
                    "name": "List business locations",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/business-location",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/business-location"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"location_id\": null,\n\"name\": \"Awesome Shop\",\n\"landmark\": \"Linking Street\",\n\"country\": \"USA\",\n\"state\": \"Arizona\",\n\"city\": \"Phoenix\",\n\"zip_code\": \"85001\",\n\"invoice_scheme_id\": 1,\n\"invoice_layout_id\": 1,\n\"selling_price_group_id\": null,\n\"print_receipt_on_invoice\": 1,\n\"receipt_printer_type\": \"browser\",\n\"printer_id\": null,\n\"mobile\": null,\n\"alternate_number\": null,\n\"email\": null,\n\"website\": null,\n\"featured_products\": [\n\"5\",\n\"71\"\n],\n\"is_active\": 1,\n\"payment_methods\": [\n{\n\"name\": \"cash\",\n\"label\": \"Cash\",\n\"account_id\": \"1\"\n},\n{\n\"name\": \"card\",\n\"label\": \"Card\",\n\"account_id\": null\n},\n{\n\"name\": \"cheque\",\n\"label\": \"Cheque\",\n\"account_id\": null\n},\n{\n\"name\": \"bank_transfer\",\n\"label\": \"Bank Transfer\",\n\"account_id\": null\n},\n{\n\"name\": \"other\",\n\"label\": \"Other\",\n\"account_id\": null\n},\n{\n\"name\": \"custom_pay_1\",\n\"label\": \"Custom Payment 1\",\n\"account_id\": null\n},\n{\n\"name\": \"custom_pay_2\",\n\"label\": \"Custom Payment 2\",\n\"account_id\": null\n},\n{\n\"name\": \"custom_pay_3\",\n\"label\": \"Custom Payment 3\",\n\"account_id\": null\n}\n],\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:20\",\n\"updated_at\": \"2020-06-05 00:56:54\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified business location",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/business-location\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/business-location\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the business location."
                                },
                                {
                                    "id": "location",
                                    "key": "location",
                                    "value": "1",
                                    "description": "comma separated ids of the business location"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"location_id\": null,\n\"name\": \"Awesome Shop\",\n\"landmark\": \"Linking Street\",\n\"country\": \"USA\",\n\"state\": \"Arizona\",\n\"city\": \"Phoenix\",\n\"zip_code\": \"85001\",\n\"invoice_scheme_id\": 1,\n\"invoice_layout_id\": 1,\n\"selling_price_group_id\": null,\n\"print_receipt_on_invoice\": 1,\n\"receipt_printer_type\": \"browser\",\n\"printer_id\": null,\n\"mobile\": null,\n\"alternate_number\": null,\n\"email\": null,\n\"website\": null,\n\"featured_products\": [\n\"5\",\n\"71\"\n],\n\"is_active\": 1,\n\"payment_methods\": [\n{\n\"name\": \"cash\",\n\"label\": \"Cash\",\n\"account_id\": \"1\"\n},\n{\n\"name\": \"card\",\n\"label\": \"Card\",\n\"account_id\": null\n},\n{\n\"name\": \"cheque\",\n\"label\": \"Cheque\",\n\"account_id\": null\n},\n{\n\"name\": \"bank_transfer\",\n\"label\": \"Bank Transfer\",\n\"account_id\": null\n},\n{\n\"name\": \"other\",\n\"label\": \"Other\",\n\"account_id\": null\n},\n{\n\"name\": \"custom_pay_1\",\n\"label\": \"Custom Payment 1\",\n\"account_id\": null\n},\n{\n\"name\": \"custom_pay_2\",\n\"label\": \"Custom Payment 2\",\n\"account_id\": null\n},\n{\n\"name\": \"custom_pay_3\",\n\"label\": \"Custom Payment 3\",\n\"account_id\": null\n}\n],\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:20\",\n\"updated_at\": \"2020-06-05 00:56:54\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "CRM",
            "description": "",
            "item": [
                {
                    "name": "List Follow ups",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/crm\/follow-ups",
                            "query": [
                                {
                                    "key": "start_date",
                                    "value": "2020-12-16",
                                    "description": "format: Y-m-d (Ex: 2020-12-16)",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2020-12-16",
                                    "description": "format: Y-m-d (Ex: 2020-12-16)",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "architecto",
                                    "description": "filter the result through status, get status from getFollowUpResources->statuses",
                                    "disabled": false
                                },
                                {
                                    "key": "follow_up_type",
                                    "value": "architecto",
                                    "description": "filter the result through follow_up_type, get follow_up_type from getFollowUpResources->follow_up_types",
                                    "disabled": false
                                },
                                {
                                    "key": "followup_category_id",
                                    "value": "architecto",
                                    "description": "filter the result through followup_category_id",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "start_datetime",
                                    "description": "Column name to sort the result, Column: start_datetime",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "desc",
                                    "description": "Direction to sort the result, Required if using 'order_by', direction: desc, asc",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/crm\/follow-ups?start_date=2020-12-16&end_date=2020-12-16&status=architecto&follow_up_type=architecto&followup_category_id=architecto&order_by=start_datetime&direction=desc&per_page=10"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"contact_id\": 50,\n\"title\": \"Test Follow up\",\n\"status\": \"scheduled\",\n\"start_datetime\": \"2020-12-16 15:15:00\",\n\"end_datetime\": \"2020-12-16 15:15:00\",\n\"description\": \"<p>tst<\/p>\",\n\"schedule_type\": \"call\",\n\"allow_notification\": 0,\n\"notify_via\": {\n\"sms\": 0,\n\"mail\": 1\n},\n\"notify_before\": null,\n\"notify_type\": \"minute\",\n\"created_by\": 1,\n\"followup_additional_info\": null,\n\"created_at\": \"2020-12-16 03:15:23\",\n\"updated_at\": \"2020-12-16 15:46:34\",\n\"customer\": {\n\"id\": 50,\n\"business_id\": 1,\n\"type\": \"lead\",\n\"supplier_business_name\": null,\n\"name\": \" Lead 4  \",\n\"prefix\": null,\n\"first_name\": \"Lead 4\",\n\"middle_name\": null,\n\"last_name\": null,\n\"email\": null,\n\"contact_id\": \"CO0011\",\n\"contact_status\": \"active\",\n\"tax_number\": null,\n\"city\": null,\n\"state\": null,\n\"country\": null,\n\"address_line_1\": null,\n\"address_line_2\": null,\n\"zip_code\": null,\n\"dob\": null,\n\"mobile\": \"234567\",\n\"landline\": null,\n\"alternate_number\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"credit_limit\": null,\n\"created_by\": 1,\n\"balance\": \"0.0000\",\n\"total_rp\": 0,\n\"total_rp_used\": 0,\n\"total_rp_expired\": 0,\n\"is_default\": 0,\n\"shipping_address\": null,\n\"position\": null,\n\"customer_group_id\": null,\n\"crm_source\": \"55\",\n\"crm_life_stage\": \"62\",\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"deleted_at\": null,\n\"created_at\": \"2020-12-15 23:14:48\",\n\"updated_at\": \"2021-01-07 15:32:52\",\n\"remember_token\": null,\n\"password\": null\n}\n},\n{\n\"id\": 2,\n\"business_id\": 1,\n\"contact_id\": 50,\n\"title\": \"Test Follow up 1\",\n\"status\": \"completed\",\n\"start_datetime\": \"2020-12-16 15:46:00\",\n\"end_datetime\": \"2020-12-16 15:46:00\",\n\"description\": \"<p>Test Follow up<\/p>\",\n\"schedule_type\": \"call\",\n\"allow_notification\": 0,\n\"notify_via\": {\n\"sms\": 0,\n\"mail\": 1\n},\n\"notify_before\": null,\n\"notify_type\": \"minute\",\n\"created_by\": 1,\n\"followup_additional_info\": null,\n\"created_at\": \"2020-12-16 15:46:57\",\n\"updated_at\": \"2020-12-17 10:24:11\",\n\"customer\": {\n\"id\": 50,\n\"business_id\": 1,\n\"type\": \"lead\",\n\"supplier_business_name\": null,\n\"name\": \" Lead 4  \",\n\"prefix\": null,\n\"first_name\": \"Lead 4\",\n\"middle_name\": null,\n\"last_name\": null,\n\"email\": null,\n\"contact_id\": \"CO0011\",\n\"contact_status\": \"active\",\n\"tax_number\": null,\n\"city\": null,\n\"state\": null,\n\"country\": null,\n\"address_line_1\": null,\n\"address_line_2\": null,\n\"zip_code\": null,\n\"dob\": null,\n\"mobile\": \"234567\",\n\"landline\": null,\n\"alternate_number\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"credit_limit\": null,\n\"created_by\": 1,\n\"balance\": \"0.0000\",\n\"total_rp\": 0,\n\"total_rp_used\": 0,\n\"total_rp_expired\": 0,\n\"is_default\": 0,\n\"shipping_address\": null,\n\"position\": null,\n\"customer_group_id\": null,\n\"crm_source\": \"55\",\n\"crm_life_stage\": \"62\",\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"deleted_at\": null,\n\"created_at\": \"2020-12-15 23:14:48\",\n\"updated_at\": \"2021-01-07 15:32:52\",\n\"remember_token\": null,\n\"password\": null\n}\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/crm\/follow-ups?page=1\",\n\"last\": \"http:\/\/local.pos.com\/connector\/api\/crm\/follow-ups?page=21\",\n\"prev\": null,\n\"next\": \"http:\/\/local.pos.com\/connector\/api\/crm\/follow-ups?page=2\"\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"last_page\": 21,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/crm\/follow-ups\",\n\"per_page\": \"2\",\n\"to\": 2,\n\"total\": 42\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add follow up",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/crm\/follow-ups",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/crm\/follow-ups"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"Meeting with client\",\"contact_id\":2,\"description\":\"Eius et animi quos velit et.\",\"schedule_type\":\"architecto\",\"user_id\":[2,3,5],\"notify_before\":5,\"notify_type\":\"minute\",\"status\":\"open\",\"notify_via\":null,\"start_datetime\":\"2021-01-06 13:05:00\",\"end_datetime\":\"2021-01-06 13:05:00\",\"followup_additional_info\":null,\"allow_notification\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"title\": \"test\",\n\"contact_id\": \"1\",\n\"description\": null,\n\"schedule_type\": \"call\",\n\"followup_category_id\": \"1\",\n\"notify_before\": null,\n\"status\": null,\n\"start_datetime\": \"2021-01-06 15:27:00\",\n\"end_datetime\": \"2021-01-06 15:27:00\",\n\"allow_notification\": 0,\n\"notify_via\": {\n\"sms\": 1,\n\"mail\": 1\n},\n\"notify_type\": \"hour\",\n\"business_id\": 1,\n\"created_by\": 1,\n\"updated_at\": \"2021-01-06 17:04:54\",\n\"created_at\": \"2021-01-06 17:04:54\",\n\"id\": 20\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified followup",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/crm\/follow-ups\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/crm\/follow-ups\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the follow up."
                                },
                                {
                                    "id": "follow_up",
                                    "key": "follow_up",
                                    "value": "1%2C2",
                                    "description": "comma separated ids of the follow_ups"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 20,\n\"business_id\": 1,\n\"contact_id\": 1,\n\"title\": \"Meeting with client\",\n\"status\": null,\n\"start_datetime\": \"2021-01-06 15:27:00\",\n\"end_datetime\": \"2021-01-06 15:27:00\",\n\"description\": null,\n\"schedule_type\": \"call\",\n\"allow_notification\": 0,\n\"notify_via\": {\n\"sms\": 1,\n\"mail\": 1\n},\n\"notify_before\": null,\n\"notify_type\": \"hour\",\n\"created_by\": 1,\n\"created_at\": \"2021-01-06 17:04:54\",\n\"updated_at\": \"2021-01-06 17:04:54\",\n\"customer\": {\n\"id\": 1,\n\"business_id\": 1,\n\"type\": \"customer\",\n\"supplier_business_name\": null,\n\"name\": \"Walk-In Customer\",\n\"prefix\": null,\n\"first_name\": \"Walk-In Customer\",\n\"middle_name\": null,\n\"last_name\": null,\n\"email\": null,\n\"contact_id\": \"CO0005\",\n\"contact_status\": \"active\",\n\"tax_number\": null,\n\"city\": \"Phoenix\",\n\"state\": \"Arizona\",\n\"country\": \"USA\",\n\"address_line_1\": \"Linking Street\",\n\"address_line_2\": null,\n\"zip_code\": null,\n\"dob\": null,\n\"mobile\": \"(378) 400-1234\",\n\"landline\": null,\n\"alternate_number\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"credit_limit\": null,\n\"created_by\": 1,\n\"balance\": \"0.0000\",\n\"total_rp\": 0,\n\"total_rp_used\": 0,\n\"total_rp_expired\": 0,\n\"is_default\": 1,\n\"shipping_address\": null,\n\"position\": null,\n\"customer_group_id\": null,\n\"crm_source\": null,\n\"crm_life_stage\": null,\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 20:45:20\",\n\"updated_at\": \"2018-06-11 22:22:05\",\n\"remember_token\": null,\n\"password\": null\n},\n\"users\": [\n{\n\"id\": 2,\n\"user_type\": \"user\",\n\"surname\": \"Mr\",\n\"first_name\": \"Demo\",\n\"last_name\": \"Cashier\",\n\"username\": \"cashier\",\n\"email\": \"cashier@example.com\",\n\"language\": \"en\",\n\"contact_no\": null,\n\"address\": null,\n\"business_id\": 1,\n\"max_sales_discount_percent\": null,\n\"allow_login\": 1,\n\"essentials_department_id\": null,\n\"essentials_designation_id\": null,\n\"status\": \"active\",\n\"crm_contact_id\": null,\n\"is_cmmsn_agnt\": 0,\n\"cmmsn_percent\": \"0.00\",\n\"selected_contacts\": 0,\n\"dob\": null,\n\"gender\": null,\n\"marital_status\": null,\n\"blood_group\": null,\n\"contact_number\": null,\n\"fb_link\": null,\n\"twitter_link\": null,\n\"social_media_1\": null,\n\"social_media_2\": null,\n\"permanent_address\": null,\n\"current_address\": null,\n\"guardian_name\": null,\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null,\n\"bank_details\": null,\n\"id_proof_name\": null,\n\"id_proof_number\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:20:58\",\n\"updated_at\": \"2018-01-04 02:20:58\",\n\"pivot\": {\n\"schedule_id\": 20,\n\"user_id\": 2\n}\n}\n]\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update follow up",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/crm\/follow-ups\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/crm\/follow-ups\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the follow up."
                                },
                                {
                                    "id": "follow_up",
                                    "key": "follow_up",
                                    "value": "20",
                                    "description": "id of the follow up to be updated"
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"Meeting with client\",\"contact_id\":2,\"description\":\"Eius et animi quos velit et.\",\"schedule_type\":\"architecto\",\"user_id\":[2,3,5],\"notify_before\":5,\"notify_type\":\"minute\",\"status\":\"open\",\"notify_via\":null,\"followup_additional_info\":null,\"start_datetime\":\"2021-01-06 13:05:00\",\"end_datetime\":\"2021-01-06 13:05:00\",\"allow_notification\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"id\": 20,\n\"business_id\": 1,\n\"contact_id\": \"1\",\n\"title\": \"Meeting with client\",\n\"status\": null,\n\"start_datetime\": \"2021-01-06 15:27:00\",\n\"end_datetime\": \"2021-01-06 15:27:00\",\n\"description\": null,\n\"schedule_type\": \"call\",\n\"allow_notification\": 0,\n\"notify_via\": {\n\"sms\": 1,\n\"mail\": 0\n},\n\"notify_before\": null,\n\"notify_type\": \"hour\",\n\"created_by\": 1,\n\"created_at\": \"2021-01-06 17:04:54\",\n\"updated_at\": \"2021-01-06 18:22:21\"\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get follow up resources",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/crm\/follow-up-resources",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/crm\/follow-up-resources"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"statuses\": {\n\"scheduled\": \"Scheduled\",\n\"open\": \"Open\",\n\"canceled\": \"Cancelled\",\n\"completed\": \"Completed\"\n},\n\"follow_up_types\": {\n\"call\": \"Call\",\n\"sms\": \"Sms\",\n\"meeting\": \"Meeting\",\n\"email\": \"Email\"\n},\n\"notify_type\": {\n\"minute\": \"Minute\",\n\"hour\": \"Hour\",\n\"day\": \"Day\"\n},\n\"notify_via\": {\n\"sms\": \"Sms\",\n\"mail\": \"Email\"\n}\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List lead",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/crm\/leads",
                            "query": [
                                {
                                    "key": "assigned_to",
                                    "value": "1%2C2%2C3",
                                    "description": "comma separated ids of users to whom lead is assigned (Ex: 1,2,3)",
                                    "disabled": false
                                },
                                {
                                    "key": "name",
                                    "value": "architecto",
                                    "description": "Search term for lead name",
                                    "disabled": false
                                },
                                {
                                    "key": "biz_name",
                                    "value": "architecto",
                                    "description": "Search term for lead's business name",
                                    "disabled": false
                                },
                                {
                                    "key": "mobile_num",
                                    "value": "16",
                                    "description": "Search term for lead's mobile number",
                                    "disabled": false
                                },
                                {
                                    "key": "contact_id",
                                    "value": "architecto",
                                    "description": "Search term for lead's contact_id. Ex(CO0005)",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "architecto",
                                    "description": "Column name to sort the result, Column: name, supplier_business_name",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "desc",
                                    "description": "Direction to sort the result, Required if using 'order_by', direction: desc, asc",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/crm\/leads?assigned_to=1%2C2%2C3&name=architecto&biz_name=architecto&mobile_num=16&contact_id=architecto&order_by=architecto&direction=desc&per_page=10"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"contact_id\": \"CO0010\",\n\"name\": \"mr Lead 3 kr kr 2\",\n\"supplier_business_name\": \"POS\",\n\"email\": null,\n\"mobile\": \"9437638555\",\n\"tax_number\": null,\n\"created_at\": \"2020-12-15 23:14:30\",\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"alternate_number\": null,\n\"landline\": null,\n\"dob\": null,\n\"contact_status\": \"active\",\n\"type\": \"lead\",\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"id\": 49,\n\"business_id\": 1,\n\"crm_source\": \"55\",\n\"crm_life_stage\": \"60\",\n\"address_line_1\": null,\n\"address_line_2\": null,\n\"city\": null,\n\"state\": null,\n\"country\": null,\n\"zip_code\": null,\n\"last_follow_up_id\": 18,\n\"upcoming_follow_up_id\": null,\n\"last_follow_up\": \"2021-01-07 10:26:00\",\n\"upcoming_follow_up\": null,\n\"last_follow_up_additional_info\": \"{\\\"test\\\":\\\"test done\\\",\\\"call_duration\\\":\\\"1.5 Hour\\\",\\\"rand\\\":1}\",\n\"upcoming_follow_up_additional_info\": null,\n\"source\": {\n\"id\": 55,\n\"name\": \"Facebook\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 0,\n\"created_by\": 1,\n\"category_type\": \"source\",\n\"description\": \"Facebook\",\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2020-12-15 23:07:53\",\n\"updated_at\": \"2020-12-15 23:07:53\"\n},\n\"life_stage\": {\n\"id\": 60,\n\"name\": \"Open Deal\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 0,\n\"created_by\": 1,\n\"category_type\": \"life_stage\",\n\"description\": \"Open Deal\",\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2020-12-15 23:11:05\",\n\"updated_at\": \"2020-12-15 23:11:05\"\n},\n\"lead_users\": [\n{\n\"id\": 10,\n\"user_type\": \"user\",\n\"surname\": \"Mr.\",\n\"first_name\": \"WooCommerce\",\n\"last_name\": \"User\",\n\"username\": \"woocommerce_user\",\n\"email\": \"woo@example.com\",\n\"language\": \"en\",\n\"contact_no\": null,\n\"address\": null,\n\"business_id\": 1,\n\"max_sales_discount_percent\": null,\n\"allow_login\": 1,\n\"essentials_department_id\": null,\n\"essentials_designation_id\": null,\n\"status\": \"active\",\n\"crm_contact_id\": null,\n\"is_cmmsn_agnt\": 0,\n\"cmmsn_percent\": \"0.00\",\n\"selected_contacts\": 0,\n\"dob\": null,\n\"gender\": null,\n\"marital_status\": null,\n\"blood_group\": null,\n\"contact_number\": null,\n\"fb_link\": null,\n\"twitter_link\": null,\n\"social_media_1\": null,\n\"social_media_2\": null,\n\"permanent_address\": null,\n\"current_address\": null,\n\"guardian_name\": null,\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null,\n\"bank_details\": null,\n\"id_proof_name\": null,\n\"id_proof_number\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-08-02 04:05:55\",\n\"updated_at\": \"2018-08-02 04:05:55\",\n\"pivot\": {\n\"contact_id\": 49,\n\"user_id\": 10\n}\n}\n]\n},\n{\n\"contact_id\": \"CO0011\",\n\"name\": \" Lead 4  \",\n\"supplier_business_name\": null,\n\"email\": null,\n\"mobile\": \"234567\",\n\"tax_number\": null,\n\"created_at\": \"2020-12-15 23:14:48\",\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"alternate_number\": null,\n\"landline\": null,\n\"dob\": null,\n\"contact_status\": \"active\",\n\"type\": \"lead\",\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"id\": 50,\n\"business_id\": 1,\n\"crm_source\": \"55\",\n\"crm_life_stage\": \"62\",\n\"address_line_1\": null,\n\"address_line_2\": null,\n\"city\": null,\n\"state\": null,\n\"country\": null,\n\"zip_code\": null,\n\"last_follow_up_id\": 32,\n\"upcoming_follow_up_id\": null,\n\"last_follow_up\": \"2021-01-08 16:06:00\",\n\"upcoming_follow_up\": null,\n\"last_follow_up_additional_info\": \"{\\\"call_durartion\\\":\\\"5 hour\\\"}\",\n\"upcoming_follow_up_additional_info\": null,\n\"source\": {\n\"id\": 55,\n\"name\": \"Facebook\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 0,\n\"created_by\": 1,\n\"category_type\": \"source\",\n\"description\": \"Facebook\",\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2020-12-15 23:07:53\",\n\"updated_at\": \"2020-12-15 23:07:53\"\n},\n\"life_stage\": {\n\"id\": 62,\n\"name\": \"New\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 0,\n\"created_by\": 1,\n\"category_type\": \"life_stage\",\n\"description\": \"New\",\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2020-12-15 23:11:26\",\n\"updated_at\": \"2020-12-15 23:11:26\"\n},\n\"lead_users\": [\n{\n\"id\": 11,\n\"user_type\": \"user\",\n\"surname\": \"Mr\",\n\"first_name\": \"Admin Essential\",\n\"last_name\": null,\n\"username\": \"admin-essentials\",\n\"email\": \"admin_essentials@example.com\",\n\"language\": \"en\",\n\"contact_no\": null,\n\"address\": null,\n\"business_id\": 1,\n\"max_sales_discount_percent\": null,\n\"allow_login\": 1,\n\"essentials_department_id\": null,\n\"essentials_designation_id\": null,\n\"status\": \"active\",\n\"crm_contact_id\": null,\n\"is_cmmsn_agnt\": 0,\n\"cmmsn_percent\": \"0.00\",\n\"selected_contacts\": 0,\n\"dob\": null,\n\"gender\": null,\n\"marital_status\": null,\n\"blood_group\": null,\n\"contact_number\": null,\n\"fb_link\": null,\n\"twitter_link\": null,\n\"social_media_1\": null,\n\"social_media_2\": null,\n\"permanent_address\": null,\n\"current_address\": null,\n\"guardian_name\": null,\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null,\n\"bank_details\": null,\n\"id_proof_name\": null,\n\"id_proof_number\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:19\",\n\"updated_at\": \"2018-01-04 02:15:19\",\n\"pivot\": {\n\"contact_id\": 50,\n\"user_id\": 11\n}\n}\n]\n},\n{\n\"contact_id\": \"CO0015\",\n\"name\": \" Lead kr  \",\n\"supplier_business_name\": null,\n\"email\": null,\n\"mobile\": \"9437638555\",\n\"tax_number\": null,\n\"created_at\": \"2021-01-07 18:31:08\",\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"alternate_number\": null,\n\"landline\": null,\n\"dob\": \"2021-01-07\",\n\"contact_status\": \"active\",\n\"type\": \"lead\",\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"id\": 82,\n\"business_id\": 1,\n\"crm_source\": null,\n\"crm_life_stage\": null,\n\"address_line_1\": null,\n\"address_line_2\": null,\n\"city\": null,\n\"state\": null,\n\"country\": null,\n\"zip_code\": null,\n\"last_follow_up_id\": 36,\n\"upcoming_follow_up_id\": null,\n\"last_follow_up\": \"2021-01-07 18:31:08\",\n\"upcoming_follow_up\": null,\n\"last_follow_up_additional_info\": \"{\\\"call duration\\\":\\\"1 hour\\\",\\\"call descr\\\":\\\"talked to him and all okay\\\"}\",\n\"upcoming_follow_up_additional_info\": null,\n\"source\": null,\n\"life_stage\": null,\n\"lead_users\": [\n{\n\"id\": 11,\n\"user_type\": \"user\",\n\"surname\": \"Mr\",\n\"first_name\": \"Admin Essential\",\n\"last_name\": null,\n\"username\": \"admin-essentials\",\n\"email\": \"admin_essentials@example.com\",\n\"language\": \"en\",\n\"contact_no\": null,\n\"address\": null,\n\"business_id\": 1,\n\"max_sales_discount_percent\": null,\n\"allow_login\": 1,\n\"essentials_department_id\": null,\n\"essentials_designation_id\": null,\n\"status\": \"active\",\n\"crm_contact_id\": null,\n\"is_cmmsn_agnt\": 0,\n\"cmmsn_percent\": \"0.00\",\n\"selected_contacts\": 0,\n\"dob\": null,\n\"gender\": null,\n\"marital_status\": null,\n\"blood_group\": null,\n\"contact_number\": null,\n\"fb_link\": null,\n\"twitter_link\": null,\n\"social_media_1\": null,\n\"social_media_2\": null,\n\"permanent_address\": null,\n\"current_address\": null,\n\"guardian_name\": null,\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null,\n\"bank_details\": null,\n\"id_proof_name\": null,\n\"id_proof_number\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:19\",\n\"updated_at\": \"2018-01-04 02:15:19\",\n\"pivot\": {\n\"contact_id\": 82,\n\"user_id\": 11\n}\n}\n]\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/crm\/leads?page=1\",\n\"last\": \"http:\/\/local.pos.com\/connector\/api\/crm\/leads?page=1\",\n\"prev\": null,\n\"next\": null\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"last_page\": 1,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/crm\/leads\",\n\"per_page\": \"10\",\n\"to\": 3,\n\"total\": 3\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Save Call Logs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/crm\/call-logs",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/crm\/call-logs"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Cash register management",
            "description": "",
            "item": [
                {
                    "name": "List Cash Registers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/cash-register",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "open",
                                    "description": "status of the register (open, close)",
                                    "disabled": false
                                },
                                {
                                    "key": "user_id",
                                    "value": "10",
                                    "description": "id of the user",
                                    "disabled": false
                                },
                                {
                                    "key": "start_date",
                                    "value": "2018-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2018-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "id of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/cash-register?status=open&user_id=10&start_date=2018-06-25&end_date=2018-06-25&location_id=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"location_id\": 1,\n\"user_id\": 9,\n\"status\": \"open\",\n\"closed_at\": null,\n\"closing_amount\": \"0.0000\",\n\"total_card_slips\": 0,\n\"total_cheques\": 0,\n\"closing_note\": null,\n\"created_at\": \"2020-07-02 12:03:00\",\n\"updated_at\": \"2020-07-02 12:03:19\",\n\"cash_register_transactions\": [\n{\n\"id\": 1,\n\"cash_register_id\": 1,\n\"amount\": \"0.0000\",\n\"pay_method\": \"cash\",\n\"type\": \"credit\",\n\"transaction_type\": \"initial\",\n\"transaction_id\": null,\n\"created_at\": \"2018-07-13 07:39:34\",\n\"updated_at\": \"2018-07-13 07:39:34\"\n},\n{\n\"id\": 2,\n\"cash_register_id\": 1,\n\"amount\": \"42.5000\",\n\"pay_method\": \"cash\",\n\"type\": \"credit\",\n\"transaction_type\": \"sell\",\n\"transaction_id\": 41,\n\"created_at\": \"2018-07-13 07:44:40\",\n\"updated_at\": \"2018-07-13 07:44:40\"\n}\n]\n},\n{\n\"id\": 2,\n\"business_id\": 1,\n\"location_id\": 1,\n\"user_id\": 1,\n\"status\": \"\",\n\"closed_at\": \"2020-07-02 12:03:00\",\n\"closing_amount\": \"0.0000\",\n\"total_card_slips\": 0,\n\"total_cheques\": 0,\n\"closing_note\": null,\n\"created_at\": \"2020-07-06 15:38:23\",\n\"updated_at\": \"2020-07-06 15:38:23\",\n\"cash_register_transactions\": [\n{\n\"id\": 19,\n\"cash_register_id\": 2,\n\"amount\": \"10.0000\",\n\"pay_method\": \"cash\",\n\"type\": \"credit\",\n\"transaction_type\": \"initial\",\n\"transaction_id\": null,\n\"created_at\": \"2020-07-06 15:38:23\",\n\"updated_at\": \"2020-07-06 15:38:23\"\n}\n]\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/cash-register?page=1\",\n\"last\": null,\n\"prev\": null,\n\"next\": null\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/cash-register\",\n\"per_page\": 10,\n\"to\": 2\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Cash Register",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/cash-register",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/cash-register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"location_id\":1,\"initial_amount\":4326.41688,\"created_at\":\"2020-5-7 15:20:22\",\"closed_at\":\"2020-5-7 15:20:22\",\"status\":\"close\",\"closing_amount\":4326.41688,\"total_card_slips\":16,\"total_cheques\":16,\"closing_note\":\"architecto\",\"transaction_ids\":\"1,2,3\\n\\nresponse {\\n\\\"data\\\": {\\n\\\"status\\\": \\\"closed\\\",\\n\\\"location_id\\\": \\\"1\\\",\\n\\\"closed_at\\\": \\\"2020-07-02 12:03:00\\\",\\n\\\"business_id\\\": 1,\\n\\\"user_id\\\": 1,\\n\\\"updated_at\\\": \\\"2020-07-06 16:28:42\\\",\\n\\\"created_at\\\": \\\"2020-07-06 16:28:42\\\",\\n\\\"id\\\": 3\\n}\\n}\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get the specified Register",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/cash-register\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/cash-register\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the cash register."
                                },
                                {
                                    "id": "cash_register",
                                    "key": "cash_register",
                                    "value": "59",
                                    "description": "comma separated ids of the cash registers"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"location_id\": 1,\n\"user_id\": 9,\n\"status\": \"open\",\n\"closed_at\": null,\n\"closing_amount\": \"0.0000\",\n\"total_card_slips\": 0,\n\"total_cheques\": 0,\n\"closing_note\": null,\n\"created_at\": \"2020-07-02 12:03:00\",\n\"updated_at\": \"2020-07-02 12:03:19\",\n\"cash_register_transactions\": [\n{\n\"id\": 1,\n\"cash_register_id\": 1,\n\"amount\": \"0.0000\",\n\"pay_method\": \"cash\",\n\"type\": \"credit\",\n\"transaction_type\": \"initial\",\n\"transaction_id\": null,\n\"created_at\": \"2018-07-13 07:39:34\",\n\"updated_at\": \"2018-07-13 07:39:34\"\n},\n{\n\"id\": 2,\n\"cash_register_id\": 1,\n\"amount\": \"42.5000\",\n\"pay_method\": \"cash\",\n\"type\": \"credit\",\n\"transaction_type\": \"sell\",\n\"transaction_id\": 41,\n\"created_at\": \"2018-07-13 07:44:40\",\n\"updated_at\": \"2018-07-13 07:44:40\"\n}\n]\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Contact management",
            "description": "",
            "item": [
                {
                    "name": "List contact",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/contactapi",
                            "query": [
                                {
                                    "key": "type",
                                    "value": "architecto",
                                    "description": "Type of contact (supplier, customer)",
                                    "disabled": false
                                },
                                {
                                    "key": "name",
                                    "value": "architecto",
                                    "description": "Search term for contact name",
                                    "disabled": false
                                },
                                {
                                    "key": "biz_name",
                                    "value": "architecto",
                                    "description": "Search term for contact's business name",
                                    "disabled": false
                                },
                                {
                                    "key": "mobile_num",
                                    "value": "16",
                                    "description": "Search term for contact's mobile number",
                                    "disabled": false
                                },
                                {
                                    "key": "contact_id",
                                    "value": "architecto",
                                    "description": "Search term for contact's contact_id. Ex(CO0005)",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "architecto",
                                    "description": "Column name to sort the result, Column: name, supplier_business_name",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "architecto",
                                    "description": "Direction to sort the result, Direction: desc, asc",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/contactapi?type=architecto&name=architecto&biz_name=architecto&mobile_num=16&contact_id=architecto&order_by=architecto&direction=architecto&per_page=10"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 2,\n\"business_id\": 1,\n\"type\": \"supplier\",\n\"supplier_business_name\": \"Alpha Clothings\",\n\"name\": \"Michael\",\n\"prefix\": null,\n\"first_name\": \"Michael\",\n\"middle_name\": null,\n\"last_name\": null,\n\"email\": null,\n\"contact_id\": \"CO0001\",\n\"contact_status\": \"active\",\n\"tax_number\": \"4590091535\",\n\"city\": \"Phoenix\",\n\"state\": \"Arizona\",\n\"country\": \"USA\",\n\"address_line_1\": \"Linking Street\",\n\"address_line_2\": null,\n\"zip_code\": null,\n\"dob\": null,\n\"mobile\": \"(378) 400-1234\",\n\"landline\": null,\n\"alternate_number\": null,\n\"pay_term_number\": 15,\n\"pay_term_type\": \"days\",\n\"credit_limit\": null,\n\"created_by\": 1,\n\"balance\": \"0.0000\",\n\"total_rp\": 0,\n\"total_rp_used\": 0,\n\"total_rp_expired\": 0,\n\"is_default\": 0,\n\"shipping_address\": null,\n\"position\": null,\n\"customer_group_id\": null,\n\"crm_source\": null,\n\"crm_life_stage\": null,\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 20:59:38\",\n\"updated_at\": \"2018-06-11 22:21:03\",\n\"remember_token\": null,\n\"password\": null\n},\n{\n\"id\": 3,\n\"business_id\": 1,\n\"type\": \"supplier\",\n\"supplier_business_name\": \"Manhattan Clothing Ltd.\",\n\"name\": \"Philip\",\n\"prefix\": null,\n\"first_name\": \"Philip\",\n\"middle_name\": null,\n\"last_name\": null,\n\"email\": null,\n\"contact_id\": \"CO0003\",\n\"contact_status\": \"active\",\n\"tax_number\": \"54869310093\",\n\"city\": \"Phoenix\",\n\"state\": \"Arizona\",\n\"country\": \"USA\",\n\"address_line_1\": \"Linking Street\",\n\"address_line_2\": null,\n\"zip_code\": null,\n\"dob\": null,\n\"mobile\": \"(378) 400-1234\",\n\"landline\": null,\n\"alternate_number\": null,\n\"pay_term_number\": 15,\n\"pay_term_type\": \"days\",\n\"credit_limit\": null,\n\"created_by\": 1,\n\"balance\": \"0.0000\",\n\"total_rp\": 0,\n\"total_rp_used\": 0,\n\"total_rp_expired\": 0,\n\"is_default\": 0,\n\"shipping_address\": null,\n\"position\": null,\n\"customer_group_id\": null,\n\"crm_source\": null,\n\"crm_life_stage\": null,\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:00:55\",\n\"updated_at\": \"2018-06-11 22:21:36\",\n\"remember_token\": null,\n\"password\": null\n},\n{\n\"id\": 5,\n\"business_id\": 1,\n\"type\": \"supplier\",\n\"supplier_business_name\": \"Digital Ocean\",\n\"name\": \"Mike McCubbin\",\n\"prefix\": null,\n\"first_name\": \"Mike McCubbin\",\n\"middle_name\": null,\n\"last_name\": null,\n\"email\": null,\n\"contact_id\": \"CN0004\",\n\"contact_status\": \"active\",\n\"tax_number\": \"52965489001\",\n\"city\": \"Phoenix\",\n\"state\": \"Arizona\",\n\"country\": \"USA\",\n\"address_line_1\": \"Linking Street\",\n\"address_line_2\": null,\n\"zip_code\": null,\n\"dob\": null,\n\"mobile\": \"(378) 400-1234\",\n\"landline\": null,\n\"alternate_number\": null,\n\"pay_term_number\": 30,\n\"pay_term_type\": \"days\",\n\"credit_limit\": null,\n\"created_by\": 1,\n\"balance\": \"0.0000\",\n\"total_rp\": 0,\n\"total_rp_used\": 0,\n\"total_rp_expired\": 0,\n\"is_default\": 0,\n\"shipping_address\": null,\n\"position\": null,\n\"customer_group_id\": null,\n\"crm_source\": null,\n\"crm_life_stage\": null,\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-06 06:53:22\",\n\"updated_at\": \"2018-06-11 22:21:47\",\n\"remember_token\": null,\n\"password\": null\n},\n{\n\"id\": 6,\n\"business_id\": 1,\n\"type\": \"supplier\",\n\"supplier_business_name\": \"Univer Suppliers\",\n\"name\": \"Jackson Hill\",\n\"prefix\": null,\n\"first_name\": \"Jackson Hill\",\n\"middle_name\": null,\n\"last_name\": null,\n\"email\": null,\n\"contact_id\": \"CO0002\",\n\"contact_status\": \"active\",\n\"tax_number\": \"5459000655\",\n\"city\": \"Phoenix\",\n\"state\": \"Arizona\",\n\"country\": \"USA\",\n\"address_line_1\": \"Linking Street\",\n\"address_line_2\": null,\n\"zip_code\": null,\n\"dob\": null,\n\"mobile\": \"(378) 400-1234\",\n\"landline\": null,\n\"alternate_number\": null,\n\"pay_term_number\": 45,\n\"pay_term_type\": \"days\",\n\"credit_limit\": null,\n\"created_by\": 1,\n\"balance\": \"0.0000\",\n\"total_rp\": 0,\n\"total_rp_used\": 0,\n\"total_rp_expired\": 0,\n\"is_default\": 0,\n\"shipping_address\": null,\n\"position\": null,\n\"customer_group_id\": null,\n\"crm_source\": null,\n\"crm_life_stage\": null,\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-06 06:55:09\",\n\"updated_at\": \"2018-06-11 22:21:18\",\n\"remember_token\": null,\n\"password\": null\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/contactapi?page=1\",\n\"last\": \"http:\/\/local.pos.com\/connector\/api\/contactapi?page=1\",\n\"prev\": null,\n\"next\": null\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"last_page\": 1,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/contactapi\",\n\"per_page\": \"10\",\n\"to\": 4,\n\"total\": 4\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create contact",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/contactapi",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/contactapi"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"customer\",\"supplier_business_name\":\"architecto\",\"prefix\":\"architecto\",\"first_name\":\"architecto\",\"middle_name\":\"architecto\",\"last_name\":\"architecto\",\"tax_number\":\"8787fefef\",\"pay_term_number\":3,\"pay_term_type\":\"months\",\"mobile\":\"4578691009\",\"landline\":\"5487-8454-4145\",\"alternate_number\":\"841847541222\",\"address_line_1\":\"architecto\",\"address_line_2\":\"architecto\",\"city\":\"architecto\",\"state\":\"architecto\",\"country\":\"architecto\",\"zip_code\":\"architecto\",\"customer_group_id\":\"architecto\",\"contact_id\":\"architecto\",\"dob\":\"2000-06-13\",\"custom_field1\":\"architecto\",\"custom_field2\":\"architecto\",\"custom_field3\":\"architecto\",\"custom_field4\":\"architecto\",\"email\":\"gbailey@example.net\",\"shipping_address\":\"architecto\",\"position\":\"architecto\",\"opening_balance\":0,\"source_id\":16,\"life_stage_id\":16,\"assigned_to\":[\"architecto\"]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"type\": \"customer\",\n\"name\": \"test customer\",\n\"tax_number\": \"75879BHF\",\n\"mobile\": \"7878825008\",\n\"business_id\": 1,\n\"created_by\": 9,\n\"credit_limit\": null,\n\"contact_id\": \"CO0007\",\n\"updated_at\": \"2020-06-04 21:59:21\",\n\"created_at\": \"2020-06-04 21:59:21\",\n\"id\": 17\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified contact",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/contactapi\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/contactapi\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the contactapi."
                                },
                                {
                                    "id": "contact",
                                    "key": "contact",
                                    "value": "2",
                                    "description": "comma separated ids of contacts"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"type\": \"customer\",\n\"supplier_business_name\": null,\n\"name\": \" Walk-In Customer  \",\n\"prefix\": null,\n\"first_name\": \"Walk-In Customer\",\n\"middle_name\": null,\n\"last_name\": null,\n\"email\": \"walkin@test.com\",\n\"contact_id\": \"CO0005\",\n\"contact_status\": \"active\",\n\"tax_number\": null,\n\"city\": \"Phoenix\",\n\"state\": \"Arizona\",\n\"country\": \"USA\",\n\"address_line_1\": \"Linking Street\",\n\"address_line_2\": null,\n\"zip_code\": \"85001\",\n\"dob\": null,\n\"mobile\": \"(378) 400-1234\",\n\"landline\": null,\n\"alternate_number\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"credit_limit\": \"0.0000\",\n\"created_by\": 1,\n\"balance\": \"0.0000\",\n\"total_rp\": 0,\n\"total_rp_used\": 0,\n\"total_rp_expired\": 0,\n\"is_default\": 1,\n\"shipping_address\": null,\n\"position\": null,\n\"customer_group_id\": null,\n\"crm_source\": null,\n\"crm_life_stage\": null,\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 20:45:20\",\n\"updated_at\": \"2020-08-10 10:26:45\",\n\"remember_token\": null,\n\"password\": null,\n\"customer_group\": null,\n\"opening_balance\": \"0.0000\",\n\"opening_balance_paid\": \"0.0000\",\n\"total_purchase\": \"0.0000\",\n\"purchase_paid\": \"0.0000\",\n\"total_purchase_return\": \"0.0000\",\n\"purchase_return_paid\": \"0.0000\",\n\"total_invoice\": \"2050.0000\",\n\"invoice_received\": \"1987.5000\",\n\"total_sell_return\": \"0.0000\",\n\"sell_return_paid\": \"0.0000\",\n\"purchase_due\": 0,\n\"sell_due\": 62.5,\n\"purchase_return_due\": 0,\n\"sell_return_due\": 0\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update contact",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/contactapi\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/contactapi\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the contactapi."
                                },
                                {
                                    "id": "contact",
                                    "key": "contact",
                                    "value": "17",
                                    "description": "id of the contact to be updated"
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"customer\",\"supplier_business_name\":\"architecto\",\"prefix\":\"architecto\",\"first_name\":\"architecto\",\"middle_name\":\"architecto\",\"last_name\":\"architecto\",\"tax_number\":\"488744dwd\",\"pay_term_number\":3,\"pay_term_type\":\"months\",\"mobile\":\"8795461009\",\"landline\":\"65484-848-848\",\"alternate_number\":\"9898795220\",\"address_line_1\":\"architecto\",\"address_line_2\":\"architecto\",\"city\":\"architecto\",\"state\":\"architecto\",\"country\":\"architecto\",\"zip_code\":\"architecto\",\"customer_group_id\":\"architecto\",\"contact_id\":\"architecto\",\"dob\":\"2000-06-13\",\"custom_field1\":\"architecto\",\"custom_field2\":\"architecto\",\"custom_field3\":\"architecto\",\"custom_field4\":\"architecto\",\"email\":\"gbailey@example.net\",\"shipping_address\":\"architecto\",\"position\":\"architecto\",\"opening_balance\":10.3,\"source_id\":16,\"life_stage_id\":16,\"assigned_to\":[\"architecto\"]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"id\": 21,\n\"business_id\": 1,\n\"type\": \"customer\",\n\"supplier_business_name\": null,\n\"name\": \"created from api\",\n\"prefix\": null,\n\"first_name\": \"created from api\",\n\"middle_name\": null,\n\"last_name\": null,\n\"email\": null,\n\"contact_id\": \"CO0009\",\n\"contact_status\": \"active\",\n\"tax_number\": null,\n\"city\": null,\n\"state\": null,\n\"country\": null,\n\"address_line_1\": \"test address\",\n\"address_line_2\": null,\n\"zip_code\": \"54878787\",\n\"dob\": \"2000-06-13\",\n\"mobile\": \"8754154872154\",\n\"landline\": null,\n\"alternate_number\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"credit_limit\": null,\n\"created_by\": 1,\n\"balance\": \"0.0000\",\n\"total_rp\": 0,\n\"total_rp_used\": 0,\n\"total_rp_expired\": 0,\n\"is_default\": 0,\n\"shipping_address\": null,\n\"position\": null,\n\"customer_group_id\": null,\n\"crm_source\": null,\n\"crm_life_stage\": null,\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"deleted_at\": null,\n\"created_at\": \"2020-08-10 10:41:42\",\n\"updated_at\": \"2020-08-10 10:41:42\",\n\"remember_token\": null,\n\"password\": null\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Contact payment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/contactapi-payment",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/contactapi-payment"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"contact_id\":17,\"amount\":453.13,\"method\":\"cash\",\"paid_on\":\"2020-07-22 15:48:29\",\"account_id\":16,\"card_number\":\"architecto\",\"card_holder_name\":\"architecto\",\"card_transaction_number\":\"architecto\",\"card_type\":\"architecto\",\"card_month\":\"architecto\",\"card_year\":\"architecto\",\"card_security\":\"architecto\",\"transaction_no_1\":\"architecto\",\"transaction_no_2\":\"architecto\",\"transaction_no_3\":\"architecto\",\"cheque_number\":\"architecto\",\"bank_account_number\":\"architecto\",\"note\":\"architecto\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"amount\": \"20\",\n\"method\": \"cash\",\n\"paid_on\": \"2020-07-22 15:48:29\",\n\"created_by\": 1,\n\"payment_for\": \"19\",\n\"business_id\": 1,\n\"is_advance\": 1,\n\"payment_ref_no\": \"SP2020\/0127\",\n\"document\": null,\n\"updated_at\": \"2020-07-22 15:48:29\",\n\"created_at\": \"2020-07-22 15:48:29\",\n\"id\": 215\n}\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Authorize a client to access the user's account.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/token",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/token"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Authorize a client to access the user's account.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/authorize",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/authorize"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6IjdReXdEVExnWXZqNldDcTBrTjJqRlE9PSIsInZhbHVlIjoiZ3lvVmo5OUJGTTJBMVJEQmw2eFNPNEFiSmpHNUVsbnBDb2gvM3kxcUhXZVU0K0VLU3M2N1Z5b2Ivc3p5WHZCTnRESEFMNVR0ZkQ0WUx2UVlFeDMwc0N6bUV3ZWovUUJteTVjbWdVVlh4WmdKMTRLMkYyczQwUno5NlloU1dVRy8iLCJtYWMiOiI4MjJlZTYzYWUwNjI0MDYwNzM0ZTYzNWJiYWEwYjdjNDA0MWZmMTVlNzIxMGFjMzA4NTdkZWRhMTk0NGZlNTAyIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6Ik1UNFNlWDlxdmgyUVFMUk5WeDBTcVE9PSIsInZhbHVlIjoiZ3Z3SW5HSWZkcnhQdXJJM3JqSUhzM0tsSVNnTDN1SUVGUEFqWmZJRUczYStweWtxRlA5TzRQMEJwZThQQ05iNDVLelZPMTNHUjQzVjRMeEZzWHhzODBCYjc0ZEhjNnZzQS9Fd2xVenNDM3hqMWQzS0FQQTJoUjZXaVBqTjFkNk0iLCJtYWMiOiIyZGE3MjI5YzBjMjNhZWFiMWM5ZmNmMTE0MjAzOGY3YWVjMDc2ODYyOTJiNDQxZjc0MmFmYzI0NWExNzJhMDI5IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 400,
                            "body": "{\"error\":\"unsupported_grant_type\",\"error_description\":\"The authorization grant type is not supported by the authorization server.\",\"hint\":\"Check that all required parameters have been provided\",\"message\":\"The authorization grant type is not supported by the authorization server.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a fresh transient token cookie for the authenticated user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/token\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/token\/refresh"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Approve the authorization request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/authorize",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/authorize"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Deny the authorization request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/authorize",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/authorize"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get all of the authorized tokens for the authenticated user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/tokens"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6InVRZjRiUTV2enhnZlNVL3VydnpPL3c9PSIsInZhbHVlIjoiOS9wWlNQaUJZZ2VVa3AydDBWeHEwRmlVVDVCM21qZXlZdk5JZFIzUmRROTYwSUIzSWxTdzgvcVhXaGJpOHZJUHg5QVFVcjlQQ0V3eFU2cFRBdzhraXF6NVI5NFVzNE9kdjQyd2V1SUFlSTRHWnpFWEx2T3lMSHFkbFJmeVlHd0oiLCJtYWMiOiIyOTI1NTQxMWE0YzBjMTFkY2E0YTI1ODk2MDMzNmUwM2E5MmI3NmQ5YzgxMmY3MDU1ZGM5YjA4MDNjZDJmNWJlIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IlFBUFhsTE9NR3MxdEo2TkNSQVNrdUE9PSIsInZhbHVlIjoibk00eWMwMnAwTWFZRDR0bllHdGU5Ym5kM1pqRDlMNXpkQVJWSlBCMm53VUVPcHF1TENmSVFGMHJFU21Gci9QMnZUSEVicmN1QmRpbnU5WVQ4cUNyZ3h2b1RibTdwaWJ0b0RGSlBmTWtudGNIamtreVkzRER5eFFjSW05cHNtUEkiLCJtYWMiOiIxMGY1NDJiNzYxYWUwOTNjZWU4OWQ2N2Y4YmI3MTIzNTUwMGZkYjc5MGIxMzI1NWY0OWE0ZTljYTdkZWY5M2JmIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete the given token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/tokens\/:token_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/tokens\/:token_id",
                            "variable": [
                                {
                                    "id": "token_id",
                                    "key": "token_id",
                                    "value": "architecto",
                                    "description": "The ID of the token."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get all of the clients for the authenticated user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/clients",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/clients"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6ImVtZG0wdXliU2Y3emhvamZUYXhuRnc9PSIsInZhbHVlIjoiSkVLMWx4YzlMQm5MRU15N1lKS2IxMnh4SkxBenFCV1REcnBibGd3eVJuWHlxTXpXN1ZuWVBZeGVZOW02dDdORkZ1NjU2bG4xVXFpb2ZJbDdzVHIzeld4UkRKcmoyQkFWNnZ2SjVsRFhwN3VMTjgyRkNLNkY2NHZKbkthaE9GSkkiLCJtYWMiOiIwODA0MGRhMTE5ZDQ3ZTg0YzhhMzg3MDU1NmU5ZDY5YWRhOGZhY2E4OWRmOTU3YWE1OWI2YjNiYTAxNWE2YzI2IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6ImkwMDBKcVM0Mm5rZmlCTm0vb1JOeXc9PSIsInZhbHVlIjoiS2kxUC8rbVNvditNeFZtTk1DcDNHNzJLVUptdFBXVnYvaFZiMUk3ckNxb0tNSnN3dmFncUZNWnlzeUg5S3RKTzg4R3VmeTQ1MEY5L3ZDZlBoMndKVEtZS1EvTjRaSlozOXpzYklmLzRLS0g5WFJHVUhWRko2ZnJueUhXZkEyWUoiLCJtYWMiOiIxOTVhYmQ2MmNiMTQ5ZmM1ZDU1ZTI4YTUxZWU2NjgwODgxYjBlNzNmYmZhMzk1YTk5ZjIzY2E0YTNiZmFkODBkIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a new client.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/clients",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/clients"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update the given client.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/clients\/:client_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/clients\/:client_id",
                            "variable": [
                                {
                                    "id": "client_id",
                                    "key": "client_id",
                                    "value": "architecto",
                                    "description": "The ID of the client."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete the given client.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/clients\/:client_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/clients\/:client_id",
                            "variable": [
                                {
                                    "id": "client_id",
                                    "key": "client_id",
                                    "value": "architecto",
                                    "description": "The ID of the client."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get all of the available scopes for the application.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/scopes",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/scopes"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6ImlIMmxMZ3VUUjdTeWpLTHBJODFGZVE9PSIsInZhbHVlIjoiNVBlYnpsSEQxdEgvNDZDYW9OMGFMVTJGU09FU25xL3JIUnlLN3N1T3NucnhQVU9yY3l0K1o0b2NrZG9XLyt3TENyUzdkRHVtUEcwVWdBNTBnMmtvNGhsMm56ajZZYWs5MmE3Q1Z0ZHdMK1c5RXJPNDJsWXB4U21KZEFGQmRGcU0iLCJtYWMiOiIxZTA5OTMwZjhlNzdjYzFmNTM5YTUwYmNmZDA0M2Y1N2I3YTYzYWRiZWY2NjA5Mjc5NTJiODAyYTUwOGVmMTI1IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IjVtdk1hQ3hiNll6blFXTGxJOTYzaGc9PSIsInZhbHVlIjoidHZMS2pOY3EzZytCSy9LT2hBcmNndjNieUV1QjdTY2gzaWE4SkRTY1RBbm5uTDk1cktTek1ndkU5b3FQc0g4c0lyNkFvcnQ1T1pvL3g5czkzbFhsd3pISG9jS0Nwci9KUXhZVGJOeDdod0pEaU5GOXRVWnhGaGxFMnNicG9Ja3MiLCJtYWMiOiJlZjNiMGZlMDFmY2Y4YWVkZmUwZjVhZTkxNmE4OWVjYzMzMjFkZTI3NjZhMGEwZTRkMjZiOGVhMDM4MTk3Y2QwIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get all of the personal access tokens for the authenticated user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/personal-access-tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/personal-access-tokens"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6IkFaSWZFNHBwZlNuc3g4dWtFWUlBc2c9PSIsInZhbHVlIjoiUlowb1NQNit5ckI2SzRNOXFqblRqT2p5UVZPQWFxaTRsZDhyaEVCdFhQdlpKbWFHWmd2VkxCalFTZCtmWXFvM2VHRk9XWDNIYncyWUlsVmp5RlRZR2doZDZGRXVoMk15d1R3cFY5UjV4UmVFeVF4dkNETDArcHNYSXV2R0pEL1giLCJtYWMiOiI1YjE4OTgwODIxNDA2NDQyNjI3YWI1NzAwMTMxYmNiZDlhMzliMWJlMjA2MmViMDkxMDk0ODZiZDUyN2IyZjQzIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IjZ5RHdKS3pSZ1JiSytYbVZMaHlac0E9PSIsInZhbHVlIjoiaWNJbjRIMEJIVE9pc1B2czdaelhQTnJXbklpQzdPaUlwdWNyd0lBTXo1aGVKelNNN2pXVmVpYkY1eWNKWDgvL3c3RTRCQ0RzRVRnbG1mSDB6Ny9qaVZpYXdleXhUZEplSmRseFZGL2lyZlpKc1NZM3NOYmlSVWtncGVRaVp4U0kiLCJtYWMiOiJiOTdiMWI4ZGQ1NDQ1ZGFhYTg2MGVlNTJmZTBiMzk1OWQzM2U4YjAwZDNjYmNlN2VkNWVkOTJjZWU2NzRlNTZkIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new personal access token for the user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/personal-access-tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/personal-access-tokens"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete the given token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "oauth\/personal-access-tokens\/:token_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/oauth\/personal-access-tokens\/:token_id",
                            "variable": [
                                {
                                    "id": "token_id",
                                    "key": "token_id",
                                    "value": "architecto",
                                    "description": "The ID of the token."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List payment accounts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/payment-accounts",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/payment-accounts"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"Test Account\",\n\"account_number\": \"8746888847455\",\n\"account_type_id\": 0,\n\"note\": null,\n\"created_by\": 9,\n\"is_closed\": 0,\n\"deleted_at\": null,\n\"created_at\": \"2020-06-04 21:34:21\",\n\"updated_at\": \"2020-06-04 21:34:21\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List payment methods",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/payment-methods",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/payment-methods"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"cash\": \"Cash\",\n\"card\": \"Card\",\n\"cheque\": \"Cheque\",\n\"bank_transfer\": \"Bank Transfer\",\n\"other\": \"Other\",\n\"custom_pay_1\": \"Custom Payment 1\",\n\"custom_pay_2\": \"Custom Payment 2\",\n\"custom_pay_3\": \"Custom Payment 3\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get business details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/business-details",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/business-details"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"id\": 1,\n\"name\": \"Awesome Shop\",\n\"currency_id\": 2,\n\"start_date\": \"2018-01-01\",\n\"tax_number_1\": \"3412569900\",\n\"tax_label_1\": \"GSTIN\",\n\"tax_number_2\": null,\n\"tax_label_2\": null,\n\"default_sales_tax\": null,\n\"default_profit_percent\": 25,\n\"owner_id\": 1,\n\"time_zone\": \"America\/Phoenix\",\n\"fy_start_month\": 1,\n\"accounting_method\": \"fifo\",\n\"default_sales_discount\": \"10.00\",\n\"sell_price_tax\": \"includes\",\n\"logo\": null,\n\"sku_prefix\": \"AS\",\n\"enable_product_expiry\": 0,\n\"expiry_type\": \"add_expiry\",\n\"on_product_expiry\": \"keep_selling\",\n\"stop_selling_before\": 0,\n\"enable_tooltip\": 1,\n\"purchase_in_diff_currency\": 0,\n\"purchase_currency_id\": null,\n\"p_exchange_rate\": \"1.000\",\n\"transaction_edit_days\": 30,\n\"stock_expiry_alert_days\": 30,\n\"keyboard_shortcuts\": {\n\"pos\": {\n\"express_checkout\": \"shift+e\",\n\"pay_n_ckeckout\": \"shift+p\",\n\"draft\": \"shift+d\",\n\"cancel\": \"shift+c\",\n\"recent_product_quantity\": \"f2\",\n\"weighing_scale\": null,\n\"edit_discount\": \"shift+i\",\n\"edit_order_tax\": \"shift+t\",\n\"add_payment_row\": \"shift+r\",\n\"finalize_payment\": \"shift+f\",\n\"add_new_product\": \"f4\"\n}\n},\n\"pos_settings\": {\n\"amount_rounding_method\": null,\n\"disable_pay_checkout\": 0,\n\"disable_draft\": 0,\n\"disable_express_checkout\": 0,\n\"hide_product_suggestion\": 0,\n\"hide_recent_trans\": 0,\n\"disable_discount\": 0,\n\"disable_order_tax\": 0,\n\"is_pos_subtotal_editable\": 0\n},\n\"weighing_scale_setting\": {\n\"label_prefix\": null,\n\"product_sku_length\": \"4\",\n\"qty_length\": \"3\",\n\"qty_length_decimal\": \"2\"\n},\n\"manufacturing_settings\": null,\n\"essentials_settings\": null,\n\"ecom_settings\": null,\n\"woocommerce_wh_oc_secret\": null,\n\"woocommerce_wh_ou_secret\": null,\n\"woocommerce_wh_od_secret\": null,\n\"woocommerce_wh_or_secret\": null,\n\"enable_brand\": 1,\n\"enable_category\": 1,\n\"enable_sub_category\": 1,\n\"enable_price_tax\": 1,\n\"enable_purchase_status\": 1,\n\"enable_lot_number\": 0,\n\"default_unit\": null,\n\"enable_sub_units\": 0,\n\"enable_racks\": 0,\n\"enable_row\": 0,\n\"enable_position\": 0,\n\"enable_editing_product_from_purchase\": 1,\n\"sales_cmsn_agnt\": null,\n\"item_addition_method\": 1,\n\"enable_inline_tax\": 1,\n\"currency_symbol_placement\": \"before\",\n\"enabled_modules\": [\n\"purchases\",\n\"add_sale\",\n\"pos_sale\",\n\"stock_transfers\",\n\"stock_adjustment\",\n\"expenses\",\n\"account\",\n\"tables\",\n\"modifiers\",\n\"service_staff\",\n\"booking\",\n\"kitchen\",\n\"subscription\",\n\"types_of_service\"\n],\n\"date_format\": \"m\/d\/Y\",\n\"time_format\": \"24\",\n\"ref_no_prefixes\": {\n\"purchase\": \"PO\",\n\"purchase_return\": null,\n\"stock_transfer\": \"ST\",\n\"stock_adjustment\": \"SA\",\n\"sell_return\": \"CN\",\n\"expense\": \"EP\",\n\"contacts\": \"CO\",\n\"purchase_payment\": \"PP\",\n\"sell_payment\": \"SP\",\n\"expense_payment\": null,\n\"business_location\": \"BL\",\n\"username\": null,\n\"subscription\": null\n},\n\"theme_color\": null,\n\"created_by\": null,\n\"enable_rp\": 0,\n\"rp_name\": null,\n\"amount_for_unit_rp\": \"1.0000\",\n\"min_order_total_for_rp\": \"1.0000\",\n\"max_rp_per_order\": null,\n\"redeem_amount_per_unit_rp\": \"1.0000\",\n\"min_order_total_for_redeem\": \"1.0000\",\n\"min_redeem_point\": null,\n\"max_redeem_point\": null,\n\"rp_expiry_period\": null,\n\"rp_expiry_type\": \"year\",\n\"repair_settings\": null,\n\"email_settings\": {\n\"mail_driver\": \"smtp\",\n\"mail_host\": null,\n\"mail_port\": null,\n\"mail_username\": null,\n\"mail_password\": null,\n\"mail_encryption\": null,\n\"mail_from_address\": null,\n\"mail_from_name\": null\n},\n\"sms_settings\": {\n\"url\": null,\n\"send_to_param_name\": \"to\",\n\"msg_param_name\": \"text\",\n\"request_method\": \"post\",\n\"param_1\": null,\n\"param_val_1\": null,\n\"param_2\": null,\n\"param_val_2\": null,\n\"param_3\": null,\n\"param_val_3\": null,\n\"param_4\": null,\n\"param_val_4\": null,\n\"param_5\": null,\n\"param_val_5\": null,\n\"param_6\": null,\n\"param_val_6\": null,\n\"param_7\": null,\n\"param_val_7\": null,\n\"param_8\": null,\n\"param_val_8\": null,\n\"param_9\": null,\n\"param_val_9\": null,\n\"param_10\": null,\n\"param_val_10\": null\n},\n\"custom_labels\": {\n\"payments\": {\n\"custom_pay_1\": null,\n\"custom_pay_2\": null,\n\"custom_pay_3\": null\n},\n\"contact\": {\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null\n},\n\"product\": {\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null\n},\n\"location\": {\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null\n},\n\"user\": {\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null\n},\n\"purchase\": {\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null\n},\n\"sell\": {\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null\n},\n\"types_of_service\": {\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null\n}\n},\n\"common_settings\": {\n\"default_datatable_page_entries\": \"25\"\n},\n\"is_active\": 1,\n\"created_at\": \"2018-01-04 02:15:19\",\n\"updated_at\": \"2020-06-04 22:33:01\",\n\"locations\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"location_id\": null,\n\"name\": \"Awesome Shop\",\n\"landmark\": \"Linking Street\",\n\"country\": \"USA\",\n\"state\": \"Arizona\",\n\"city\": \"Phoenix\",\n\"zip_code\": \"85001\",\n\"invoice_scheme_id\": 1,\n\"invoice_layout_id\": 1,\n\"selling_price_group_id\": null,\n\"print_receipt_on_invoice\": 1,\n\"receipt_printer_type\": \"browser\",\n\"printer_id\": null,\n\"mobile\": null,\n\"alternate_number\": null,\n\"email\": null,\n\"website\": null,\n\"featured_products\": [\n\"5\",\n\"71\"\n],\n\"is_active\": 1,\n\"default_payment_accounts\": {\n\"cash\": {\n\"is_enabled\": \"1\",\n\"account\": null\n},\n\"card\": {\n\"is_enabled\": \"1\",\n\"account\": null\n},\n\"cheque\": {\n\"is_enabled\": \"1\",\n\"account\": null\n},\n\"bank_transfer\": {\n\"is_enabled\": \"1\",\n\"account\": null\n},\n\"other\": {\n\"is_enabled\": \"1\",\n\"account\": null\n},\n\"custom_pay_1\": {\n\"is_enabled\": \"1\",\n\"account\": null\n},\n\"custom_pay_2\": {\n\"is_enabled\": \"1\",\n\"account\": null\n},\n\"custom_pay_3\": {\n\"is_enabled\": \"1\",\n\"account\": null\n}\n},\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:20\",\n\"updated_at\": \"2020-06-05 00:56:54\"\n}\n],\n\"currency\": {\n\"id\": 2,\n\"country\": \"America\",\n\"currency\": \"Dollars\",\n\"code\": \"USD\",\n\"symbol\": \"$\",\n\"thousand_separator\": \",\",\n\"decimal_separator\": \".\",\n\"created_at\": null,\n\"updated_at\": null\n},\n\"printers\": [],\n\"currency_precision\": 2,\n\"quantity_precision\": 2\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get profit and loss report",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/profit-loss-report",
                            "query": [
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "optional id of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "start_date",
                                    "value": "2018-06-25",
                                    "description": "optional format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2018-06-25",
                                    "description": "optional format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "user_id",
                                    "value": "1",
                                    "description": "optional id of the user",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/profit-loss-report?location_id=1&start_date=2018-06-25&end_date=2018-06-25&user_id=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"total_purchase_shipping_charge\": 0,\n\"total_sell_shipping_charge\": 0,\n\"total_transfer_shipping_charges\": \"0.0000\",\n\"opening_stock\": 0,\n\"closing_stock\": \"386859.00000000\",\n\"total_purchase\": 386936,\n\"total_purchase_discount\": \"0.000000000000\",\n\"total_purchase_return\": \"0.0000\",\n\"total_sell\": 9764.5,\n\"total_sell_discount\": \"11.550000000000\",\n\"total_sell_return\": \"0.0000\",\n\"total_sell_round_off\": \"0.0000\",\n\"total_expense\": \"0.0000\",\n\"total_adjustment\": \"0.0000\",\n\"total_recovered\": \"0.0000\",\n\"total_reward_amount\": \"0.0000\",\n\"left_side_module_data\": [\n{\n\"value\": \"0.0000\",\n\"label\": \"Total Payroll\",\n\"add_to_net_profit\": true\n},\n{\n\"value\": 0,\n\"label\": \"Total Production Cost\",\n\"add_to_net_profit\": true\n}\n],\n\"right_side_module_data\": [],\n\"net_profit\": 9675.95,\n\"gross_profit\": -11.55,\n\"total_sell_by_subtype\": []\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get product current stock",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/product-stock-report",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/product-stock-report"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"total_sold\": null,\n\"total_transfered\": null,\n\"total_adjusted\": null,\n\"stock_price\": null,\n\"stock\": null,\n\"sku\": \"AS0001\",\n\"product\": \"Men's Reverse Fleece Crew\",\n\"type\": \"single\",\n\"product_id\": 1,\n\"unit\": \"Pc(s)\",\n\"enable_stock\": 1,\n\"unit_price\": \"143.0000\",\n\"product_variation\": \"DUMMY\",\n\"variation_name\": \"DUMMY\",\n\"location_name\": null,\n\"location_id\": null,\n\"variation_id\": 1\n},\n{\n\"total_sold\": \"50.0000\",\n\"total_transfered\": null,\n\"total_adjusted\": null,\n\"stock_price\": \"3850.00000000\",\n\"stock\": \"50.0000\",\n\"sku\": \"AS0002-1\",\n\"product\": \"Levis Men's Slimmy Fit Jeans\",\n\"type\": \"variable\",\n\"product_id\": 2,\n\"unit\": \"Pc(s)\",\n\"enable_stock\": 1,\n\"unit_price\": \"77.0000\",\n\"product_variation\": \"Waist Size\",\n\"variation_name\": \"28\",\n\"location_name\": \"Awesome Shop\",\n\"location_id\": 1,\n\"variation_id\": 2\n},\n{\n\"total_sold\": \"60.0000\",\n\"total_transfered\": null,\n\"total_adjusted\": null,\n\"stock_price\": \"6930.00000000\",\n\"stock\": \"90.0000\",\n\"sku\": \"AS0002-2\",\n\"product\": \"Levis Men's Slimmy Fit Jeans\",\n\"type\": \"variable\",\n\"product_id\": 2,\n\"unit\": \"Pc(s)\",\n\"enable_stock\": 1,\n\"unit_price\": \"77.0000\",\n\"product_variation\": \"Waist Size\",\n\"variation_name\": \"30\",\n\"location_name\": \"Awesome Shop\",\n\"location_id\": 1,\n\"variation_id\": 3\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/product-stock-report?page=1\",\n\"last\": \"http:\/\/local.pos.com\/connector\/api\/product-stock-report?page=22\",\n\"prev\": null,\n\"next\": \"http:\/\/local.pos.com\/connector\/api\/product-stock-report?page=2\"\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"last_page\": 22,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/product-stock-report\",\n\"per_page\": 3,\n\"to\": 3,\n\"total\": 66\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get notifications",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/notifications",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/notifications"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"msg\": \"Payroll for August\/2020 added by Mr. Super Admin. Reference No. 2020\/0002\",\n\"icon_class\": \"fas fa-money-bill-alt bg-green\",\n\"link\": \"http:\/\/local.pos.com\/hrm\/payroll\",\n\"read_at\": null,\n\"created_at\": \"3 hours ago\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get location details from coordinates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/get-location",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/get-location"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"lat\":\"41.40338\",\"lon\":\"2.17403\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"address\": \"Radhanath Mullick Ln, Tiretta Bazaar, Bow Bazaar, Kolkata, West Bengal, 700 073, India\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Install",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/install",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/install"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6IlVFbDJIWDdNYzRpaWlMSFdSaGZ4cnc9PSIsInZhbHVlIjoiVlFRdnc5ck0zOEtueTRiRXovTlNmMGNaUHd2V1ZTWDhHUTNhbnFxRFZUQ2l3ekd5eTVPR3p3dFNmbkJ3V3o3Q3RWYy9NMXREWFlQTEZETkxvTEkvTGZ0aGIxOTJEK3RrakFiSHhjdXA0dUI1NHhzeVJUTkU5bk03bmF5UC9hR2YiLCJtYWMiOiJlOTRlZDBhMGIyYTFmM2YyNGQzMWM4YzkwZGFkZjFlNjZkZGM4NmQzNTA0ZmY4ODk5ZTBjMGZlZWMxM2E2YzJmIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IjFqWU9sbTNkR1A0MjFwTWRZay8wUFE9PSIsInZhbHVlIjoiQ25IMVByQ1pyNVBnTFpUNHI4ZjFMcjQrTjRxRjU0SnFOeVljaUlpZTYrUGVzY1UyM3MyT0RCSlpaelFsUlFwQlhGSkpsazNGOS9ZemxacXV4eFlxeWQxeHp0K1FRbEVNWTk3RVczd1BXNGNmbitBZVI0dXMvdFhqVncyY2FCczIiLCJtYWMiOiJjOTA1ZmFhZWEwNmVjZDY5ZTlmMjliZjI4ZGE1YzRiYjdhYjdlNzAxYTc1MWZkYjAzZGE3NTBlMTEyZWZlN2EzIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Installing Connector Module",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/install",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/install"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Uninstall",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/install\/uninstall",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/install\/uninstall"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6IklDVDl1bzF4ZTVVbXBrK1g2U3hOYlE9PSIsInZhbHVlIjoiaVVEc1U1YWRJMksrMVVOUzc3b0NyTmlJK2gwcWQvcEJuajZkWG1kSzRCZHFvU1ROMkpQZFRqQXI3WCtpMlZyL0t5dWNod1JiNFcrRnhaSEs1MUdQSlkwNkowNEtSeDJSVWQzVnNacmkrWVc1c1JWR3MzaDVva08yZmNPeVVVeUQiLCJtYWMiOiI0NDdmNTZmMWY5MTUyMTA2MTExMDQ5OTQyZDk4ZTRiNDQ5MDQ0M2U4NDMwNThmZGJjMDM1MDMzN2JmNTBjNDZmIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IkdIcTNmS29Ba0ZPRU1YMFhZT0RwOUE9PSIsInZhbHVlIjoiYVorZnFQeHRPaHBqcURUckMvMGVlOVcvck44ZEoxTGFiQWFzRDZ1R3FMRjdRajhHTVhwUkhXekdRVS9Jc3hjR05PNVh0eEZSSW0wd2FRNDBUc3J3aisyL0VEd0pZdlNBdUcrY1Zwck1TczdQYWFxRW1yclh5dHFPSTU1K0s3VTAiLCJtYWMiOiJkYzliZTVlYjVlNTdkNzQzNjgzZmE4ZWNjODE2YjZiZTU2MWFiN2ViYjYwNmYzZTRkNjVhYWZmMDNkMzdmNWZiIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "update module",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/install\/update",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/install\/update"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6Iml5RDhBZHJ2a3N3RHRicWJFcXpyT3c9PSIsInZhbHVlIjoiRU1yTHFwNElWM3BZTXJkbXhYT0gwcDVVa016dmU4ak1hVDB1cHNUZFNhWVlEV2FCRlpBam9JdHhpUElCSTVrS2UwSkx5YndubWg4Yng5N2Z2RHcybFA2TDYxSTUyUGM2clVzOVVjbHJSeGt0elVUVlFWYTRkelN5S1I4RWlnaHYiLCJtYWMiOiI2MTc4MTU2ZDVlNmYzN2VlYTQ5NjQ0ZDY3NWRhNjFjY2Q4M2Q2Mjk5MGFkZTEwMjQxOWY0MGFlNzZjNTg0NmEzIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IlJzTGN2eUd0STlCQUxiZzNDUUVTZlE9PSIsInZhbHVlIjoiM0FpWGgzVmVoaVMybE1vc1prdnZXQUZ5bkJ5SFN3ZkNDcTNJV3NSQXBXTFRpaDRjbzBaaHZ6VDJvTm41ZGZOWTNjN2IyTVMzTVc1NnUzNHhQNGpMRUFadGRVQ3NndmgxMERSTnhWNEtqWDZvYTlLNGhpVkRsem1CbjlhVjlVYVciLCJtYWMiOiJkYTE4ZDkxMTNhMWE3OTQ5OWM4MDFjNjY5MmU1NTU0NzZlMzJjYzVlNWUxM2UxNmIwZjljNGRhMGM5ZTVjNDg0IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of the resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6IkU4eGRFNkJGSUhkZ3E5anRtWnloM3c9PSIsInZhbHVlIjoiM1RCc2Zydmo0ejZsMms0MUFKMG10TW9DekZ5cmlVVGNmdTdxLzlWU2hJd1M1dzhxbkJGYTgrcEIzZnZPYnBCVzZ5NW5sb1pWMEhmYW9CSzhDRDhSeXZ3amVRY0NRT1gwbzUwSWtSWCtvZjQ5WWxnVFNLTGcxT1ZIS3RIQWJDL3QiLCJtYWMiOiJkZmM1ZmEwMmEwN2I4OTEwZDkxYWI2NmU0MTdmNGY2Mzc3ZDJmNTcxOTY2NTU0YWY2NmMyNTk2YzQwMjBhZWZkIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IllGSW9UUTZpV1RtMDBldmNwTjkxd0E9PSIsInZhbHVlIjoiK3BhdU1Yd3N6cGcvUFcyL095SktrRDhvRmVNY29vbTlMT3lOYlhvdXp4TmV3ZmtDblVJcy90S2NHVGo2N2prZndiUS9iclFwMzY4SE1xMUFkQ0N3UGFTTVJtQ2dRejE1YWl6MUdHdUhydXd4MXQ4ZXhuRFhSdm92RHhDckoxQzkiLCJtYWMiOiIxZmVmMTVlZjNiZDhmMTUwMmVhM2EzODExMWI1ZWJjZTY2OWMxN2MwNmY4NDUxYjAwYzJjNTRiN2MzYTUwZmRkIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of the resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/client",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/client"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6Im1SMHJGTzVVdWRRdlp1NTRrWFR4ZGc9PSIsInZhbHVlIjoiZEdYQmEzdG5GM0tHSThqUUJjSXppQm9qYVFJd0JVeTZVZkxqSjZwZXh5aHFQTDI1ZXV4aTd1ZnhnczdVSVpKR2FaeVIrU3UyS0NMaTRIRmt3VmVFbktsSkc5V0xwckUvZExydXppYUQxUnFJSm1xYkVvU1FmK1FjZ252T3QvaGwiLCJtYWMiOiI1NDJhNDg4MTQ2Njk1OGJhNmRkZmRmMTJkMzk5MzU0MjMxYTE0YWQwOTVhNDI1YzY3NTA4ODZlYTc3OGY0Y2I1IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IlVza2RTTmxoazd2TUUzRnpxR3d0bnc9PSIsInZhbHVlIjoiVDZUQXhYcXExRzAyWWRXZUl4eGNuNWxFSDlkSEwrcUFWaEc5TmFmME1zbkJqY1l0L3FlblgyU3FRN25oK2Ercng0ay8xNmRlbzJLSk1BbmR4WVU2blIwdCtla2tHc1Q1aDgrWTJCdVk4cHVnd1I3eENEenA3eXpQMEs4RjFadjUiLCJtYWMiOiIxMDRhMzA1YmJkMWM4NWJjYjVhZTQwNGRhNDlmZDE1N2ZjMzFiNzVhYzk4MDBmYmM1NThkNGZjMWVjMWVkNGQ2IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show the form for creating a new resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/client\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/client\/create"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6IjlkeFpRSDJmZUp0MytYcVN3ZHVrMmc9PSIsInZhbHVlIjoiV25pcHAyZy9pSHZuZEpTZW8xVW14ZWlXYWdwNTdIb2RFL2tlTm9YRWRYWDhzejNCMm1pbk1CTVpCTnpCR2Rhc1JGVGFHTmVINm1MaDQ4ZUdud3piTFgzK3J3ZkFVT0FuZlJEZ2xhL2tzck05MjA2RHorODg3cGlNeC9QT21GajQiLCJtYWMiOiJhMjM1NWUwMDdhZGI2MTdmMWI2YzQ4YmMwZmU4ZDE0OTA1Yjk4OWMxYmZlZjEzNWNiYTllODEzMjNmZjMwMTI1IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6InNaNHhPQzBZUHBtWHpyRk9MWEh2cWc9PSIsInZhbHVlIjoiYld6OFhNVXh0UXkrSzNvcUlFMmhCdWZrcmpRTzIxN3ZwQWZiMVFLQjBLQmNWTTZhTjNNSUNCRWFJcXN4QlBHdVk5aFpMMWZNcURBVGZ1S1lxdWNUaHJ3R2MzZ0t4VnFMdTVYc2tMRXh3U1QvcE45MmF6SythTG9TZ3VtRG15a0UiLCJtYWMiOiI2YmIwOTU3Yzg3ODgwMGYyZDk1YjE2YjE1ODc0MDk2NWFlZmQ5OGNhYzMxMTBiZjJiYzEzNGVlNDJlNThkMTM4IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/client",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/client"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Show the specified resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/client\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/client\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the client."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6IjNlL2wwY2N3aExvb2sxOHVYOHcwbmc9PSIsInZhbHVlIjoiMHppWlArUFhmSWZjTWRkL0tEaWJ0UTYzMVU4VU1XT3ZXMlFLUVZNeGcxNzY5cGtCRzJGQUVCbmlsN3BSblFtMXQvaHhBbithbStHR0lZQmpNQlJqdHQ0cVFIYjF6a3pUS3FrMXFjQTIzbEE1YjBsMVpvTklNcWRaOUptZ2doaHYiLCJtYWMiOiJjZmE4N2MzY2U0ODE4NTFjMmY2NWFhZTE4YWJhYjZlNGViZTBhODM0ZjFmYzgwYTMzMjQ5YmNmZWQ0YzYyYjI4IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IklzVC9RYmtIZThUM1FHbzg4ZUpZb0E9PSIsInZhbHVlIjoiWGhGaEdoQ1NDQUd6MjZreEtCTFlpTndnbmxzUHI1S2JyM0RHT2pQaE1XS3ZINml2M0tLMFpJRXZHQXlqQlZWeGhtU3MrZFVwcVgwcHd1b3RTVVVienV6S3FMYStiOEJhSk9jOUUzOWNRV3JOZ1RleVVTb1ZlM2oxUmsrR2hqRTkiLCJtYWMiOiJkODc2YzI3N2VlNWZjYTVmMTMyMDBiNTQ2NTFhZWEwOGJlNzU2Y2QxMzQxOGE2MWMyZmU4YTMxZWViODY2ZDdhIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:13 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show the form for editing the specified resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/client\/:client\/edit",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/client\/:client\/edit",
                            "variable": [
                                {
                                    "id": "client",
                                    "key": "client",
                                    "value": "architecto",
                                    "description": "The client."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6Im1yL09ncHJzUWlBSlkxd0UrL3hvNEE9PSIsInZhbHVlIjoiZmRWd3ErNEp3Q0NoYk1tNlJ5UjNqSzJ5alNoZnJGdUtwOWswMnJOVmRtdk9PaE5qZy9ySEJNd0F2c2VDaG1wQ0hRYkd1L284MU81cFhqdkdGd2E4WGJLSFdJOW1OcGNxVVFMckN2Z28veHB4ekJLVFpUcUd6ZExQczg1blpHMXciLCJtYWMiOiJkYmMzMTdjMDM1OWNiMjRlZGY0YjU3OTg5ZWQyZjg4YjEwMjgxMTIwNTI5YTJkZDAxYzBlNjJjY2EzNzhiNjc1IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:14 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IlJKM3FQOTVBUE5aU04weXdSNk5wQUE9PSIsInZhbHVlIjoia3RjRGhEaDZ4VTF2T1JJU2s0U1J3VXJHZUhRQmFLNlhZY3VQUFdoQks4WUZOZzhXOWVSL1lIQmllcms5WDBscXgrdDB5V1BiRzlRZWxrb0U1djVMNk42N2kwRCtXN0pwR2EwN2MvQm15RHhVZWtJREZHZXY1VkpLLzA2UCtYNUwiLCJtYWMiOiJkZTliOGU2NzJkNzJjOGFiYmU4ZTU2OGRjOGFlOTNjYzU2NWMwYjQ3OTZiZmZlODg5MDVlY2FkNjI3NzJhN2Q4IiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:14 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the specified resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/client\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/client\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the client."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove the specified resource from storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/client\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/client\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the client."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET connector\/regenerate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/regenerate",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/regenerate"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6Ikk5R3NNdjNDTEU1bGQ2MkRhZ1ZYaGc9PSIsInZhbHVlIjoiS2l2YXZUOGhVM3JkbFcxd3RuMWR4WUZVY09TN3N5OUNpbWhQZmwydTFZY3FaektUVWlJVTNRc3pwYkRNdmNVMnJ5cXZMMXd6VzhDYVh4eit3VEJFVHpsVzgvb0pPNUZzUG1wT25xckl4ZVJINUpIMGhwSGYwaDJSSGVnR1dwb3UiLCJtYWMiOiIzZWZhZDYzNTI2ZGE4ZmEzNWY4MmRhZjg3OGY3ZGJhOWQwNjE3NWExYWNlZmRlMjNmZTQ3NjVmNzZkZTZlMGIwIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:14 GMT; Max-Age=86400; path=\/; samesite=lax; briskbasepos_session=eyJpdiI6IkpZdGlEb2FIdmxlSUN3QXNhdks4cFE9PSIsInZhbHVlIjoiT3JpR1J1Wkt5MjVrZi9ucERRcnYrby9rbVhOd3VpWmZIMGxKbW1YazFPNHkxdWZWT3lIVkdTVWt6eU54L3ZIdkVQaUZOL2g3eDd1c0N4VWRTZU1VNkJUMEtVUjhxdHY5S1poNjhqWWtrVW85K0RaSXpIb05ydyszS2NQWG9KdW0iLCJtYWMiOiJmYTE3N2ViNzJkYWQ3YjYzYTFmMzc4ZGRjMDI5N2Y3ZTE0MTAxMTQ3ZGUxMGYwMTcwMzllZmM0ZTM0ZWE2NGVlIiwidGFnIjoiIn0%3D; expires=Sun, 03 May 2026 23:19:14 GMT; Max-Age=86400; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Expense management",
            "description": "",
            "item": [
                {
                    "name": "List expenses",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/expense",
                            "query": [
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "id of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "payment_status",
                                    "value": "paid",
                                    "description": "payment status",
                                    "disabled": false
                                },
                                {
                                    "key": "start_date",
                                    "value": "2018-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2018-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "expense_for",
                                    "value": "architecto",
                                    "description": "id of the user for which expense is created",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/expense?location_id=1&payment_status=paid&start_date=2018-06-25&end_date=2018-06-25&expense_for=architecto&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 59,\n\"business_id\": 1,\n\"location_id\": 1,\n\"payment_status\": \"due\",\n\"ref_no\": \"EP2020\/0001\",\n\"transaction_date\": \"2020-07-03 12:58:00\",\n\"total_before_tax\": \"50.0000\",\n\"tax_id\": null,\n\"tax_amount\": \"0.0000\",\n\"final_total\": \"50.0000\",\n\"expense_category_id\": null,\n\"document\": null,\n\"created_by\": 9,\n\"is_recurring\": 0,\n\"recur_interval\": null,\n\"recur_interval_type\": null,\n\"recur_repetitions\": null,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"created_at\": \"2020-07-03 12:58:23\",\n\"updated_at\": \"2020-07-03 12:58:24\",\n\"transaction_for\": {\n\"id\": 1,\n\"user_type\": \"user\",\n\"surname\": \"Mr\",\n\"first_name\": \"Admin\",\n\"last_name\": null,\n\"username\": \"admin\",\n\"email\": \"admin@example.com\",\n\"language\": \"en\",\n\"contact_no\": null,\n\"address\": null,\n\"business_id\": 1,\n\"max_sales_discount_percent\": null,\n\"allow_login\": 1,\n\"essentials_department_id\": null,\n\"essentials_designation_id\": null,\n\"status\": \"active\",\n\"crm_contact_id\": null,\n\"is_cmmsn_agnt\": 0,\n\"cmmsn_percent\": \"0.00\",\n\"selected_contacts\": 0,\n\"dob\": null,\n\"gender\": null,\n\"marital_status\": null,\n\"blood_group\": null,\n\"contact_number\": null,\n\"fb_link\": null,\n\"twitter_link\": null,\n\"social_media_1\": null,\n\"social_media_2\": null,\n\"permanent_address\": null,\n\"current_address\": null,\n\"guardian_name\": null,\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null,\n\"bank_details\": null,\n\"id_proof_name\": null,\n\"id_proof_number\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:19\",\n\"updated_at\": \"2018-01-04 02:15:19\"\n}\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/expense?page=1\",\n\"last\": null,\n\"prev\": null,\n\"next\": null\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/expense\",\n\"per_page\": 10,\n\"to\": 1\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create expense \/ expense refund",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/expense",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/expense"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"location_id\":1,\"final_total\":4326.41688,\"transaction_date\":\"2020-5-7 15:20:22\",\"tax_rate_id\":16,\"expense_for\":16,\"contact_id\":16,\"expense_category_id\":16,\"expense_sub_category_id\":16,\"additional_notes\":\"architecto\",\"is_refund\":0,\"is_recurring\":0,\"recur_interval\":16,\"recur_interval_type\":\"months\",\"subscription_repeat_on\":15,\"subscription_no\":\"architecto\",\"recur_repetitions\":16,\"payment\":[\"architecto\"]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"id\": 75,\n\"business_id\": 1,\n\"location_id\": \"1\",\n\"payment_status\": \"due\",\n\"ref_no\": \"EP2020\/0013\",\n\"transaction_date\": \"2020-07-06T05:31:29.480975Z\",\n\"total_before_tax\": \"43\",\n\"tax_id\": null,\n\"tax_amount\": 0,\n\"final_total\": \"43\",\n\"expense_category_id\": null,\n\"document\": null,\n\"created_by\": 1,\n\"is_recurring\": 0,\n\"recur_interval\": null,\n\"recur_interval_type\": null,\n\"recur_repetitions\": null,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"created_at\": \"2020-07-06 11:01:29\",\n\"updated_at\": \"2020-07-06 11:01:29\",\n\"expense_for\": []\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified expense \/ expense refund",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/expense\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/expense\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the expense."
                                },
                                {
                                    "id": "expense",
                                    "key": "expense",
                                    "value": "59",
                                    "description": "comma separated ids of the expenses"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 59,\n\"business_id\": 1,\n\"location_id\": 1,\n\"payment_status\": \"due\",\n\"ref_no\": \"EP2020\/0001\",\n\"transaction_date\": \"2020-07-03 12:58:00\",\n\"total_before_tax\": \"50.0000\",\n\"tax_id\": null,\n\"tax_amount\": \"0.0000\",\n\"final_total\": \"50.0000\",\n\"expense_category_id\": null,\n\"document\": null,\n\"created_by\": 9,\n\"is_recurring\": 0,\n\"recur_interval\": null,\n\"recur_interval_type\": null,\n\"recur_repetitions\": null,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"created_at\": \"2020-07-03 12:58:23\",\n\"updated_at\": \"2020-07-03 12:58:24\",\n\"transaction_for\": {\n\"id\": 1,\n\"user_type\": \"user\",\n\"surname\": \"Mr\",\n\"first_name\": \"Admin\",\n\"last_name\": null,\n\"username\": \"admin\",\n\"email\": \"admin@example.com\",\n\"language\": \"en\",\n\"contact_no\": null,\n\"address\": null,\n\"business_id\": 1,\n\"max_sales_discount_percent\": null,\n\"allow_login\": 1,\n\"essentials_department_id\": null,\n\"essentials_designation_id\": null,\n\"status\": \"active\",\n\"crm_contact_id\": null,\n\"is_cmmsn_agnt\": 0,\n\"cmmsn_percent\": \"0.00\",\n\"selected_contacts\": 0,\n\"dob\": null,\n\"gender\": null,\n\"marital_status\": null,\n\"blood_group\": null,\n\"contact_number\": null,\n\"fb_link\": null,\n\"twitter_link\": null,\n\"social_media_1\": null,\n\"social_media_2\": null,\n\"permanent_address\": null,\n\"current_address\": null,\n\"guardian_name\": null,\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null,\n\"bank_details\": null,\n\"id_proof_name\": null,\n\"id_proof_number\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:19\",\n\"updated_at\": \"2018-01-04 02:15:19\"\n}\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update expense \/ expense refund",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/expense\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/expense\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the expense."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"final_total\":4326.41688,\"transaction_date\":\"2020-5-7 15:20:22\",\"tax_rate_id\":16,\"expense_for\":16,\"contact_id\":16,\"expense_category_id\":16,\"expense_sub_category_id\":16,\"additional_notes\":\"architecto\",\"is_recurring\":0,\"recur_interval\":16,\"recur_interval_type\":\"months\",\"subscription_repeat_on\":15,\"subscription_no\":\"architecto\",\"recur_repetitions\":16,\"payment\":[\"architecto\"]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"id\": 75,\n\"business_id\": 1,\n\"location_id\": \"1\",\n\"payment_status\": \"due\",\n\"ref_no\": \"EP2020\/0013\",\n\"transaction_date\": \"2020-07-06T05:31:29.480975Z\",\n\"total_before_tax\": \"43\",\n\"tax_id\": null,\n\"tax_amount\": 0,\n\"final_total\": \"43\",\n\"expense_category_id\": null,\n\"document\": null,\n\"created_by\": 1,\n\"is_recurring\": 0,\n\"recur_interval\": null,\n\"recur_interval_type\": null,\n\"recur_repetitions\": null,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"created_at\": \"2020-07-06 11:01:29\",\n\"updated_at\": \"2020-07-06 11:01:29\",\n\"expense_for\": []\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List expense refunds",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/expense-refund",
                            "query": [
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "id of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "payment_status",
                                    "value": "paid",
                                    "description": "payment status",
                                    "disabled": false
                                },
                                {
                                    "key": "start_date",
                                    "value": "2018-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2018-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "expense_for",
                                    "value": "architecto",
                                    "description": "id of the user for which expense is created",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/expense-refund?location_id=1&payment_status=paid&start_date=2018-06-25&end_date=2018-06-25&expense_for=architecto&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 230,\n\"business_id\": 1,\n\"location_id\": 1,\n\"payment_status\": \"partial\",\n\"ref_no\": \"refund\",\n\"transaction_date\": \"2020-12-15 11:16:00\",\n\"total_before_tax\": \"65.0000\",\n\"tax_id\": null,\n\"tax_amount\": \"0.0000\",\n\"final_total\": \"65.0000\",\n\"expense_category_id\": null,\n\"document\": null,\n\"created_by\": 9,\n\"created_at\": \"2020-12-15 11:46:56\",\n\"updated_at\": \"2020-12-15 12:47:30\",\n\"expense_for\": []\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/expense-refund?page=1\",\n\"last\": null,\n\"prev\": null,\n\"next\": null\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/expense-refund\",\n\"per_page\": 15,\n\"to\": 1\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List expense categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/expense-categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/expense-categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"name\": \"cat 1\",\n\"business_id\": 1,\n\"code\": null,\n\"parent_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2021-12-16 17:54:40\",\n\"updated_at\": \"2021-12-16 17:54:40\",\n\"sub_categories\": [\n{\n\"id\": 3,\n\"name\": \"sub cat 1\",\n\"business_id\": 1,\n\"code\": null,\n\"parent_id\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2021-12-16 18:12:07\",\n\"updated_at\": \"2021-12-16 18:12:07\"\n}\n]\n},\n{\n\"id\": 7,\n\"name\": \"cat 2\",\n\"business_id\": 1,\n\"code\": null,\n\"parent_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2021-12-17 10:36:13\",\n\"updated_at\": \"2021-12-17 10:36:13\",\n\"sub_categories\": [\n{\n\"id\": 8,\n\"name\": \"sub cat 2\",\n\"business_id\": 1,\n\"code\": null,\n\"parent_id\": 7,\n\"deleted_at\": null,\n\"created_at\": \"2021-12-17 10:36:44\",\n\"updated_at\": \"2021-12-17 10:36:44\"\n}\n]\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Field Force",
            "description": "",
            "item": [
                {
                    "name": "List visits",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/field-force",
                            "query": [
                                {
                                    "key": "contact_id",
                                    "value": "architecto",
                                    "description": "id of the contact",
                                    "disabled": false
                                },
                                {
                                    "key": "assigned_to",
                                    "value": "architecto",
                                    "description": "id of the assigned user",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "architecto",
                                    "description": "status of the visit (assigned, finished)",
                                    "disabled": false
                                },
                                {
                                    "key": "start_date",
                                    "value": "2018-06-25",
                                    "description": "Start date filter for visit on format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2018-06-25",
                                    "description": "End date filter for visit on format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by_date",
                                    "value": "",
                                    "description": "Sort visit by visit on date ('asc', 'desc')",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/field-force?contact_id=architecto&assigned_to=architecto&status=architecto&start_date=2018-06-25&end_date=2018-06-25&per_page=15&order_by_date="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Visit",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/field-force\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/field-force\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"contact_id\":16,\"visit_to\":\"architecto\",\"visit_address\":\"architecto\",\"assigned_to\":16,\"visit_on\":\"2021-12-28 17:23:00\",\"visit_for\":\"architecto\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"contact_id\": \"6\",\n\"assigned_to\": \"9\",\n\"visit_on\": \"2022-01-15 17:23:00\",\n\"visit_for\": \"\",\n\"meet_with\": \"\",\n\"meet_with2\": \"\",\n\"meet_with3\": \"\",\n\"meet_with_mobileno\": \"\",\n\"meet_with_mobileno2\": \"\",\n\"meet_with_mobileno3\": \"\",\n\"meet_with_designation\": \"\",\n\"meet_with_designation2\": \"\",\n\"meet_with_designation3\": \"\",\n\"visit_id\": \"2021\/0031\",\n\"status\": \"assigned\",\n\"business_id\": 1,\n\"updated_at\": \"2021-12-30 11:00:47\",\n\"created_at\": \"2021-12-30 11:00:47\",\n\"id\": 3\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Visit status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/field-force\/update-visit-status\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/field-force\/update-visit-status\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "id of the visit to be updated"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "status",
                                    "value": "finished",
                                    "type": "text",
                                    "description": "Current status of the visit (assigned, finished, met_contact, did_not_meet_contact)"
                                },
                                {
                                    "key": "reason_to_not_meet_contact",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "Reason if status is did_not_meet_contact"
                                },
                                {
                                    "key": "visited_on",
                                    "value": "2021-12-28 17:23:00",
                                    "type": "text",
                                    "description": "H:i:s"
                                },
                                {
                                    "key": "visited_address",
                                    "value": "Radhanath Mullick Ln, Tiretta Bazaar, Bow Bazaar, Kolkata, West Bengal, 700 073, India",
                                    "type": "text",
                                    "description": "Full address of the contact"
                                },
                                {
                                    "key": "latitude",
                                    "value": "41.40338",
                                    "type": "text",
                                    "description": "Lattitude of the user location if full address is not given"
                                },
                                {
                                    "key": "longitude",
                                    "value": "2.17403",
                                    "type": "text",
                                    "description": "Longitude of the user location if full address is not given"
                                },
                                {
                                    "key": "comments",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "Extra comments"
                                },
                                {
                                    "key": "meet_with",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "name of person field force meet with"
                                },
                                {
                                    "key": "meet_with_mobileno",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "mobile number of the person field force meet with"
                                },
                                {
                                    "key": "photo",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"id\": 10,\n\"business_id\": 1,\n\"contact_id\": 6,\n\"assigned_to\": 9,\n\"latitude\" : \"23.6101808\",\n\"longitude\" : \"85.2799354\",\n\"visited_address\": \"New address\",\n\"status\": \"finished\",\n\"visit_on\": \"2021-12-28 17:23:00\",\n\"visit_for\": \"assigned from api\",\n\"meet_with\": \"Name\",\n\"meet_with2\": \"Name\",\n\"meet_with3\": \"Name\",\n\"meet_with_mobileno\": \"123456789\",\n\"meet_with_mobileno2\": \"123456789\",\n\"meet_with_mobileno3\": \"123456789\",\n\"meet_with_designation\": \"dr\",\n\"meet_with_designation2\": \"dr\",\n\"meet_with_designation3\": \"dr\",\n\"comments\": \"Users comment\",\n\"created_at\": \"2021-12-28 17:35:13\",\n\"updated_at\": \"2021-12-28 18:06:03\"\n}\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "New end points",
            "description": "",
            "item": [
                {
                    "name": "New List products",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/new_product",
                            "query": [
                                {
                                    "key": "order_by",
                                    "value": "architecto",
                                    "description": "Values: product_name or newest",
                                    "disabled": false
                                },
                                {
                                    "key": "order_direction",
                                    "value": "architecto",
                                    "description": "Values: asc or desc",
                                    "disabled": false
                                },
                                {
                                    "key": "location_custom_field_1",
                                    "value": "architecto",
                                    "description": "Custom field 1 of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "category_id",
                                    "value": "architecto",
                                    "description": "comma separated ids of one or multiple category",
                                    "disabled": false
                                },
                                {
                                    "key": "sub_category_id",
                                    "value": "architecto",
                                    "description": "comma separated ids of one or multiple sub-category",
                                    "disabled": false
                                },
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "not_for_sell",
                                    "value": "architecto",
                                    "description": "(1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "send_lot_detail",
                                    "value": "architecto",
                                    "description": "Send lot details in each variation location details(1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "name",
                                    "value": "architecto",
                                    "description": "Search term for product name",
                                    "disabled": false
                                },
                                {
                                    "key": "sku",
                                    "value": "architecto",
                                    "description": "Search term for product sku",
                                    "disabled": false
                                },
                                {
                                    "key": "product_ids",
                                    "value": "1%2C2",
                                    "description": "comma separated ids of products",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/new_product?order_by=architecto&order_direction=architecto&location_custom_field_1=architecto&category_id=architecto&sub_category_id=architecto&location_id=1&not_for_sell=architecto&send_lot_detail=architecto&name=architecto&sku=architecto&product_ids=1%2C2&per_page=10"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 2,\n\"name\": \"Levis Men's Slimmy Fit Jeans\",\n\"business_id\": 1,\n\"type\": \"variable\",\n\"exemption_type_id\": null,\n\"enable_stock\": 1,\n\"sku\": \"AS0002\",\n\"product_custom_field1\": null,\n\"product_custom_field2\": null,\n\"product_custom_field3\": null,\n\"product_custom_field4\": null,\n\"woocommerce_media_id\": null,\n\"product_description\": null,\n\"is_inactive\": 0,\n\"repair_model_id\": null,\n\"not_for_selling\": 0,\n\"ecom_shipping_class_id\": null,\n\"ecom_active_in_store\": 1,\n\"woocommerce_product_id\": 627,\n\"woocommerce_disable_sync\": 0,\n\"image_url\": \"http:\/\/local.pos.com\/uploads\/img\/1528727964_levis_jeans.jpg\",\n\"product_variations\": [\n{\n\"id\": 2,\n\"variation_template_id\": 5,\n\"name\": \"Waist Size\",\n\"product_id\": 2,\n\"is_dummy\": 0,\n\"variations\": [\n{\n\"id\": 2,\n\"name\": \"28\",\n\"product_id\": 2,\n\"sub_sku\": \"AS0002-1\",\n\"product_variation_id\": 2,\n\"woocommerce_variation_id\": 658,\n\"default_purchase_price\": \"70.0000\",\n\"dpp_inc_tax\": \"77.0000\",\n\"default_sell_price\": \"70.0000\",\n\"sell_price_inc_tax\": \"77.0000\",\n\"combo_variations\": null,\n\"variation_location_details\": [\n{\n\"id\": 1,\n\"product_id\": 2,\n\"product_variation_id\": 2,\n\"variation_id\": 2,\n\"location_id\": 1,\n\"qty_available\": \"71.0000\"\n}\n],\n\"media\": [],\n\"discounts\": []\n},\n{\n\"id\": 3,\n\"name\": \"30\",\n\"product_id\": 2,\n\"sub_sku\": \"AS0002-2\",\n\"product_variation_id\": 2,\n\"woocommerce_variation_id\": 659,\n\"default_purchase_price\": \"70.0000\",\n\"dpp_inc_tax\": \"77.0000\",\n\"default_sell_price\": \"70.0000\",\n\"sell_price_inc_tax\": \"77.0000\",\n\"combo_variations\": null,\n\"variation_location_details\": [\n{\n\"id\": 2,\n\"product_id\": 2,\n\"product_variation_id\": 2,\n\"variation_id\": 3,\n\"location_id\": 1,\n\"qty_available\": \"89.0000\"\n}\n],\n\"media\": [],\n\"discounts\": []\n},\n{\n\"id\": 4,\n\"name\": \"32\",\n\"product_id\": 2,\n\"sub_sku\": \"AS0002-3\",\n\"product_variation_id\": 2,\n\"woocommerce_variation_id\": 660,\n\"default_purchase_price\": \"70.0000\",\n\"dpp_inc_tax\": \"77.0000\",\n\"default_sell_price\": \"70.0000\",\n\"sell_price_inc_tax\": \"77.0000\",\n\"combo_variations\": null,\n\"variation_location_details\": [\n{\n\"id\": 3,\n\"product_id\": 2,\n\"product_variation_id\": 2,\n\"variation_id\": 4,\n\"location_id\": 1,\n\"qty_available\": \"127.0000\"\n},\n{\n\"id\": 1371,\n\"product_id\": 2,\n\"product_variation_id\": 2,\n\"variation_id\": 4,\n\"location_id\": 7,\n\"qty_available\": \"-1.0000\"\n}\n],\n\"media\": [],\n\"discounts\": []\n},\n{\n\"id\": 5,\n\"name\": \"34\",\n\"product_id\": 2,\n\"sub_sku\": \"AS0002-4\",\n\"product_variation_id\": 2,\n\"woocommerce_variation_id\": 661,\n\"default_purchase_price\": \"72.0000\",\n\"dpp_inc_tax\": \"79.2000\",\n\"default_sell_price\": \"72.0000\",\n\"sell_price_inc_tax\": \"79.2000\",\n\"combo_variations\": null,\n\"variation_location_details\": [\n{\n\"id\": 4,\n\"product_id\": 2,\n\"product_variation_id\": 2,\n\"variation_id\": 5,\n\"location_id\": 1,\n\"qty_available\": \"128.0000\"\n}\n],\n\"media\": [],\n\"discounts\": []\n},\n{\n\"id\": 6,\n\"name\": \"36\",\n\"product_id\": 2,\n\"sub_sku\": \"AS0002-5\",\n\"product_variation_id\": 2,\n\"woocommerce_variation_id\": 662,\n\"default_purchase_price\": \"72.0000\",\n\"dpp_inc_tax\": \"79.2000\",\n\"default_sell_price\": \"72.0000\",\n\"sell_price_inc_tax\": \"79.2000\",\n\"combo_variations\": null,\n\"variation_location_details\": [\n{\n\"id\": 5,\n\"product_id\": 2,\n\"product_variation_id\": 2,\n\"variation_id\": 6,\n\"location_id\": 1,\n\"qty_available\": \"99.0000\"\n}\n],\n\"media\": [],\n\"discounts\": []\n}\n]\n}\n],\n\"brand\": {\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"Levis\",\n\"description\": null,\n\"created_by\": 1,\n\"use_for_repair\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:19:47\",\n\"updated_at\": \"2018-01-03 21:19:47\"\n},\n\"unit\": {\n\"id\": 1,\n\"business_id\": 1,\n\"actual_name\": \"Pieces\",\n\"short_name\": \"Pc(s)\",\n\"allow_decimal\": 0,\n\"base_unit_id\": null,\n\"base_unit_multiplier\": null\n},\n\"category\": {\n\"id\": 1,\n\"name\": \"Men's\",\n\"business_id\": 1,\n\"short_code\": \"sfefef\",\n\"parent_id\": 0,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null\n},\n\"sub_category\": {\n\"id\": 4,\n\"name\": \"Jeans\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null\n},\n\"product_tax\": {\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"VAT@10%\",\n\"amount\": 10,\n\"is_tax_group\": 0,\n\"for_tax_group\": 0,\n\"created_by\": 1,\n\"woocommerce_tax_rate_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:40:07\",\n\"updated_at\": \"2018-01-04 02:40:07\"\n},\n\"product_locations\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"Location 1\",\n\"custom_field1\": \"gdgdgd88\",\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null\n}\n]\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/new_product?per_page=1&page=1\",\n\"last\": \"http:\/\/local.pos.com\/connector\/api\/new_product?per_page=1&page=1088\",\n\"prev\": null,\n\"next\": \"http:\/\/local.pos.com\/connector\/api\/new_product?per_page=1&page=2\"\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"last_page\": 1088,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/new_product\",\n\"per_page\": \"1\",\n\"to\": 1,\n\"total\": 1088\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "New List sells",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/new_sell",
                            "query": [
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "id of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "contact_id",
                                    "value": "architecto",
                                    "description": "id of the customer",
                                    "disabled": false
                                },
                                {
                                    "key": "payment_status",
                                    "value": "due%2Cpartial",
                                    "description": "Comma separated values of payment statuses. Available values due, partial, paid, overdue",
                                    "disabled": false
                                },
                                {
                                    "key": "start_date",
                                    "value": "2018-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2018-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "user_id",
                                    "value": "architecto",
                                    "description": "id of the user who created the sale",
                                    "disabled": false
                                },
                                {
                                    "key": "service_staff_id",
                                    "value": "architecto",
                                    "description": "id of the service staff assigned with the sale",
                                    "disabled": false
                                },
                                {
                                    "key": "shipping_status",
                                    "value": "ordered",
                                    "description": "Shipping Status of the sale ('ordered', 'packed', 'shipped', 'delivered', 'cancelled')",
                                    "disabled": false
                                },
                                {
                                    "key": "source",
                                    "value": "architecto",
                                    "description": "Source of the sale",
                                    "disabled": false
                                },
                                {
                                    "key": "customer_group_id",
                                    "value": "architecto",
                                    "description": "id of the customer group",
                                    "disabled": false
                                },
                                {
                                    "key": "product_name",
                                    "value": "architecto",
                                    "description": "name of the product",
                                    "disabled": false
                                },
                                {
                                    "key": "product_sku",
                                    "value": "architecto",
                                    "description": "sku of the product or variation",
                                    "disabled": false
                                },
                                {
                                    "key": "product_custom_field_1",
                                    "value": "architecto",
                                    "description": "custome field 1 of the product",
                                    "disabled": false
                                },
                                {
                                    "key": "location_custom_field_1",
                                    "value": "architecto",
                                    "description": "custome field 1 of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "location_invoice_scheme_prefix",
                                    "value": "architecto",
                                    "description": "Invoice scheme prefix of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "product_category_id",
                                    "value": "architecto",
                                    "description": "category id of the product",
                                    "disabled": false
                                },
                                {
                                    "key": "product_sub_category_id",
                                    "value": "architecto",
                                    "description": "Sub category id of the product",
                                    "disabled": false
                                },
                                {
                                    "key": "sell_ids",
                                    "value": "55%2C64",
                                    "description": "comma separated ids of the sells",
                                    "disabled": false
                                },
                                {
                                    "key": "only_subscriptions",
                                    "value": "architecto",
                                    "description": "Filter only subcription invoices (1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "send_purchase_details",
                                    "value": "architecto",
                                    "description": "Get purchase details of each sell line (1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by_date",
                                    "value": "desc",
                                    "description": "Sort sell list by date ('asc', 'desc')",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/new_sell?location_id=1&contact_id=architecto&payment_status=due%2Cpartial&start_date=2018-06-25&end_date=2018-06-25&user_id=architecto&service_staff_id=architecto&shipping_status=ordered&source=architecto&customer_group_id=architecto&product_name=architecto&product_sku=architecto&product_custom_field_1=architecto&location_custom_field_1=architecto&location_invoice_scheme_prefix=architecto&product_category_id=architecto&product_sub_category_id=architecto&sell_ids=55%2C64&only_subscriptions=architecto&send_purchase_details=architecto&order_by_date=desc&per_page=10"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 6,\n\"business_id\": 1,\n\"location_id\": 1,\n\"res_table_id\": null,\n\"type\": \"sell\",\n\"status\": \"final\",\n\"is_quotation\": 0,\n\"payment_status\": \"paid\",\n\"contact_id\": 4,\n\"customer_group_id\": null,\n\"invoice_no\": \"AS0001\",\n\"ref_no\": \"\",\n\"source\": null,\n\"unique_hash\": null,\n\"hash_control\": null,\n\"subscription_no\": null,\n\"subscription_repeat_on\": null,\n\"transaction_date\": \"2018-04-10 13:23:21\",\n\"total_before_tax\": \"770.0000\",\n\"tax_id\": null,\n\"tax_amount\": \"0.0000\",\n\"discount_type\": \"percentage\",\n\"discount_amount\": \"0.0000\",\n\"rp_redeemed\": 0,\n\"rp_redeemed_amount\": \"0.0000\",\n\"shipping_details\": null,\n\"shipping_address\": null,\n\"shipping_status\": null,\n\"delivered_to\": null,\n\"additional_notes\": null,\n\"staff_note\": null,\n\"round_off_amount\": \"0.0000\",\n\"final_total\": \"770.0000\",\n\"expense_sub_category_id\": null,\n\"is_direct_sale\": 0,\n\"is_suspend\": 0,\n\"total_amount_recovered\": null,\n\"crm_is_order_request\": 0,\n\"mfg_production_cost\": \"0.0000\",\n\"mfg_production_cost_type\": \"percentage\",\n\"mfg_is_final\": 0,\n\"is_created_from_api\": 0,\n\"essentials_duration\": \"0.00\",\n\"essentials_duration_unit\": null,\n\"essentials_amount_per_unit_duration\": \"0.0000\",\n\"essentials_allowances\": null,\n\"essentials_deductions\": null,\n\"repair_completed_on\": null,\n\"repair_warranty_id\": null,\n\"repair_brand_id\": null,\n\"repair_status_id\": null,\n\"repair_model_id\": null,\n\"repair_job_sheet_id\": null,\n\"repair_defects\": null,\n\"repair_serial_no\": null,\n\"repair_checklist\": null,\n\"repair_security_pwd\": null,\n\"repair_security_pattern\": null,\n\"repair_due_date\": null,\n\"repair_device_id\": null,\n\"repair_updates_notif\": 0,\n\"invoice_token\": \"00f79f7fd292225e8c303a6bf8626d06\",\n\"pjt_project_id\": null,\n\"pjt_title\": null,\n\"woocommerce_order_id\": null,\n\"selling_price_group_id\": null,\n\"created_at\": \"2018-01-06 07:06:11\",\n\"updated_at\": \"2021-10-23 11:42:13\",\n\"location_name\": \"Location 1\",\n\"location_custom_field1\": \"gdgdgd88\",\n\"location_invoice_scheme_prefix\": \"AS\",\n\"table_name\": null,\n\"table_description\": null,\n\"contact\": \"Harry\",\n\"customer_group_name\": \"grp 2\",\n\"sell_lines\": [\n{\n\"id\": 1,\n\"transaction_id\": 6,\n\"product_id\": 2,\n\"quantity\": 10,\n\"quantity_returned\": \"0.0000\",\n\"unit_price_before_discount\": \"70.0000\",\n\"unit_price\": \"70.0000\",\n\"line_discount_type\": null,\n\"line_discount_amount\": \"0.0000\",\n\"unit_price_inc_tax\": \"77.0000\",\n\"item_tax\": \"7.0000\",\n\"tax_id\": 1,\n\"discount_id\": null,\n\"lot_no_line_id\": null,\n\"sell_line_note\": null,\n\"woocommerce_line_items_id\": null,\n\"children_type\": \"\",\n\"created_at\": \"2018-01-06 07:06:11\",\n\"updated_at\": \"2018-01-06 07:06:11\",\n\"product_name\": \"Levis Men's Slimmy Fit Jeans\",\n\"product_custom_field_1\": null,\n\"product_type\": \"variable\",\n\"product_sku\": \"AS0002\",\n\"category\": {\n\"id\": 1,\n\"name\": \"Men's\",\n\"business_id\": 1,\n\"short_code\": \"sfefef\",\n\"parent_id\": 0,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null\n},\n\"sub_category\": {\n\"id\": 4,\n\"name\": \"Jeans\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 1,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null\n},\n\"product_variations\": {\n\"id\": 3,\n\"name\": \"30\",\n\"product_id\": 2,\n\"sub_sku\": \"AS0002-2\",\n\"product_variation_id\": 2,\n\"default_purchase_price\": \"70.0000\",\n\"dpp_inc_tax\": \"77.0000\",\n\"default_sell_price\": \"70.0000\",\n\"sell_price_inc_tax\": \"77.0000\"\n}\n}\n],\n\"payment_lines\": [\n{\n\"id\": 1,\n\"transaction_id\": 6,\n\"business_id\": null,\n\"is_return\": 0,\n\"amount\": \"770.0000\",\n\"method\": \"cash\",\n\"card_type\": \"visa\",\n\"paid_on\": \"2018-01-09 17:30:35\",\n\"payment_ref_no\": null\n}\n],\n\"invoice_url\": \"http:\/\/local.pos.com\/invoice\/00f79f7fd292225e8c303a6bf8626d06\",\n\"payment_link\": \"\"\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/new_sell?per_page=1&page=1\",\n\"last\": \"http:\/\/local.pos.com\/connector\/api\/new_sell?per_page=1&page=213\",\n\"prev\": null,\n\"next\": \"http:\/\/local.pos.com\/connector\/api\/new_sell?per_page=1&page=2\"\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"last_page\": 213,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/new_sell\",\n\"per_page\": \"1\",\n\"to\": 1,\n\"total\": 213\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "New List contact",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/new_contactapi",
                            "query": [
                                {
                                    "key": "type",
                                    "value": "architecto",
                                    "description": "Type of contact (supplier, customer)",
                                    "disabled": false
                                },
                                {
                                    "key": "customer_group_id",
                                    "value": "architecto",
                                    "description": "id of the customer group",
                                    "disabled": false
                                },
                                {
                                    "key": "custom_field_1",
                                    "value": "architecto",
                                    "description": "Custom field 1 of the contact",
                                    "disabled": false
                                },
                                {
                                    "key": "contact_ids",
                                    "value": "2%2C3",
                                    "description": "comma separated ids of contacts",
                                    "disabled": false
                                },
                                {
                                    "key": "name",
                                    "value": "architecto",
                                    "description": "Search term for contact name",
                                    "disabled": false
                                },
                                {
                                    "key": "biz_name",
                                    "value": "architecto",
                                    "description": "Search term for contact's business name",
                                    "disabled": false
                                },
                                {
                                    "key": "mobile_num",
                                    "value": "16",
                                    "description": "Search term for contact's mobile number",
                                    "disabled": false
                                },
                                {
                                    "key": "contact_id",
                                    "value": "architecto",
                                    "description": "Search term for contact's contact_id. Ex(CO0005)",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "architecto",
                                    "description": "Column name to sort the result, Column: name, supplier_business_name",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "architecto",
                                    "description": "Direction to sort the result, Direction: desc, asc",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/new_contactapi?type=architecto&customer_group_id=architecto&custom_field_1=architecto&contact_ids=2%2C3&name=architecto&biz_name=architecto&mobile_num=16&contact_id=architecto&order_by=architecto&direction=architecto&per_page=10"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 18,\n\"business_id\": 1,\n\"type\": \"customer\",\n\"name\": \"Mr. Rohit Kumar Agrawalla\",\n\"prefix\": \"Mr.\",\n\"first_name\": \"Rohit\",\n\"middle_name\": \"Kumar\",\n\"last_name\": \"Agrawalla\",\n\"email\": null,\n\"contact_status\": \"active\",\n\"mobile\": \"8596859647\",\n\"credit_limit\": null,\n\"converted_by\": null,\n\"converted_on\": null,\n\"balance\": \"40.0000\",\n\"total_rp\": 0,\n\"total_rp_used\": 0,\n\"total_rp_expired\": 0,\n\"customer_group_id\": 1,\n\"crm_source\": null,\n\"crm_life_stage\": null,\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"custom_field5\": null,\n\"custom_field6\": null,\n\"custom_field7\": null,\n\"custom_field8\": null,\n\"custom_field9\": null,\n\"custom_field10\": null,\n\"remember_token\": null,\n\"password\": null\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/new_contactapi?customer_group_id=1&page=1\",\n\"last\": \"http:\/\/local.pos.com\/connector\/api\/new_contactapi?customer_group_id=1&page=1\",\n\"prev\": null,\n\"next\": null\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"last_page\": 1,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/new_contactapi\",\n\"per_page\": 10,\n\"to\": 1,\n\"total\": 1\n}\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Product management",
            "description": "",
            "item": [
                {
                    "name": "List products",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/product",
                            "query": [
                                {
                                    "key": "order_by",
                                    "value": "architecto",
                                    "description": "Values: product_name or newest",
                                    "disabled": false
                                },
                                {
                                    "key": "order_direction",
                                    "value": "architecto",
                                    "description": "Values: asc or desc",
                                    "disabled": false
                                },
                                {
                                    "key": "brand_id",
                                    "value": "architecto",
                                    "description": "comma separated ids of one or multiple brands",
                                    "disabled": false
                                },
                                {
                                    "key": "category_id",
                                    "value": "architecto",
                                    "description": "comma separated ids of one or multiple category",
                                    "disabled": false
                                },
                                {
                                    "key": "sub_category_id",
                                    "value": "architecto",
                                    "description": "comma separated ids of one or multiple sub-category",
                                    "disabled": false
                                },
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "selling_price_group",
                                    "value": "architecto",
                                    "description": "(1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "send_lot_detail",
                                    "value": "architecto",
                                    "description": "Send lot details in each variation location details(1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "name",
                                    "value": "architecto",
                                    "description": "Search term for product name",
                                    "disabled": false
                                },
                                {
                                    "key": "sku",
                                    "value": "architecto",
                                    "description": "Search term for product sku",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/product?order_by=architecto&order_direction=architecto&brand_id=architecto&category_id=architecto&sub_category_id=architecto&location_id=1&selling_price_group=architecto&send_lot_detail=architecto&name=architecto&sku=architecto&per_page=10"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"name\": \"Men's Reverse Fleece Crew\",\n\"business_id\": 1,\n\"type\": \"single\",\n\"sub_unit_ids\": null,\n\"enable_stock\": 1,\n\"alert_quantity\": \"5.0000\",\n\"sku\": \"AS0001\",\n\"barcode_type\": \"C128\",\n\"expiry_period\": null,\n\"expiry_period_type\": null,\n\"enable_sr_no\": 0,\n\"weight\": null,\n\"product_custom_field1\": null,\n\"product_custom_field2\": null,\n\"product_custom_field3\": null,\n\"product_custom_field4\": null,\n\"image\": null,\n\"woocommerce_media_id\": null,\n\"product_description\": null,\n\"created_by\": 1,\n\"warranty_id\": null,\n\"is_inactive\": 0,\n\"repair_model_id\": null,\n\"not_for_selling\": 0,\n\"ecom_shipping_class_id\": null,\n\"ecom_active_in_store\": 1,\n\"woocommerce_product_id\": 356,\n\"woocommerce_disable_sync\": 0,\n\"image_url\": \"http:\/\/local.pos.com\/img\/default.png\",\n\"product_variations\": [\n{\n\"id\": 1,\n\"variation_template_id\": null,\n\"name\": \"DUMMY\",\n\"product_id\": 1,\n\"is_dummy\": 1,\n\"created_at\": \"2018-01-03 21:29:08\",\n\"updated_at\": \"2018-01-03 21:29:08\",\n\"variations\": [\n{\n\"id\": 1,\n\"name\": \"DUMMY\",\n\"product_id\": 1,\n\"sub_sku\": \"AS0001\",\n\"product_variation_id\": 1,\n\"woocommerce_variation_id\": null,\n\"variation_value_id\": null,\n\"default_purchase_price\": \"130.0000\",\n\"dpp_inc_tax\": \"143.0000\",\n\"profit_percent\": \"0.0000\",\n\"default_sell_price\": \"130.0000\",\n\"sell_price_inc_tax\": \"143.0000\",\n\"created_at\": \"2018-01-03 21:29:08\",\n\"updated_at\": \"2020-06-09 00:23:22\",\n\"deleted_at\": null,\n\"combo_variations\": null,\n\"variation_location_details\": [\n{\n\"id\": 56,\n\"product_id\": 1,\n\"product_variation_id\": 1,\n\"variation_id\": 1,\n\"location_id\": 1,\n\"qty_available\": \"20.0000\",\n\"created_at\": \"2020-06-08 23:46:40\",\n\"updated_at\": \"2020-06-08 23:46:40\"\n}\n],\n\"media\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"file_name\": \"1591686466_978227300_nn.jpeg\",\n\"description\": null,\n\"uploaded_by\": 9,\n\"model_type\": \"App\\\\Variation\",\n\"woocommerce_media_id\": null,\n\"model_id\": 1,\n\"created_at\": \"2020-06-09 00:07:46\",\n\"updated_at\": \"2020-06-09 00:07:46\",\n\"display_name\": \"nn.jpeg\",\n\"display_url\": \"http:\/\/local.pos.com\/uploads\/media\/1591686466_978227300_nn.jpeg\"\n}\n],\n\"discounts\": [\n{\n\"id\": 2,\n\"name\": \"FLAT 10%\",\n\"business_id\": 1,\n\"brand_id\": null,\n\"category_id\": null,\n\"location_id\": 1,\n\"priority\": 2,\n\"discount_type\": \"fixed\",\n\"discount_amount\": \"5.0000\",\n\"starts_at\": \"2021-09-01 11:45:00\",\n\"ends_at\": \"2021-09-30 11:45:00\",\n\"is_active\": 1,\n\"spg\": null,\n\"applicable_in_cg\": 1,\n\"created_at\": \"2021-09-01 11:46:00\",\n\"updated_at\": \"2021-09-01 12:12:55\",\n\"formated_starts_at\": \" 11:45\",\n\"formated_ends_at\": \" 11:45\"\n}\n],\n\"selling_price_group\": [\n{\n\"id\": 2,\n\"variation_id\": 1,\n\"price_group_id\": 1,\n\"price_inc_tax\": \"140.0000\",\n\"created_at\": \"2020-06-09 00:23:31\",\n\"updated_at\": \"2020-06-09 00:23:31\"\n}\n]\n}\n]\n}\n],\n\"brand\": {\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"Levis\",\n\"description\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:19:47\",\n\"updated_at\": \"2018-01-03 21:19:47\"\n},\n\"unit\": {\n\"id\": 1,\n\"business_id\": 1,\n\"actual_name\": \"Pieces\",\n\"short_name\": \"Pc(s)\",\n\"allow_decimal\": 0,\n\"base_unit_id\": null,\n\"base_unit_multiplier\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 15:15:20\",\n\"updated_at\": \"2018-01-03 15:15:20\"\n},\n\"category\": {\n\"id\": 1,\n\"name\": \"Men's\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 0,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:06:34\",\n\"updated_at\": \"2018-01-03 21:06:34\"\n},\n\"sub_category\": {\n\"id\": 5,\n\"name\": \"Shirts\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 1,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:08:18\",\n\"updated_at\": \"2018-01-03 21:08:18\"\n},\n\"product_tax\": {\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"VAT@10%\",\n\"amount\": 10,\n\"is_tax_group\": 0,\n\"created_by\": 1,\n\"woocommerce_tax_rate_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:40:07\",\n\"updated_at\": \"2018-01-04 02:40:07\"\n},\n\"product_locations\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"location_id\": null,\n\"name\": \"Awesome Shop\",\n\"landmark\": \"Linking Street\",\n\"country\": \"USA\",\n\"state\": \"Arizona\",\n\"city\": \"Phoenix\",\n\"zip_code\": \"85001\",\n\"invoice_scheme_id\": 1,\n\"invoice_layout_id\": 1,\n\"selling_price_group_id\": null,\n\"print_receipt_on_invoice\": 1,\n\"receipt_printer_type\": \"browser\",\n\"printer_id\": null,\n\"mobile\": null,\n\"alternate_number\": null,\n\"email\": null,\n\"website\": null,\n\"featured_products\": [\n\"5\",\n\"71\"\n],\n\"is_active\": 1,\n\"default_payment_accounts\": \"{\\\"cash\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"1\\\"},\\\"card\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"3\\\"},\\\"cheque\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"2\\\"},\\\"bank_transfer\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"1\\\"},\\\"other\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"3\\\"},\\\"custom_pay_1\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"1\\\"},\\\"custom_pay_2\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"2\\\"},\\\"custom_pay_3\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"3\\\"}}\",\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:20\",\n\"updated_at\": \"2020-06-09 01:07:05\",\n\"pivot\": {\n\"product_id\": 2,\n\"location_id\": 1\n}\n}]\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/product?page=1\",\n\"last\": \"http:\/\/local.pos.com\/connector\/api\/product?page=32\",\n\"prev\": null,\n\"next\": \"http:\/\/local.pos.com\/connector\/api\/product?page=2\"\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/product\",\n\"per_page\": 10,\n\"to\": 10\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified product",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/product\/:id",
                            "query": [
                                {
                                    "key": "selling_price_group",
                                    "value": "architecto",
                                    "description": "(1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "send_lot_detail",
                                    "value": "architecto",
                                    "description": "Send lot details in each variation location details(1, 0)",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/product\/:id?selling_price_group=architecto&send_lot_detail=architecto",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the product."
                                },
                                {
                                    "id": "product",
                                    "key": "product",
                                    "value": "1",
                                    "description": "comma separated ids of products"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"name\": \"Men's Reverse Fleece Crew\",\n\"business_id\": 1,\n\"type\": \"single\",\n\"sub_unit_ids\": null,\n\"enable_stock\": 1,\n\"alert_quantity\": \"5.0000\",\n\"sku\": \"AS0001\",\n\"barcode_type\": \"C128\",\n\"expiry_period\": null,\n\"expiry_period_type\": null,\n\"enable_sr_no\": 0,\n\"weight\": null,\n\"product_custom_field1\": null,\n\"product_custom_field2\": null,\n\"product_custom_field3\": null,\n\"product_custom_field4\": null,\n\"image\": null,\n\"woocommerce_media_id\": null,\n\"product_description\": null,\n\"created_by\": 1,\n\"warranty_id\": null,\n\"is_inactive\": 0,\n\"repair_model_id\": null,\n\"not_for_selling\": 0,\n\"ecom_shipping_class_id\": null,\n\"ecom_active_in_store\": 1,\n\"woocommerce_product_id\": 356,\n\"woocommerce_disable_sync\": 0,\n\"image_url\": \"http:\/\/local.pos.com\/img\/default.png\",\n\"product_variations\": [\n{\n\"id\": 1,\n\"variation_template_id\": null,\n\"name\": \"DUMMY\",\n\"product_id\": 1,\n\"is_dummy\": 1,\n\"created_at\": \"2018-01-03 21:29:08\",\n\"updated_at\": \"2018-01-03 21:29:08\",\n\"variations\": [\n{\n\"id\": 1,\n\"name\": \"DUMMY\",\n\"product_id\": 1,\n\"sub_sku\": \"AS0001\",\n\"product_variation_id\": 1,\n\"woocommerce_variation_id\": null,\n\"variation_value_id\": null,\n\"default_purchase_price\": \"130.0000\",\n\"dpp_inc_tax\": \"143.0000\",\n\"profit_percent\": \"0.0000\",\n\"default_sell_price\": \"130.0000\",\n\"sell_price_inc_tax\": \"143.0000\",\n\"created_at\": \"2018-01-03 21:29:08\",\n\"updated_at\": \"2020-06-09 00:23:22\",\n\"deleted_at\": null,\n\"combo_variations\": null,\n\"variation_location_details\": [\n{\n\"id\": 56,\n\"product_id\": 1,\n\"product_variation_id\": 1,\n\"variation_id\": 1,\n\"location_id\": 1,\n\"qty_available\": \"20.0000\",\n\"created_at\": \"2020-06-08 23:46:40\",\n\"updated_at\": \"2020-06-08 23:46:40\"\n}\n],\n\"media\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"file_name\": \"1591686466_978227300_nn.jpeg\",\n\"description\": null,\n\"uploaded_by\": 9,\n\"model_type\": \"App\\\\Variation\",\n\"woocommerce_media_id\": null,\n\"model_id\": 1,\n\"created_at\": \"2020-06-09 00:07:46\",\n\"updated_at\": \"2020-06-09 00:07:46\",\n\"display_name\": \"nn.jpeg\",\n\"display_url\": \"http:\/\/local.pos.com\/uploads\/media\/1591686466_978227300_nn.jpeg\"\n}\n],\n\"discounts\": [\n{\n\"id\": 2,\n\"name\": \"FLAT 10%\",\n\"business_id\": 1,\n\"brand_id\": null,\n\"category_id\": null,\n\"location_id\": 1,\n\"priority\": 2,\n\"discount_type\": \"fixed\",\n\"discount_amount\": \"5.0000\",\n\"starts_at\": \"2021-09-01 11:45:00\",\n\"ends_at\": \"2021-09-30 11:45:00\",\n\"is_active\": 1,\n\"spg\": null,\n\"applicable_in_cg\": 1,\n\"created_at\": \"2021-09-01 11:46:00\",\n\"updated_at\": \"2021-09-01 12:12:55\",\n\"formated_starts_at\": \" 11:45\",\n\"formated_ends_at\": \" 11:45\"\n}\n],\n\"selling_price_group\": [\n{\n\"id\": 2,\n\"variation_id\": 1,\n\"price_group_id\": 1,\n\"price_inc_tax\": \"140.0000\",\n\"created_at\": \"2020-06-09 00:23:31\",\n\"updated_at\": \"2020-06-09 00:23:31\"\n}\n]\n}\n]\n}\n],\n\"brand\": {\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"Levis\",\n\"description\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:19:47\",\n\"updated_at\": \"2018-01-03 21:19:47\"\n},\n\"unit\": {\n\"id\": 1,\n\"business_id\": 1,\n\"actual_name\": \"Pieces\",\n\"short_name\": \"Pc(s)\",\n\"allow_decimal\": 0,\n\"base_unit_id\": null,\n\"base_unit_multiplier\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 15:15:20\",\n\"updated_at\": \"2018-01-03 15:15:20\"\n},\n\"category\": {\n\"id\": 1,\n\"name\": \"Men's\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 0,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:06:34\",\n\"updated_at\": \"2018-01-03 21:06:34\"\n},\n\"sub_category\": {\n\"id\": 5,\n\"name\": \"Shirts\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 1,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:08:18\",\n\"updated_at\": \"2018-01-03 21:08:18\"\n},\n\"product_tax\": {\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"VAT@10%\",\n\"amount\": 10,\n\"is_tax_group\": 0,\n\"created_by\": 1,\n\"woocommerce_tax_rate_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:40:07\",\n\"updated_at\": \"2018-01-04 02:40:07\"\n},\n\"product_locations\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"location_id\": null,\n\"name\": \"Awesome Shop\",\n\"landmark\": \"Linking Street\",\n\"country\": \"USA\",\n\"state\": \"Arizona\",\n\"city\": \"Phoenix\",\n\"zip_code\": \"85001\",\n\"invoice_scheme_id\": 1,\n\"invoice_layout_id\": 1,\n\"selling_price_group_id\": null,\n\"print_receipt_on_invoice\": 1,\n\"receipt_printer_type\": \"browser\",\n\"printer_id\": null,\n\"mobile\": null,\n\"alternate_number\": null,\n\"email\": null,\n\"website\": null,\n\"featured_products\": [\n\"5\",\n\"71\"\n],\n\"is_active\": 1,\n\"default_payment_accounts\": \"{\\\"cash\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"1\\\"},\\\"card\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"3\\\"},\\\"cheque\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"2\\\"},\\\"bank_transfer\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"1\\\"},\\\"other\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"3\\\"},\\\"custom_pay_1\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"1\\\"},\\\"custom_pay_2\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"2\\\"},\\\"custom_pay_3\\\":{\\\"is_enabled\\\":\\\"1\\\",\\\"account\\\":\\\"3\\\"}}\",\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:20\",\n\"updated_at\": \"2020-06-09 01:07:05\",\n\"pivot\": {\n\"product_id\": 2,\n\"location_id\": 1\n}\n}]\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List Selling Price Group",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/selling-price-group",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/selling-price-group"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"name\": \"Retail\",\n\"description\": null,\n\"business_id\": 1,\n\"is_active\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2020-10-21 04:30:06\",\n\"updated_at\": \"2020-11-16 18:23:15\"\n},\n{\n\"id\": 2,\n\"name\": \"Wholesale\",\n\"description\": null,\n\"business_id\": 1,\n\"is_active\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2020-10-21 04:30:21\",\n\"updated_at\": \"2020-11-16 18:23:00\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List Variations",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/variation\/:id",
                            "query": [
                                {
                                    "key": "product_id",
                                    "value": "architecto",
                                    "description": "Filter by comma separated products ids",
                                    "disabled": false
                                },
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "brand_id",
                                    "value": "architecto",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "category_id",
                                    "value": "architecto",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "sub_category_id",
                                    "value": "architecto",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "not_for_selling",
                                    "value": "architecto",
                                    "description": "Values: 0 or 1",
                                    "disabled": false
                                },
                                {
                                    "key": "name",
                                    "value": "architecto",
                                    "description": "Search term for product name",
                                    "disabled": false
                                },
                                {
                                    "key": "sku",
                                    "value": "architecto",
                                    "description": "Search term for product sku",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/variation\/:id?product_id=architecto&location_id=1&brand_id=architecto&category_id=architecto&sub_category_id=architecto&not_for_selling=architecto&name=architecto&sku=architecto&per_page=10",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "2",
                                    "description": "comma separated ids of variations"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"variation_id\": 1,\n\"variation_name\": \"\",\n\"sub_sku\": \"AS0001\",\n\"product_id\": 1,\n\"product_name\": \"Men's Reverse Fleece Crew\",\n\"sku\": \"AS0001\",\n\"type\": \"single\",\n\"business_id\": 1,\n\"barcode_type\": \"C128\",\n\"expiry_period\": null,\n\"expiry_period_type\": null,\n\"enable_sr_no\": 0,\n\"weight\": null,\n\"product_custom_field1\": null,\n\"product_custom_field2\": null,\n\"product_custom_field3\": null,\n\"product_custom_field4\": null,\n\"product_image\": \"1528728059_fleece_crew.jpg\",\n\"product_description\": null,\n\"warranty_id\": null,\n\"brand_id\": 1,\n\"brand_name\": \"Levis\",\n\"unit_id\": 1,\n\"enable_stock\": 1,\n\"not_for_selling\": 0,\n\"unit_name\": \"Pc(s)\",\n\"unit_allow_decimal\": 0,\n\"category_id\": 1,\n\"category\": \"Men's\",\n\"sub_category_id\": 5,\n\"sub_category\": \"Shirts\",\n\"tax_id\": 1,\n\"tax_type\": \"exclusive\",\n\"tax_name\": \"VAT@10%\",\n\"tax_amount\": 10,\n\"product_variation_id\": 1,\n\"default_purchase_price\": \"130.0000\",\n\"dpp_inc_tax\": \"143.0000\",\n\"profit_percent\": \"0.0000\",\n\"default_sell_price\": \"130.0000\",\n\"sell_price_inc_tax\": \"143.0000\",\n\"product_variation_name\": \"\",\n\"variation_location_details\": [],\n\"media\": [],\n\"selling_price_group\": [],\n\"product_image_url\": \"http:\/\/local.pos.com\/uploads\/img\/1528728059_fleece_crew.jpg\",\n\"product_locations\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"location_id\": null,\n\"name\": \"Awesome Shop\",\n\"landmark\": \"Linking Street\",\n\"country\": \"USA\",\n\"state\": \"Arizona\",\n\"city\": \"Phoenix\",\n\"zip_code\": \"85001\",\n\"invoice_scheme_id\": 1,\n\"invoice_layout_id\": 1,\n\"selling_price_group_id\": null,\n\"print_receipt_on_invoice\": 1,\n\"receipt_printer_type\": \"browser\",\n\"printer_id\": null,\n\"mobile\": null,\n\"alternate_number\": null,\n\"email\": null,\n\"website\": null,\n\"featured_products\": null,\n\"is_active\": 1,\n\"default_payment_accounts\": \"\",\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:20\",\n\"updated_at\": \"2019-12-11 04:53:39\",\n\"pivot\": {\n\"product_id\": 1,\n\"location_id\": 1\n}\n}\n]\n},\n{\n\"variation_id\": 2,\n\"variation_name\": \"28\",\n\"sub_sku\": \"AS0002-1\",\n\"product_id\": 2,\n\"product_name\": \"Levis Men's Slimmy Fit Jeans\",\n\"sku\": \"AS0002\",\n\"type\": \"variable\",\n\"business_id\": 1,\n\"barcode_type\": \"C128\",\n\"expiry_period\": null,\n\"expiry_period_type\": null,\n\"enable_sr_no\": 0,\n\"weight\": null,\n\"product_custom_field1\": null,\n\"product_custom_field2\": null,\n\"product_custom_field3\": null,\n\"product_custom_field4\": null,\n\"product_image\": \"1528727964_levis_jeans.jpg\",\n\"product_description\": null,\n\"warranty_id\": null,\n\"brand_id\": 1,\n\"brand_name\": \"Levis\",\n\"unit_id\": 1,\n\"enable_stock\": 1,\n\"not_for_selling\": 0,\n\"unit_name\": \"Pc(s)\",\n\"unit_allow_decimal\": 0,\n\"category_id\": 1,\n\"category\": \"Men's\",\n\"sub_category_id\": 4,\n\"sub_category\": \"Jeans\",\n\"tax_id\": 1,\n\"tax_type\": \"exclusive\",\n\"tax_name\": \"VAT@10%\",\n\"tax_amount\": 10,\n\"product_variation_id\": 2,\n\"default_purchase_price\": \"70.0000\",\n\"dpp_inc_tax\": \"77.0000\",\n\"profit_percent\": \"0.0000\",\n\"default_sell_price\": \"70.0000\",\n\"sell_price_inc_tax\": \"77.0000\",\n\"product_variation_name\": \"Waist Size\",\n\"variation_location_details\": [\n{\n\"id\": 1,\n\"product_id\": 2,\n\"product_variation_id\": 2,\n\"variation_id\": 2,\n\"location_id\": 1,\n\"qty_available\": \"50.0000\",\n\"created_at\": \"2018-01-06 06:57:11\",\n\"updated_at\": \"2020-08-04 04:11:27\"\n}\n],\n\"media\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"file_name\": \"1596701997_743693452_test.jpg\",\n\"description\": null,\n\"uploaded_by\": 9,\n\"model_type\": \"App\\\\Variation\",\n\"woocommerce_media_id\": null,\n\"model_id\": 2,\n\"created_at\": \"2020-08-06 13:49:57\",\n\"updated_at\": \"2020-08-06 13:49:57\",\n\"display_name\": \"test.jpg\",\n\"display_url\": \"http:\/\/local.pos.com\/uploads\/media\/1596701997_743693452_test.jpg\"\n}\n],\n\"selling_price_group\": [],\n\"product_image_url\": \"http:\/\/local.pos.com\/uploads\/img\/1528727964_levis_jeans.jpg\",\n\"product_locations\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"location_id\": null,\n\"name\": \"Awesome Shop\",\n\"landmark\": \"Linking Street\",\n\"country\": \"USA\",\n\"state\": \"Arizona\",\n\"city\": \"Phoenix\",\n\"zip_code\": \"85001\",\n\"invoice_scheme_id\": 1,\n\"invoice_layout_id\": 1,\n\"selling_price_group_id\": null,\n\"print_receipt_on_invoice\": 1,\n\"receipt_printer_type\": \"browser\",\n\"printer_id\": null,\n\"mobile\": null,\n\"alternate_number\": null,\n\"email\": null,\n\"website\": null,\n\"featured_products\": null,\n\"is_active\": 1,\n\"default_payment_accounts\": \"\",\n\"custom_field1\": null,\n\"custom_field2\": null,\n\"custom_field3\": null,\n\"custom_field4\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:20\",\n\"updated_at\": \"2019-12-11 04:53:39\",\n\"pivot\": {\n\"product_id\": 2,\n\"location_id\": 1\n}\n}\n],\n\"discounts\": [\n{\n\"id\": 2,\n\"name\": \"FLAT 10%\",\n\"business_id\": 1,\n\"brand_id\": null,\n\"category_id\": null,\n\"location_id\": 1,\n\"priority\": 2,\n\"discount_type\": \"fixed\",\n\"discount_amount\": \"5.0000\",\n\"starts_at\": \"2021-09-01 11:45:00\",\n\"ends_at\": \"2021-09-30 11:45:00\",\n\"is_active\": 1,\n\"spg\": null,\n\"applicable_in_cg\": 1,\n\"created_at\": \"2021-09-01 11:46:00\",\n\"updated_at\": \"2021-09-01 12:12:55\",\n\"formated_starts_at\": \" 11:45\",\n\"formated_ends_at\": \" 11:45\"\n}\n]\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/variation?page=1\",\n\"last\": null,\n\"prev\": null,\n\"next\": \"http:\/\/local.pos.com\/connector\/api\/variation?page=2\"\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/variation\",\n\"per_page\": \"2\",\n\"to\": 2\n}\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Sales management",
            "description": "",
            "item": [
                {
                    "name": "List sells",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/sell",
                            "query": [
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "id of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "contact_id",
                                    "value": "architecto",
                                    "description": "id of the customer",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "final",
                                    "description": "Sell status. Available values final, draft, quotation, proforma",
                                    "disabled": false
                                },
                                {
                                    "key": "payment_status",
                                    "value": "due%2Cpartial",
                                    "description": "Comma separated values of payment statuses. Available values due, partial, paid, overdue",
                                    "disabled": false
                                },
                                {
                                    "key": "start_date",
                                    "value": "2018-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "end_date",
                                    "value": "2018-06-25",
                                    "description": "format:Y-m-d",
                                    "disabled": false
                                },
                                {
                                    "key": "user_id",
                                    "value": "architecto",
                                    "description": "id of the user who created the sale",
                                    "disabled": false
                                },
                                {
                                    "key": "service_staff_id",
                                    "value": "architecto",
                                    "description": "id of the service staff assigned with the sale",
                                    "disabled": false
                                },
                                {
                                    "key": "shipping_status",
                                    "value": "ordered",
                                    "description": "Shipping Status of the sale ('ordered', 'packed', 'shipped', 'delivered', 'cancelled')",
                                    "disabled": false
                                },
                                {
                                    "key": "source",
                                    "value": "architecto",
                                    "description": "Source of the sale",
                                    "disabled": false
                                },
                                {
                                    "key": "only_subscriptions",
                                    "value": "architecto",
                                    "description": "Filter only subcription invoices (1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "send_purchase_details",
                                    "value": "architecto",
                                    "description": "Get purchase details of each sell line (1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by_date",
                                    "value": "desc",
                                    "description": "Sort sell list by date ('asc', 'desc')",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Total records per page. default: 10, Set -1 for no pagination",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/sell?location_id=1&contact_id=architecto&status=final&payment_status=due%2Cpartial&start_date=2018-06-25&end_date=2018-06-25&user_id=architecto&service_staff_id=architecto&shipping_status=ordered&source=architecto&only_subscriptions=architecto&send_purchase_details=architecto&order_by_date=desc&per_page=10"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 6,\n\"business_id\": 1,\n\"location_id\": 1,\n\"res_table_id\": null,\n\"res_waiter_id\": null,\n\"res_order_status\": null,\n\"type\": \"sell\",\n\"sub_type\": null,\n\"status\": \"final\",\n\"is_quotation\": 0,\n\"payment_status\": \"paid\",\n\"adjustment_type\": null,\n\"contact_id\": 4,\n\"customer_group_id\": null,\n\"invoice_no\": \"AS0001\",\n\"ref_no\": \"\",\n\"source\": null,\n\"subscription_no\": null,\n\"subscription_repeat_on\": null,\n\"transaction_date\": \"2018-04-10 13:23:21\",\n\"total_before_tax\": \"770.0000\",\n\"tax_id\": null,\n\"tax_amount\": \"0.0000\",\n\"discount_type\": \"percentage\",\n\"discount_amount\": \"0.0000\",\n\"rp_redeemed\": 0,\n\"rp_redeemed_amount\": \"0.0000\",\n\"shipping_details\": null,\n\"shipping_address\": null,\n\"shipping_status\": null,\n\"delivered_to\": null,\n\"shipping_charges\": \"0.0000\",\n\"additional_notes\": null,\n\"staff_note\": null,\n\"round_off_amount\": \"0.0000\",\n\"final_total\": \"770.0000\",\n\"expense_category_id\": null,\n\"expense_for\": null,\n\"commission_agent\": null,\n\"document\": null,\n\"is_direct_sale\": 0,\n\"is_suspend\": 0,\n\"exchange_rate\": \"1.000\",\n\"total_amount_recovered\": null,\n\"transfer_parent_id\": null,\n\"return_parent_id\": null,\n\"opening_stock_product_id\": null,\n\"created_by\": 1,\n\"import_batch\": null,\n\"import_time\": null,\n\"types_of_service_id\": null,\n\"packing_charge\": null,\n\"packing_charge_type\": null,\n\"service_custom_field_1\": null,\n\"service_custom_field_2\": null,\n\"service_custom_field_3\": null,\n\"service_custom_field_4\": null,\n\"mfg_parent_production_purchase_id\": null,\n\"mfg_wasted_units\": null,\n\"mfg_production_cost\": \"0.0000\",\n\"mfg_is_final\": 0,\n\"is_created_from_api\": 0,\n\"essentials_duration\": \"0.00\",\n\"essentials_duration_unit\": null,\n\"essentials_amount_per_unit_duration\": \"0.0000\",\n\"essentials_allowances\": null,\n\"essentials_deductions\": null,\n\"rp_earned\": 0,\n\"repair_completed_on\": null,\n\"repair_warranty_id\": null,\n\"repair_brand_id\": null,\n\"repair_status_id\": null,\n\"repair_model_id\": null,\n\"repair_defects\": null,\n\"repair_serial_no\": null,\n\"repair_updates_email\": 0,\n\"repair_updates_sms\": 0,\n\"repair_checklist\": null,\n\"repair_security_pwd\": null,\n\"repair_security_pattern\": null,\n\"repair_due_date\": null,\n\"repair_device_id\": null,\n\"order_addresses\": null,\n\"is_recurring\": 0,\n\"recur_interval\": null,\n\"recur_interval_type\": null,\n\"recur_repetitions\": null,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"invoice_token\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"pjt_project_id\": null,\n\"pjt_title\": null,\n\"woocommerce_order_id\": null,\n\"selling_price_group_id\": null,\n\"created_at\": \"2018-01-06 07:06:11\",\n\"updated_at\": \"2018-01-06 07:06:11\",\n\"sell_lines\": [\n{\n\"id\": 1,\n\"transaction_id\": 6,\n\"product_id\": 2,\n\"variation_id\": 3,\n\"quantity\": 10,\n\"mfg_waste_percent\": \"0.0000\",\n\"quantity_returned\": \"0.0000\",\n\"unit_price_before_discount\": \"70.0000\",\n\"unit_price\": \"70.0000\",\n\"line_discount_type\": null,\n\"line_discount_amount\": \"0.0000\",\n\"unit_price_inc_tax\": \"77.0000\",\n\"item_tax\": \"7.0000\",\n\"tax_id\": 1,\n\"discount_id\": null,\n\"lot_no_line_id\": null,\n\"sell_line_note\": null,\n\"res_service_staff_id\": null,\n\"res_line_order_status\": null,\n\"woocommerce_line_items_id\": null,\n\"parent_sell_line_id\": null,\n\"children_type\": \"\",\n\"sub_unit_id\": null,\n\"created_at\": \"2018-01-06 07:06:11\",\n\"updated_at\": \"2018-01-06 07:06:11\"\n}\n],\n\"payment_lines\": [\n{\n\"id\": 1,\n\"transaction_id\": 6,\n\"business_id\": null,\n\"is_return\": 0,\n\"amount\": \"770.0000\",\n\"method\": \"cash\",\n\"transaction_no\": null,\n\"card_transaction_number\": null,\n\"card_number\": null,\n\"card_type\": \"visa\",\n\"card_holder_name\": null,\n\"card_month\": null,\n\"card_year\": null,\n\"card_security\": null,\n\"cheque_number\": null,\n\"bank_account_number\": null,\n\"paid_on\": \"2018-01-09 17:30:35\",\n\"created_by\": 1,\n\"payment_for\": null,\n\"parent_id\": null,\n\"note\": null,\n\"document\": null,\n\"payment_ref_no\": null,\n\"account_id\": null,\n\"created_at\": \"2018-01-06 01:36:11\",\n\"updated_at\": \"2018-01-06 01:36:11\"\n}\n],\n\"invoice_url\": \"http:\/\/local.pos.com\/invoice\/6dfd77eb80f4976b456128e7f1311c9f\",\n\"payment_link\": \"http:\/\/local.pos.com\/pay\/6dfd77eb80f4976b456128e7f1311c9f\"\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/sell?page=1\",\n\"last\": \"http:\/\/local.pos.com\/connector\/api\/sell?page=6\",\n\"prev\": null,\n\"next\": \"http:\/\/local.pos.com\/connector\/api\/sell?page=2\"\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/sell\",\n\"per_page\": 10,\n\"to\": 10\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create sell",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/sell",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/sell"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 6,\n\"business_id\": 1,\n\"location_id\": 1,\n\"res_table_id\": null,\n\"res_waiter_id\": null,\n\"res_order_status\": null,\n\"type\": \"sell\",\n\"sub_type\": null,\n\"status\": \"final\",\n\"is_quotation\": 0,\n\"payment_status\": \"paid\",\n\"adjustment_type\": null,\n\"contact_id\": 4,\n\"customer_group_id\": null,\n\"invoice_no\": \"AS0001\",\n\"ref_no\": \"\",\n\"source\": null,\n\"subscription_no\": null,\n\"subscription_repeat_on\": null,\n\"transaction_date\": \"2018-04-10 13:23:21\",\n\"total_before_tax\": \"770.0000\",\n\"tax_id\": null,\n\"tax_amount\": \"0.0000\",\n\"discount_type\": \"percentage\",\n\"discount_amount\": \"0.0000\",\n\"rp_redeemed\": 0,\n\"rp_redeemed_amount\": \"0.0000\",\n\"shipping_details\": null,\n\"shipping_address\": null,\n\"shipping_status\": null,\n\"delivered_to\": null,\n\"shipping_charges\": \"0.0000\",\n\"additional_notes\": null,\n\"staff_note\": null,\n\"round_off_amount\": \"0.0000\",\n\"final_total\": \"770.0000\",\n\"expense_category_id\": null,\n\"expense_for\": null,\n\"commission_agent\": null,\n\"document\": null,\n\"is_direct_sale\": 0,\n\"is_suspend\": 0,\n\"exchange_rate\": \"1.000\",\n\"total_amount_recovered\": null,\n\"transfer_parent_id\": null,\n\"return_parent_id\": null,\n\"opening_stock_product_id\": null,\n\"created_by\": 1,\n\"import_batch\": null,\n\"import_time\": null,\n\"types_of_service_id\": null,\n\"packing_charge\": null,\n\"packing_charge_type\": null,\n\"service_custom_field_1\": null,\n\"service_custom_field_2\": null,\n\"service_custom_field_3\": null,\n\"service_custom_field_4\": null,\n\"mfg_parent_production_purchase_id\": null,\n\"mfg_wasted_units\": null,\n\"mfg_production_cost\": \"0.0000\",\n\"mfg_is_final\": 0,\n\"is_created_from_api\": 0,\n\"essentials_duration\": \"0.00\",\n\"essentials_duration_unit\": null,\n\"essentials_amount_per_unit_duration\": \"0.0000\",\n\"essentials_allowances\": null,\n\"essentials_deductions\": null,\n\"rp_earned\": 0,\n\"repair_completed_on\": null,\n\"repair_warranty_id\": null,\n\"repair_brand_id\": null,\n\"repair_status_id\": null,\n\"repair_model_id\": null,\n\"repair_defects\": null,\n\"repair_serial_no\": null,\n\"repair_updates_email\": 0,\n\"repair_updates_sms\": 0,\n\"repair_checklist\": null,\n\"repair_security_pwd\": null,\n\"repair_security_pattern\": null,\n\"repair_due_date\": null,\n\"repair_device_id\": null,\n\"order_addresses\": null,\n\"is_recurring\": 0,\n\"recur_interval\": null,\n\"recur_interval_type\": null,\n\"recur_repetitions\": null,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"invoice_token\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"pjt_project_id\": null,\n\"pjt_title\": null,\n\"woocommerce_order_id\": null,\n\"selling_price_group_id\": null,\n\"created_at\": \"2018-01-06 07:06:11\",\n\"updated_at\": \"2018-01-06 07:06:11\",\n\"invoice_url\": \"http:\/\/local.pos.com\/invoice\/6dfd77eb80f4976b456128e7f1311c9f\",\n\"payment_link\": \"http:\/\/local.pos.com\/pay\/6dfd77eb80f4976b456128e7f1311c9f\",\n\"sell_lines\": [\n{\n\"id\": 1,\n\"transaction_id\": 6,\n\"product_id\": 2,\n\"variation_id\": 3,\n\"quantity\": 10,\n\"mfg_waste_percent\": \"0.0000\",\n\"quantity_returned\": \"0.0000\",\n\"unit_price_before_discount\": \"70.0000\",\n\"unit_price\": \"70.0000\",\n\"line_discount_type\": null,\n\"line_discount_amount\": \"0.0000\",\n\"unit_price_inc_tax\": \"77.0000\",\n\"item_tax\": \"7.0000\",\n\"tax_id\": 1,\n\"discount_id\": null,\n\"lot_no_line_id\": null,\n\"sell_line_note\": null,\n\"res_service_staff_id\": null,\n\"res_line_order_status\": null,\n\"woocommerce_line_items_id\": null,\n\"parent_sell_line_id\": null,\n\"children_type\": \"\",\n\"sub_unit_id\": null,\n\"created_at\": \"2018-01-06 07:06:11\",\n\"updated_at\": \"2018-01-06 07:06:11\"\n}\n],\n\"payment_lines\": [\n{\n\"id\": 1,\n\"transaction_id\": 6,\n\"business_id\": null,\n\"is_return\": 0,\n\"amount\": \"770.0000\",\n\"method\": \"cash\",\n\"transaction_no\": null,\n\"card_transaction_number\": null,\n\"card_number\": null,\n\"card_type\": \"visa\",\n\"card_holder_name\": null,\n\"card_month\": null,\n\"card_year\": null,\n\"card_security\": null,\n\"cheque_number\": null,\n\"bank_account_number\": null,\n\"paid_on\": \"2018-01-09 17:30:35\",\n\"created_by\": 1,\n\"payment_for\": null,\n\"parent_id\": null,\n\"note\": null,\n\"document\": null,\n\"payment_ref_no\": null,\n\"account_id\": null,\n\"created_at\": \"2018-01-06 01:36:11\",\n\"updated_at\": \"2018-01-06 01:36:11\"\n}\n]\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified sell",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/sell\/:id",
                            "query": [
                                {
                                    "key": "send_purchase_details",
                                    "value": "architecto",
                                    "description": "Get purchase details of each sell line (1, 0)",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/sell\/:id?send_purchase_details=architecto",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the sell."
                                },
                                {
                                    "id": "sell",
                                    "key": "sell",
                                    "value": "55",
                                    "description": "comma separated ids of the sells"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 55,\n\"business_id\": 1,\n\"location_id\": 1,\n\"res_table_id\": 5,\n\"res_waiter_id\": null,\n\"res_order_status\": null,\n\"type\": \"sell\",\n\"sub_type\": null,\n\"status\": \"final\",\n\"is_quotation\": 0,\n\"payment_status\": \"paid\",\n\"adjustment_type\": null,\n\"contact_id\": 1,\n\"customer_group_id\": null,\n\"invoice_no\": \"AS0007\",\n\"ref_no\": \"\",\n\"source\": null,\n\"subscription_no\": null,\n\"subscription_repeat_on\": null,\n\"transaction_date\": \"2020-06-04 23:29:36\",\n\"total_before_tax\": \"437.5000\",\n\"tax_id\": 1,\n\"tax_amount\": \"39.3750\",\n\"discount_type\": \"percentage\",\n\"discount_amount\": \"10.0000\",\n\"rp_redeemed\": 0,\n\"rp_redeemed_amount\": \"0.0000\",\n\"shipping_details\": \"Express Delivery\",\n\"shipping_address\": null,\n\"shipping_status\": \"ordered\",\n\"delivered_to\": \"Mr Robin\",\n\"shipping_charges\": \"10.0000\",\n\"additional_notes\": null,\n\"staff_note\": null,\n\"round_off_amount\": \"0.0000\",\n\"final_total\": \"453.1300\",\n\"expense_category_id\": null,\n\"expense_for\": null,\n\"commission_agent\": null,\n\"document\": null,\n\"is_direct_sale\": 0,\n\"is_suspend\": 0,\n\"exchange_rate\": \"1.000\",\n\"total_amount_recovered\": null,\n\"transfer_parent_id\": null,\n\"return_parent_id\": null,\n\"opening_stock_product_id\": null,\n\"created_by\": 9,\n\"import_batch\": null,\n\"import_time\": null,\n\"types_of_service_id\": 1,\n\"packing_charge\": \"10.0000\",\n\"packing_charge_type\": \"fixed\",\n\"service_custom_field_1\": null,\n\"service_custom_field_2\": null,\n\"service_custom_field_3\": null,\n\"service_custom_field_4\": null,\n\"mfg_parent_production_purchase_id\": null,\n\"mfg_wasted_units\": null,\n\"mfg_production_cost\": \"0.0000\",\n\"mfg_is_final\": 0,\n\"is_created_from_api\": 0,\n\"essentials_duration\": \"0.00\",\n\"essentials_duration_unit\": null,\n\"essentials_amount_per_unit_duration\": \"0.0000\",\n\"essentials_allowances\": null,\n\"essentials_deductions\": null,\n\"rp_earned\": 0,\n\"repair_completed_on\": null,\n\"repair_warranty_id\": null,\n\"repair_brand_id\": null,\n\"repair_status_id\": null,\n\"repair_model_id\": null,\n\"repair_defects\": null,\n\"repair_serial_no\": null,\n\"repair_updates_email\": 0,\n\"repair_updates_sms\": 0,\n\"repair_checklist\": null,\n\"repair_security_pwd\": null,\n\"repair_security_pattern\": null,\n\"repair_due_date\": null,\n\"repair_device_id\": null,\n\"order_addresses\": null,\n\"is_recurring\": 0,\n\"recur_interval\": null,\n\"recur_interval_type\": \"days\",\n\"recur_repetitions\": 0,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"invoice_token\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"pjt_project_id\": null,\n\"pjt_title\": null,\n\"woocommerce_order_id\": null,\n\"selling_price_group_id\": 0,\n\"created_at\": \"2020-06-04 23:29:36\",\n\"updated_at\": \"2020-06-04 23:29:36\",\n\"sell_lines\": [\n{\n\"id\": 38,\n\"transaction_id\": 55,\n\"product_id\": 17,\n\"variation_id\": 58,\n\"quantity\": 1,\n\"mfg_waste_percent\": \"0.0000\",\n\"quantity_returned\": \"0.0000\",\n\"unit_price_before_discount\": \"437.5000\",\n\"unit_price\": \"437.5000\",\n\"line_discount_type\": \"fixed\",\n\"line_discount_amount\": \"0.0000\",\n\"unit_price_inc_tax\": \"437.5000\",\n\"item_tax\": \"0.0000\",\n\"tax_id\": null,\n\"discount_id\": null,\n\"lot_no_line_id\": null,\n\"sell_line_note\": \"\",\n\"res_service_staff_id\": null,\n\"res_line_order_status\": null,\n\"woocommerce_line_items_id\": null,\n\"parent_sell_line_id\": null,\n\"children_type\": \"\",\n\"sub_unit_id\": null,\n\"created_at\": \"2020-06-04 23:29:36\",\n\"updated_at\": \"2020-06-04 23:29:36\"\n}\n],\n\"payment_lines\": [\n{\n\"id\": 37,\n\"transaction_id\": 55,\n\"business_id\": 1,\n\"is_return\": 0,\n\"amount\": \"453.1300\",\n\"method\": \"cash\",\n\"transaction_no\": null,\n\"card_transaction_number\": null,\n\"card_number\": null,\n\"card_type\": \"credit\",\n\"card_holder_name\": null,\n\"card_month\": null,\n\"card_year\": null,\n\"card_security\": null,\n\"cheque_number\": null,\n\"bank_account_number\": null,\n\"paid_on\": \"2020-06-04 23:29:36\",\n\"created_by\": 9,\n\"payment_for\": 1,\n\"parent_id\": null,\n\"note\": null,\n\"document\": null,\n\"payment_ref_no\": \"SP2020\/0002\",\n\"account_id\": null,\n\"created_at\": \"2020-06-04 23:29:36\",\n\"updated_at\": \"2020-06-04 23:29:36\"\n}\n],\n\n\"invoice_url\": \"http:\/\/local.pos.com\/invoice\/6dfd77eb80f4976b456128e7f1311c9f\",\n\"payment_link\": \"http:\/\/local.pos.com\/pay\/6dfd77eb80f4976b456128e7f1311c9f\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update sell",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/sell\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/sell\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the sell."
                                },
                                {
                                    "id": "sell",
                                    "key": "sell",
                                    "value": "6",
                                    "description": "id of sell to update"
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"contact_id\":16,\"transaction_date\":\"2020-5-7 15:20:22\",\"status\":\"final\",\"sub_status\":null,\"is_quotation\":true,\"tax_rate_id\":16,\"discount_amount\":10,\"discount_type\":\"fixed\",\"sale_note\":\"architecto\",\"source\":\"architecto\",\"staff_note\":\"architecto\",\"is_suspend\":false,\"commission_agent\":16,\"shipping_details\":\"Express Delivery\",\"shipping_address\":\"architecto\",\"shipping_status\":\"ordered\",\"delivered_to\":\"Mr Robin\",\"shipping_charges\":10,\"packing_charge\":10,\"exchange_rate\":1,\"selling_price_group_id\":16,\"pay_term_number\":16,\"pay_term_type\":\"months\",\"is_recurring\":0,\"recur_interval\":16,\"recur_interval_type\":\"days\",\"subscription_repeat_on\":7,\"subscription_no\":\"architecto\",\"recur_repetitions\":16,\"rp_redeemed\":16,\"rp_redeemed_amount\":13.5,\"types_of_service_id\":16,\"service_custom_field_1\":\"architecto\",\"service_custom_field_2\":\"architecto\",\"service_custom_field_3\":\"architecto\",\"service_custom_field_4\":\"architecto\",\"service_custom_field_5\":\"architecto\",\"service_custom_field_6\":\"architecto\",\"round_off_amount\":4326.41688,\"table_id\":16,\"service_staff_id\":16,\"change_return\":0,\"change_return_id\":16,\"products\":[\"architecto\"],\"payments\":[\"architecto\"]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"id\": 91,\n\"business_id\": 1,\n\"location_id\": 1,\n\"res_table_id\": null,\n\"res_waiter_id\": null,\n\"res_order_status\": null,\n\"type\": \"sell\",\n\"sub_type\": null,\n\"status\": \"final\",\n\"is_quotation\": 0,\n\"payment_status\": \"paid\",\n\"adjustment_type\": null,\n\"contact_id\": 1,\n\"customer_group_id\": 1,\n\"invoice_no\": \"AS0020\",\n\"ref_no\": \"\",\n\"source\": null,\n\"subscription_no\": null,\n\"subscription_repeat_on\": null,\n\"transaction_date\": \"25-09-2020 15:22\",\n\"total_before_tax\": 962.5,\n\"tax_id\": null,\n\"tax_amount\": 0,\n\"discount_type\": \"fixed\",\n\"discount_amount\": \"19.5000\",\n\"rp_redeemed\": 0,\n\"rp_redeemed_amount\": \"0.0000\",\n\"shipping_details\": null,\n\"shipping_address\": null,\n\"shipping_status\": null,\n\"delivered_to\": null,\n\"shipping_charges\": \"0.0000\",\n\"additional_notes\": null,\n\"staff_note\": null,\n\"round_off_amount\": \"0.0000\",\n\"final_total\": 943,\n\"expense_category_id\": null,\n\"expense_for\": null,\n\"commission_agent\": null,\n\"document\": null,\n\"is_direct_sale\": 0,\n\"is_suspend\": 0,\n\"exchange_rate\": \"1.000\",\n\"total_amount_recovered\": null,\n\"transfer_parent_id\": null,\n\"return_parent_id\": null,\n\"opening_stock_product_id\": null,\n\"created_by\": 9,\n\"import_batch\": null,\n\"import_time\": null,\n\"types_of_service_id\": null,\n\"packing_charge\": \"0.0000\",\n\"packing_charge_type\": null,\n\"service_custom_field_1\": null,\n\"service_custom_field_2\": null,\n\"service_custom_field_3\": null,\n\"service_custom_field_4\": null,\n\"mfg_parent_production_purchase_id\": null,\n\"mfg_wasted_units\": null,\n\"mfg_production_cost\": \"0.0000\",\n\"mfg_production_cost_type\": \"percentage\",\n\"mfg_is_final\": 0,\n\"is_created_from_api\": 0,\n\"essentials_duration\": \"0.00\",\n\"essentials_duration_unit\": null,\n\"essentials_amount_per_unit_duration\": \"0.0000\",\n\"essentials_allowances\": null,\n\"essentials_deductions\": null,\n\"rp_earned\": 0,\n\"repair_completed_on\": null,\n\"repair_warranty_id\": null,\n\"repair_brand_id\": null,\n\"repair_status_id\": null,\n\"repair_model_id\": null,\n\"repair_job_sheet_id\": null,\n\"repair_defects\": null,\n\"repair_serial_no\": null,\n\"repair_checklist\": null,\n\"repair_security_pwd\": null,\n\"repair_security_pattern\": null,\n\"repair_due_date\": null,\n\"repair_device_id\": null,\n\"repair_updates_notif\": 0,\n\"order_addresses\": null,\n\"is_recurring\": 0,\n\"recur_interval\": 1,\n\"recur_interval_type\": \"days\",\n\"recur_repetitions\": 0,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"invoice_token\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"pjt_project_id\": null,\n\"pjt_title\": null,\n\"woocommerce_order_id\": null,\n\"selling_price_group_id\": 0,\n\"created_at\": \"2020-09-23 20:16:19\",\n\"updated_at\": \"2020-09-25 17:57:08\",\n\"payment_lines\": [\n{\n\"id\": 55,\n\"transaction_id\": 91,\n\"business_id\": 1,\n\"is_return\": 0,\n\"amount\": \"461.7500\",\n\"method\": \"cash\",\n\"transaction_no\": null,\n\"card_transaction_number\": null,\n\"card_number\": null,\n\"card_type\": \"credit\",\n\"card_holder_name\": null,\n\"card_month\": null,\n\"card_year\": null,\n\"card_security\": null,\n\"cheque_number\": null,\n\"bank_account_number\": null,\n\"paid_on\": \"2020-09-23 20:16:19\",\n\"created_by\": 9,\n\"is_advance\": 0,\n\"payment_for\": 1,\n\"parent_id\": null,\n\"note\": null,\n\"document\": null,\n\"payment_ref_no\": \"SP2020\/0018\",\n\"account_id\": null,\n\"created_at\": \"2020-09-23 20:16:19\",\n\"updated_at\": \"2020-09-23 20:16:19\"\n}\n],\n\"invoice_url\": \"http:\/\/local.pos.com\/invoice\/6dfd77eb80f4976b456128e7f1311c9f\",\n\"payment_link\": \"http:\/\/local.pos.com\/pay\/6dfd77eb80f4976b456128e7f1311c9f\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete Sell",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/sell\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/sell\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the sell."
                                },
                                {
                                    "id": "sell",
                                    "key": "sell",
                                    "value": "architecto",
                                    "description": "id of the sell to be deleted"
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Add Sell Return",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/sell-return",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/sell-return"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"transaction_id\":16,\"transaction_date\":\"2020-5-7 15:20:22\",\"invoice_no\":\"architecto\",\"discount_amount\":10,\"discount_type\":\"fixed\",\"products\":[\"architecto\"]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"id\": 159,\n\"business_id\": 1,\n\"location_id\": 1,\n\"res_table_id\": null,\n\"res_waiter_id\": null,\n\"res_order_status\": null,\n\"type\": \"sell_return\",\n\"sub_type\": null,\n\"status\": \"final\",\n\"is_quotation\": 0,\n\"payment_status\": \"paid\",\n\"adjustment_type\": null,\n\"contact_id\": 1,\n\"customer_group_id\": null,\n\"invoice_no\": \"CN2020\/0005\",\n\"ref_no\": null,\n\"subscription_no\": null,\n\"subscription_repeat_on\": null,\n\"transaction_date\": \"2020-11-17 00:00:00\",\n\"total_before_tax\": 3,\n\"tax_id\": null,\n\"tax_amount\": 0,\n\"discount_type\": \"percentage\",\n\"discount_amount\": 12,\n\"rp_redeemed\": 0,\n\"rp_redeemed_amount\": \"0.0000\",\n\"shipping_details\": null,\n\"shipping_address\": null,\n\"shipping_status\": null,\n\"delivered_to\": null,\n\"shipping_charges\": \"0.0000\",\n\"additional_notes\": null,\n\"staff_note\": null,\n\"round_off_amount\": \"0.0000\",\n\"final_total\": 2.64,\n\"expense_category_id\": null,\n\"expense_for\": null,\n\"commission_agent\": null,\n\"document\": null,\n\"is_direct_sale\": 0,\n\"is_suspend\": 0,\n\"exchange_rate\": \"1.000\",\n\"total_amount_recovered\": null,\n\"transfer_parent_id\": null,\n\"return_parent_id\": 157,\n\"opening_stock_product_id\": null,\n\"created_by\": 9,\n\"import_batch\": null,\n\"import_time\": null,\n\"types_of_service_id\": null,\n\"packing_charge\": null,\n\"packing_charge_type\": null,\n\"service_custom_field_1\": null,\n\"service_custom_field_2\": null,\n\"service_custom_field_3\": null,\n\"service_custom_field_4\": null,\n\"mfg_parent_production_purchase_id\": null,\n\"mfg_wasted_units\": null,\n\"mfg_production_cost\": \"0.0000\",\n\"mfg_production_cost_type\": \"percentage\",\n\"mfg_is_final\": 0,\n\"is_created_from_api\": 0,\n\"essentials_duration\": \"0.00\",\n\"essentials_duration_unit\": null,\n\"essentials_amount_per_unit_duration\": \"0.0000\",\n\"essentials_allowances\": null,\n\"essentials_deductions\": null,\n\"rp_earned\": 0,\n\"repair_completed_on\": null,\n\"repair_warranty_id\": null,\n\"repair_brand_id\": null,\n\"repair_status_id\": null,\n\"repair_model_id\": null,\n\"repair_job_sheet_id\": null,\n\"repair_defects\": null,\n\"repair_serial_no\": null,\n\"repair_checklist\": null,\n\"repair_security_pwd\": null,\n\"repair_security_pattern\": null,\n\"repair_due_date\": null,\n\"repair_device_id\": null,\n\"repair_updates_notif\": 0,\n\"order_addresses\": null,\n\"is_recurring\": 0,\n\"recur_interval\": null,\n\"recur_interval_type\": null,\n\"recur_repetitions\": null,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"invoice_token\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"pjt_project_id\": null,\n\"pjt_title\": null,\n\"woocommerce_order_id\": null,\n\"selling_price_group_id\": null,\n\"created_at\": \"2020-11-17 12:05:11\",\n\"updated_at\": \"2020-11-17 13:22:09\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List Sell Return",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/list-sell-return",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/list-sell-return",
                            "variable": [
                                {
                                    "id": "sell_id",
                                    "key": "sell_id",
                                    "value": "architecto",
                                    "description": "Id of the sell for which return is added"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 159,\n\"business_id\": 1,\n\"location_id\": 1,\n\"res_table_id\": null,\n\"res_waiter_id\": null,\n\"res_order_status\": null,\n\"type\": \"sell_return\",\n\"sub_type\": null,\n\"status\": \"final\",\n\"is_quotation\": 0,\n\"payment_status\": \"partial\",\n\"adjustment_type\": null,\n\"contact_id\": 1,\n\"customer_group_id\": null,\n\"invoice_no\": \"CN2020\/0005\",\n\"ref_no\": null,\n\"subscription_no\": null,\n\"subscription_repeat_on\": null,\n\"transaction_date\": \"2020-11-17 00:00:00\",\n\"total_before_tax\": \"3.0000\",\n\"tax_id\": null,\n\"tax_amount\": \"0.0000\",\n\"discount_type\": \"percentage\",\n\"discount_amount\": \"12.0000\",\n\"rp_redeemed\": 0,\n\"rp_redeemed_amount\": \"0.0000\",\n\"shipping_details\": null,\n\"shipping_address\": null,\n\"shipping_status\": null,\n\"delivered_to\": null,\n\"shipping_charges\": \"0.0000\",\n\"additional_notes\": null,\n\"staff_note\": null,\n\"round_off_amount\": \"0.0000\",\n\"final_total\": \"2.6400\",\n\"expense_category_id\": null,\n\"expense_for\": null,\n\"commission_agent\": null,\n\"document\": null,\n\"is_direct_sale\": 0,\n\"is_suspend\": 0,\n\"exchange_rate\": \"1.000\",\n\"total_amount_recovered\": null,\n\"transfer_parent_id\": null,\n\"return_parent_id\": 157,\n\"opening_stock_product_id\": null,\n\"created_by\": 9,\n\"import_batch\": null,\n\"import_time\": null,\n\"types_of_service_id\": null,\n\"packing_charge\": null,\n\"packing_charge_type\": null,\n\"service_custom_field_1\": null,\n\"service_custom_field_2\": null,\n\"service_custom_field_3\": null,\n\"service_custom_field_4\": null,\n\"mfg_parent_production_purchase_id\": null,\n\"mfg_wasted_units\": null,\n\"mfg_production_cost\": \"0.0000\",\n\"mfg_production_cost_type\": \"percentage\",\n\"mfg_is_final\": 0,\n\"is_created_from_api\": 0,\n\"essentials_duration\": \"0.00\",\n\"essentials_duration_unit\": null,\n\"essentials_amount_per_unit_duration\": \"0.0000\",\n\"essentials_allowances\": null,\n\"essentials_deductions\": null,\n\"rp_earned\": 0,\n\"repair_completed_on\": null,\n\"repair_warranty_id\": null,\n\"repair_brand_id\": null,\n\"repair_status_id\": null,\n\"repair_model_id\": null,\n\"repair_job_sheet_id\": null,\n\"repair_defects\": null,\n\"repair_serial_no\": null,\n\"repair_checklist\": null,\n\"repair_security_pwd\": null,\n\"repair_security_pattern\": null,\n\"repair_due_date\": null,\n\"repair_device_id\": null,\n\"repair_updates_notif\": 0,\n\"order_addresses\": null,\n\"is_recurring\": 0,\n\"recur_interval\": null,\n\"recur_interval_type\": null,\n\"recur_repetitions\": null,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"invoice_token\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"pjt_project_id\": null,\n\"pjt_title\": null,\n\"woocommerce_order_id\": null,\n\"selling_price_group_id\": null,\n\"created_at\": \"2020-11-17 12:05:11\",\n\"updated_at\": \"2020-11-17 13:22:09\",\n\"payment_lines\": [\n{\n\"id\": 126,\n\"transaction_id\": 159,\n\"business_id\": 1,\n\"is_return\": 0,\n\"amount\": \"1.8000\",\n\"method\": \"cash\",\n\"transaction_no\": null,\n\"card_transaction_number\": null,\n\"card_number\": null,\n\"card_type\": \"credit\",\n\"card_holder_name\": null,\n\"card_month\": null,\n\"card_year\": null,\n\"card_security\": null,\n\"cheque_number\": null,\n\"bank_account_number\": null,\n\"paid_on\": \"2020-11-17 12:05:00\",\n\"created_by\": 9,\n\"is_advance\": 0,\n\"payment_for\": 1,\n\"parent_id\": null,\n\"note\": null,\n\"document\": null,\n\"payment_ref_no\": \"SP2020\/0078\",\n\"account_id\": null,\n\"created_at\": \"2020-11-17 12:05:58\",\n\"updated_at\": \"2020-11-17 12:05:58\"\n}\n],\n\"return_parent_sell\": {\n\"id\": 157,\n\"business_id\": 1,\n\"location_id\": 1,\n\"res_table_id\": null,\n\"res_waiter_id\": null,\n\"res_order_status\": null,\n\"type\": \"sell\",\n\"sub_type\": null,\n\"status\": \"final\",\n\"is_quotation\": 0,\n\"payment_status\": \"paid\",\n\"adjustment_type\": null,\n\"contact_id\": 1,\n\"customer_group_id\": null,\n\"invoice_no\": \"AS0073\",\n\"ref_no\": \"\",\n\"subscription_no\": null,\n\"subscription_repeat_on\": null,\n\"transaction_date\": \"2020-11-13 12:42:17\",\n\"total_before_tax\": \"6.2500\",\n\"tax_id\": null,\n\"tax_amount\": \"0.0000\",\n\"discount_type\": \"percentage\",\n\"discount_amount\": \"10.0000\",\n\"rp_redeemed\": 0,\n\"rp_redeemed_amount\": \"0.0000\",\n\"shipping_details\": null,\n\"shipping_address\": null,\n\"shipping_status\": null,\n\"delivered_to\": null,\n\"shipping_charges\": \"0.0000\",\n\"additional_notes\": null,\n\"staff_note\": null,\n\"round_off_amount\": \"0.0000\",\n\"final_total\": \"5.6300\",\n\"expense_category_id\": null,\n\"expense_for\": null,\n\"commission_agent\": null,\n\"document\": null,\n\"is_direct_sale\": 0,\n\"is_suspend\": 0,\n\"exchange_rate\": \"1.000\",\n\"total_amount_recovered\": null,\n\"transfer_parent_id\": null,\n\"return_parent_id\": null,\n\"opening_stock_product_id\": null,\n\"created_by\": 9,\n\"import_batch\": null,\n\"import_time\": null,\n\"types_of_service_id\": null,\n\"packing_charge\": \"0.0000\",\n\"packing_charge_type\": null,\n\"service_custom_field_1\": null,\n\"service_custom_field_2\": null,\n\"service_custom_field_3\": null,\n\"service_custom_field_4\": null,\n\"mfg_parent_production_purchase_id\": null,\n\"mfg_wasted_units\": null,\n\"mfg_production_cost\": \"0.0000\",\n\"mfg_production_cost_type\": \"percentage\",\n\"mfg_is_final\": 0,\n\"is_created_from_api\": 0,\n\"essentials_duration\": \"0.00\",\n\"essentials_duration_unit\": null,\n\"essentials_amount_per_unit_duration\": \"0.0000\",\n\"essentials_allowances\": null,\n\"essentials_deductions\": null,\n\"rp_earned\": 0,\n\"repair_completed_on\": null,\n\"repair_warranty_id\": null,\n\"repair_brand_id\": null,\n\"repair_status_id\": null,\n\"repair_model_id\": null,\n\"repair_job_sheet_id\": null,\n\"repair_defects\": null,\n\"repair_serial_no\": null,\n\"repair_checklist\": null,\n\"repair_security_pwd\": null,\n\"repair_security_pattern\": null,\n\"repair_due_date\": null,\n\"repair_device_id\": null,\n\"repair_updates_notif\": 0,\n\"order_addresses\": null,\n\"is_recurring\": 0,\n\"recur_interval\": 1,\n\"recur_interval_type\": \"days\",\n\"recur_repetitions\": 0,\n\"recur_stopped_on\": null,\n\"recur_parent_id\": null,\n\"invoice_token\": null,\n\"pay_term_number\": null,\n\"pay_term_type\": null,\n\"pjt_project_id\": null,\n\"pjt_title\": null,\n\"woocommerce_order_id\": null,\n\"selling_price_group_id\": 0,\n\"created_at\": \"2020-11-13 12:42:17\",\n\"updated_at\": \"2020-11-13 12:42:18\",\n\"sell_lines\": [\n{\n\"id\": 139,\n\"transaction_id\": 157,\n\"product_id\": 157,\n\"variation_id\": 205,\n\"quantity\": 5,\n\"mfg_waste_percent\": \"0.0000\",\n\"quantity_returned\": \"3.0000\",\n\"unit_price_before_discount\": \"1.2500\",\n\"unit_price\": \"1.2500\",\n\"line_discount_type\": \"fixed\",\n\"line_discount_amount\": \"0.0000\",\n\"unit_price_inc_tax\": \"1.2500\",\n\"item_tax\": \"0.0000\",\n\"tax_id\": null,\n\"discount_id\": null,\n\"lot_no_line_id\": null,\n\"sell_line_note\": \"\",\n\"res_service_staff_id\": null,\n\"res_line_order_status\": null,\n\"woocommerce_line_items_id\": null,\n\"parent_sell_line_id\": null,\n\"children_type\": \"\",\n\"sub_unit_id\": null,\n\"created_at\": \"2020-11-13 12:42:17\",\n\"updated_at\": \"2020-11-17 13:22:09\"\n}\n]\n}\n}\n],\n\"links\": {\n\"first\": \"http:\/\/local.pos.com\/connector\/api\/list-sell-return?sell_id=157&page=1\",\n\"last\": null,\n\"prev\": null,\n\"next\": null\n},\n\"meta\": {\n\"current_page\": 1,\n\"from\": 1,\n\"path\": \"http:\/\/local.pos.com\/connector\/api\/list-sell-return\",\n\"per_page\": 10,\n\"to\": 1\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update shipping status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/update-shipping-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/update-shipping-status"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"id\":16,\"shipping_status\":\"ordered\",\"delivered_to\":\"architecto\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Superadmin",
            "description": "",
            "item": [
                {
                    "name": "If SaaS installed get active subscription details, else return the enabled modules details in package_details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/active-subscription",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/active-subscription"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"id\": 1,\n\"business_id\": 1,\n\"package_id\": 3,\n\"start_date\": \"2020-09-05 00:00:00\",\n\"trial_end_date\": \"2020-09-15\",\n\"end_date\": \"2020-10-05 00:00:00\",\n\"package_price\": \"599.9900\",\n\"package_details\": {\n\"location_count\": 0,\n\"user_count\": 0,\n\"product_count\": 0,\n\"invoice_count\": 0,\n\"name\": \"Unlimited\",\n\"woocommerce_module\": 1,\n\"essentials_module\": 1\n},\n\"created_id\": 1,\n\"paid_via\": \"stripe\",\n\"payment_transaction_id\": \"ch_1CuLdQAhokBpT93LVZNg2At6\",\n\"status\": \"approved\",\n\"deleted_at\": null,\n\"created_at\": \"2018-08-01 07:49:09\",\n\"updated_at\": \"2018-08-01 07:49:09\",\n\"locations_created\": 1,\n\"users_created\": 6,\n\"products_created\": 2,\n\"invoices_created\": 1\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Superadmin Package List",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/packages",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/packages"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"name\": \"Starter - Free\",\n\"description\": \"Give it a test drive...\",\n\"location_count\": 0,\n\"user_count\": 0,\n\"product_count\": 0,\n\"bookings\": 0,\n\"kitchen\": 0,\n\"order_screen\": 0,\n\"tables\": 0,\n\"invoice_count\": 0,\n\"interval\": \"months\",\n\"interval_count\": 1,\n\"trial_days\": 10,\n\"price\": \"0.0000\",\n\"custom_permissions\": {\n\"assetmanagement_module\": \"1\",\n\"connector_module\": \"1\",\n\"crm_module\": \"1\",\n\"essentials_module\": \"1\",\n\"manufacturing_module\": \"1\",\n\"productcatalogue_module\": \"1\",\n\"project_module\": \"1\",\n\"repair_module\": \"1\",\n\"woocommerce_module\": \"1\"\n},\n\"created_by\": 1,\n\"sort_order\": 0,\n\"is_active\": 1,\n\"is_private\": 0,\n\"is_one_time\": 0,\n\"enable_custom_link\": 0,\n\"custom_link\": \"\",\n\"custom_link_text\": \"\",\n\"deleted_at\": null,\n\"created_at\": \"2020-10-09 16:38:02\",\n\"updated_at\": \"2020-11-11 12:19:17\"\n},\n{\n\"id\": 2,\n\"name\": \"Regular\",\n\"description\": \"For Small Shops\",\n\"location_count\": 0,\n\"user_count\": 0,\n\"product_count\": 0,\n\"bookings\": 0,\n\"kitchen\": 0,\n\"order_screen\": 0,\n\"tables\": 0,\n\"invoice_count\": 0,\n\"interval\": \"months\",\n\"interval_count\": 1,\n\"trial_days\": 10,\n\"price\": \"199.9900\",\n\"custom_permissions\": {\n\"repair_module\": \"1\"\n},\n\"created_by\": 1,\n\"sort_order\": 1,\n\"is_active\": 1,\n\"is_private\": 0,\n\"is_one_time\": 0,\n\"enable_custom_link\": 0,\n\"custom_link\": null,\n\"custom_link_text\": null,\n\"deleted_at\": null,\n\"created_at\": \"2020-10-09 16:38:02\",\n\"updated_at\": \"2020-10-09 16:38:02\"\n},\n{\n\"id\": 3,\n\"name\": \"Unlimited\",\n\"description\": \"For Large Business\",\n\"location_count\": 0,\n\"user_count\": 0,\n\"product_count\": 0,\n\"bookings\": 0,\n\"kitchen\": 0,\n\"order_screen\": 0,\n\"tables\": 0,\n\"invoice_count\": 0,\n\"interval\": \"months\",\n\"interval_count\": 1,\n\"trial_days\": 10,\n\"price\": \"599.9900\",\n\"custom_permissions\": {\n\"assetmanagement_module\": \"1\",\n\"connector_module\": \"1\",\n\"crm_module\": \"1\",\n\"essentials_module\": \"1\",\n\"manufacturing_module\": \"1\",\n\"productcatalogue_module\": \"1\",\n\"project_module\": \"1\",\n\"repair_module\": \"1\",\n\"woocommerce_module\": \"1\"\n},\n\"created_by\": 1,\n\"sort_order\": 1,\n\"is_active\": 1,\n\"is_private\": 0,\n\"is_one_time\": 0,\n\"enable_custom_link\": 0,\n\"custom_link\": \"\",\n\"custom_link_text\": \"\",\n\"deleted_at\": null,\n\"created_at\": \"2020-10-09 16:38:02\",\n\"updated_at\": \"2020-11-02 12:09:19\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Table management",
            "description": "",
            "item": [
                {
                    "name": "List tables",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/table",
                            "query": [
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "id of the location",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/table?location_id=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 5,\n\"business_id\": 1,\n\"location_id\": 1,\n\"name\": \"Table 1\",\n\"description\": null,\n\"created_by\": 9,\n\"deleted_at\": null,\n\"created_at\": \"2020-06-04 22:36:37\",\n\"updated_at\": \"2020-06-04 22:36:37\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show the specified table",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/table\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/table\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the table."
                                },
                                {
                                    "id": "table",
                                    "key": "table",
                                    "value": "5",
                                    "description": "comma separated ids of required tables"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 5,\n\"business_id\": 1,\n\"location_id\": 1,\n\"name\": \"Table 1\",\n\"description\": null,\n\"created_by\": 9,\n\"deleted_at\": null,\n\"created_at\": \"2020-06-04 22:36:37\",\n\"updated_at\": \"2020-06-04 22:36:37\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Tax management",
            "description": "",
            "item": [
                {
                    "name": "List taxes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/tax",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/tax"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"VAT@10%\",\n\"amount\": 10,\n\"is_tax_group\": 0,\n\"created_by\": 1,\n\"woocommerce_tax_rate_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:40:07\",\n\"updated_at\": \"2018-01-04 02:40:07\"\n},\n{\n\"id\": 2,\n\"business_id\": 1,\n\"name\": \"CGST@10%\",\n\"amount\": 10,\n\"is_tax_group\": 0,\n\"created_by\": 1,\n\"woocommerce_tax_rate_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:40:55\",\n\"updated_at\": \"2018-01-04 02:40:55\"\n},\n{\n\"id\": 3,\n\"business_id\": 1,\n\"name\": \"SGST@8%\",\n\"amount\": 8,\n\"is_tax_group\": 0,\n\"created_by\": 1,\n\"woocommerce_tax_rate_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:41:13\",\n\"updated_at\": \"2018-01-04 02:41:13\"\n},\n{\n\"id\": 4,\n\"business_id\": 1,\n\"name\": \"GST@18%\",\n\"amount\": 18,\n\"is_tax_group\": 1,\n\"created_by\": 1,\n\"woocommerce_tax_rate_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:42:19\",\n\"updated_at\": \"2018-01-04 02:42:19\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified tax",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/tax\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/tax\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the tax."
                                },
                                {
                                    "id": "tax",
                                    "key": "tax",
                                    "value": "1",
                                    "description": "comma separated ids of required taxes"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"name\": \"VAT@10%\",\n\"amount\": 10,\n\"is_tax_group\": 0,\n\"created_by\": 1,\n\"woocommerce_tax_rate_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:40:07\",\n\"updated_at\": \"2018-01-04 02:40:07\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Taxonomy management",
            "description": "",
            "item": [
                {
                    "name": "List taxonomy",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/taxonomy",
                            "query": [
                                {
                                    "key": "type",
                                    "value": "architecto",
                                    "description": "Type of taxonomy (product, device, hrm_department)",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/taxonomy?type=architecto"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"name\": \"Men's\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 0,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:06:34\",\n\"updated_at\": \"2018-01-03 21:06:34\",\n\"sub_categories\": [\n{\n\"id\": 4,\n\"name\": \"Jeans\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 1,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:07:34\",\n\"updated_at\": \"2018-01-03 21:07:34\"\n},\n{\n\"id\": 5,\n\"name\": \"Shirts\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 1,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:08:18\",\n\"updated_at\": \"2018-01-03 21:08:18\"\n}\n]\n},\n{\n\"id\": 21,\n\"name\": \"Food & Grocery\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 0,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-06 05:31:35\",\n\"updated_at\": \"2018-01-06 05:31:35\",\n\"sub_categories\": []\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified taxonomy",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/taxonomy\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/taxonomy\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the taxonomy."
                                },
                                {
                                    "id": "taxonomy",
                                    "key": "taxonomy",
                                    "value": "1",
                                    "description": "comma separated ids of product categories"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"name\": \"Men's\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 0,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:06:34\",\n\"updated_at\": \"2018-01-03 21:06:34\",\n\"sub_categories\": [\n{\n\"id\": 4,\n\"name\": \"Jeans\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 1,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:07:34\",\n\"updated_at\": \"2018-01-03 21:07:34\"\n},\n{\n\"id\": 5,\n\"name\": \"Shirts\",\n\"business_id\": 1,\n\"short_code\": null,\n\"parent_id\": 1,\n\"created_by\": 1,\n\"category_type\": \"product\",\n\"description\": null,\n\"slug\": null,\n\"woocommerce_cat_id\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 21:08:18\",\n\"updated_at\": \"2018-01-03 21:08:18\"\n}\n]\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Types of service management",
            "description": "",
            "item": [
                {
                    "name": "List types of service",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/types-of-service",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/types-of-service"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"name\": \"Home Delivery\",\n\"description\": null,\n\"business_id\": 1,\n\"location_price_group\": {\n\"1\": \"0\"\n},\n\"packing_charge\": \"10.0000\",\n\"packing_charge_type\": \"fixed\",\n\"enable_custom_fields\": 0,\n\"created_at\": \"2020-06-04 22:41:13\",\n\"updated_at\": \"2020-06-04 22:41:13\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified types of service",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/types-of-service\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/types-of-service\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the types of service."
                                },
                                {
                                    "id": "types_of_service",
                                    "key": "types_of_service",
                                    "value": "1",
                                    "description": "comma separated ids of required types of services"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"name\": \"Home Delivery\",\n\"description\": null,\n\"business_id\": 1,\n\"location_price_group\": {\n\"1\": \"0\"\n},\n\"packing_charge\": \"10.0000\",\n\"packing_charge_type\": \"fixed\",\n\"enable_custom_fields\": 0,\n\"created_at\": \"2020-06-04 22:41:13\",\n\"updated_at\": \"2020-06-04 22:41:13\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Unit management",
            "description": "",
            "item": [
                {
                    "name": "List units",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/unit",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/unit"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"actual_name\": \"Pieces\",\n\"short_name\": \"Pc(s)\",\n\"allow_decimal\": 0,\n\"base_unit_id\": null,\n\"base_unit_multiplier\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 15:15:20\",\n\"updated_at\": \"2018-01-03 15:15:20\",\n\"base_unit\": null\n},\n{\n\"id\": 2,\n\"business_id\": 1,\n\"actual_name\": \"Packets\",\n\"short_name\": \"packets\",\n\"allow_decimal\": 0,\n\"base_unit_id\": null,\n\"base_unit_multiplier\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-06 01:07:01\",\n\"updated_at\": \"2018-01-06 01:08:36\",\n\"base_unit\": null\n},\n{\n\"id\": 15,\n\"business_id\": 1,\n\"actual_name\": \"Dozen\",\n\"short_name\": \"dz\",\n\"allow_decimal\": 0,\n\"base_unit_id\": 1,\n\"base_unit_multiplier\": \"12.0000\",\n\"created_by\": 9,\n\"deleted_at\": null,\n\"created_at\": \"2020-07-20 13:11:09\",\n\"updated_at\": \"2020-07-20 13:11:09\",\n\"base_unit\": {\n\"id\": 1,\n\"business_id\": 1,\n\"actual_name\": \"Pieces\",\n\"short_name\": \"Pc(s)\",\n\"allow_decimal\": 0,\n\"base_unit_id\": null,\n\"base_unit_multiplier\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 15:15:20\",\n\"updated_at\": \"2018-01-03 15:15:20\"\n}\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified unit",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/unit\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/unit\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the unit."
                                },
                                {
                                    "id": "unit",
                                    "key": "unit",
                                    "value": "1",
                                    "description": "comma separated ids of the units"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"business_id\": 1,\n\"actual_name\": \"Pieces\",\n\"short_name\": \"Pc(s)\",\n\"allow_decimal\": 0,\n\"base_unit_id\": null,\n\"base_unit_multiplier\": null,\n\"created_by\": 1,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-03 15:15:20\",\n\"updated_at\": \"2018-01-03 15:15:20\",\n\"base_unit\": null\n}\n]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "User management",
            "description": "",
            "item": [
                {
                    "name": "Get the loggedin user details.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/user\/loggedin",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/user\/loggedin"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\":{\n\"id\": 1,\n\"user_type\": \"user\",\n\"surname\": \"Mr\",\n\"first_name\": \"Admin\",\n\"last_name\": null,\n\"username\": \"admin\",\n\"email\": \"admin@example.com\",\n\"language\": \"en\",\n\"contact_no\": null,\n\"address\": null,\n\"business_id\": 1,\n\"max_sales_discount_percent\": null,\n\"allow_login\": 1,\n\"essentials_department_id\": null,\n\"essentials_designation_id\": null,\n\"status\": \"active\",\n\"crm_contact_id\": null,\n\"is_cmmsn_agnt\": 0,\n\"cmmsn_percent\": \"0.00\",\n\"selected_contacts\": 0,\n\"dob\": null,\n\"gender\": null,\n\"marital_status\": null,\n\"blood_group\": null,\n\"contact_number\": null,\n\"fb_link\": null,\n\"twitter_link\": null,\n\"social_media_1\": null,\n\"social_media_2\": null,\n\"permanent_address\": null,\n\"current_address\": null,\n\"guardian_name\": null,\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null,\n\"bank_details\": null,\n\"id_proof_name\": null,\n\"id_proof_number\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:19\",\n\"updated_at\": \"2018-01-04 02:15:19\"\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Register User",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/user-registration",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/user-registration"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"username\":\"architecto\",\"email\":\"gbailey@example.net\",\"user_type\":\"architecto\",\"surname\":\"architecto\",\"first_name\":\"architecto\",\"last_name\":\"architecto\",\"is_active\":\"architecto\",\"crm_contact_id\":16,\"allow_login\":false,\"password\":\"|]|{+-\",\"role\":16,\"access_all_locations\":false,\"location_permissions\":[\"architecto\"],\"cmmsn_percent\":\"architecto\",\"max_sales_discount_percent\":\"architecto\",\"selected_contacts\":false,\"selected_contact_ids\":[\"architecto\"],\"dob\":\"architecto\",\"gender\":\"architecto\",\"marital_status\":\"architecto\",\"blood_group\":\"architecto\",\"contact_number\":\"architecto\",\"alt_number\":\"architecto\",\"family_number\":\"architecto\",\"fb_link\":\"architecto\",\"twitter_link\":\"architecto\",\"social_media_1\":\"architecto\",\"social_media_2\":\"architecto\",\"custom_field_1\":\"architecto\",\"custom_field_2\":\"architecto\",\"custom_field_3\":\"architecto\",\"custom_field_4\":\"architecto\",\"guardian_name\":\"architecto\",\"id_proof_name\":\"architecto\",\"id_proof_number\":\"architecto\",\"permanent_address\":\"architecto\",\"current_address\":\"architecto\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"success\": 1,\n\"msg\": \"User added successfully\",\n\"user\": {\n\"surname\": \"Mr\",\n\"first_name\": \"Test\",\n\"last_name\": \"kumar\",\n\"email\": \"test@example.com\",\n\"user_type\": \"user_customer\",\n\"crm_contact_id\": \"2\",\n\"allow_login\": 1,\n\"username\": \"0017\",\n\"cmmsn_percent\": \"25\",\n\"max_sales_discount_percent\": \"52\",\n\"dob\": \"1997-10-12\",\n\"gender\": \"male\",\n\"marital_status\": \"unmarried\",\n\"blood_group\": \"0+\",\n\"contact_number\": \"4578451245\",\n\"alt_number\": \"7474747474\",\n\"family_number\": \"7474147414\",\n\"fb_link\": \"fb.com\/username\",\n\"twitter_link\": \"twitter.com\/username\",\n\"social_media_1\": \"test\",\n\"social_media_2\": \"test\",\n\"custom_field_1\": \"test\",\n\"custom_field_2\": \"test\",\n\"custom_field_3\": \"test\",\n\"custom_field_4\": \"test\",\n\"guardian_name\": \"test\",\n\"id_proof_name\": \"uid\",\n\"id_proof_number\": \"747845120124\",\n\"permanent_address\": \"test permanent adrress\",\n\"current_address\": \"test current address\",\n\"bank_details\": \"{\\\"account_holder_name\\\":\\\"test\\\",\\\"account_number\\\":\\\"test\\\",\\\"bank_name\\\":\\\"test\\\",\\\"bank_code\\\":\\\"test\\\",\\\"branch\\\":\\\"test\\\",\\\"tax_payer_id\\\":\\\"test\\\"}\",\n\"selected_contacts\": \"1\",\n\"status\": \"active\",\n\"business_id\": 1,\n\"updated_at\": \"2021-08-12 18:03:58\",\n\"created_at\": \"2021-08-12 18:03:58\",\n\"id\": 140\n}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/user",
                            "query": [
                                {
                                    "key": "service_staff",
                                    "value": "",
                                    "description": "Filter service staffs from users list (0, 1)",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/connector\/api\/user?service_staff="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"user_type\": \"user\",\n\"surname\": \"Mr\",\n\"first_name\": \"Admin\",\n\"last_name\": null,\n\"username\": \"admin\",\n\"email\": \"admin@example.com\",\n\"language\": \"en\",\n\"contact_no\": null,\n\"address\": null,\n\"business_id\": 1,\n\"max_sales_discount_percent\": null,\n\"allow_login\": 1,\n\"essentials_department_id\": null,\n\"essentials_designation_id\": null,\n\"status\": \"active\",\n\"crm_contact_id\": null,\n\"is_cmmsn_agnt\": 0,\n\"cmmsn_percent\": \"0.00\",\n\"selected_contacts\": 0,\n\"dob\": null,\n\"gender\": null,\n\"marital_status\": null,\n\"blood_group\": null,\n\"contact_number\": null,\n\"fb_link\": null,\n\"twitter_link\": null,\n\"social_media_1\": null,\n\"social_media_2\": null,\n\"permanent_address\": null,\n\"current_address\": null,\n\"guardian_name\": null,\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null,\n\"bank_details\": null,\n\"id_proof_name\": null,\n\"id_proof_number\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:19\",\n\"updated_at\": \"2018-01-04 02:15:19\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the specified user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/user\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/user\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the user."
                                },
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "1",
                                    "description": "comma separated ids of the required users"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n{\n\"id\": 1,\n\"user_type\": \"user\",\n\"surname\": \"Mr\",\n\"first_name\": \"Admin\",\n\"last_name\": null,\n\"username\": \"admin\",\n\"email\": \"admin@example.com\",\n\"language\": \"en\",\n\"contact_no\": null,\n\"address\": null,\n\"business_id\": 1,\n\"max_sales_discount_percent\": null,\n\"allow_login\": 1,\n\"essentials_department_id\": null,\n\"essentials_designation_id\": null,\n\"status\": \"active\",\n\"crm_contact_id\": null,\n\"is_cmmsn_agnt\": 0,\n\"cmmsn_percent\": \"0.00\",\n\"selected_contacts\": 0,\n\"dob\": null,\n\"gender\": null,\n\"marital_status\": null,\n\"blood_group\": null,\n\"contact_number\": null,\n\"fb_link\": null,\n\"twitter_link\": null,\n\"social_media_1\": null,\n\"social_media_2\": null,\n\"permanent_address\": null,\n\"current_address\": null,\n\"guardian_name\": null,\n\"custom_field_1\": null,\n\"custom_field_2\": null,\n\"custom_field_3\": null,\n\"custom_field_4\": null,\n\"bank_details\": null,\n\"id_proof_name\": null,\n\"id_proof_number\": null,\n\"deleted_at\": null,\n\"created_at\": \"2018-01-04 02:15:19\",\n\"updated_at\": \"2018-01-04 02:15:19\"\n}\n]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update user password.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/update-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/update-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"current_password\":\"architecto\",\"new_password\":\"architecto\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"success\":1,\n\"msg\":\"Password updated successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Recover forgotten password.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "connector\/api\/forget-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/connector\/api\/forget-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"gbailey@example.net\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"success\":1,\n\"msg\":\"New password sent to user@example.com successfully\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}