{
    "variables": [],
    "info": {
        "name": "AcorCloudPOS API",
        "_postman_id": "bc6eabbf-8953-46d4-97c5-0cbabe7060b5",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.0.0\/collection.json"
    },
    "item": [
        {
            "name": "Attendance management",
            "description": "",
            "item": [
                {
                    "name": "Get Attendance",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/get-attendance\/:user_id",
                            "query": [],
                            "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Clock In",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/clock-in",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"clock_in_time\": \"2000-06-13 13:13:00\",\n    \"clock_in_note\": \"et\",\n    \"ip_address\": \"corporis\",\n    \"latitude\": \"maiores\",\n    \"longitude\": \"omnis\"\n}"
                        },
                        "description": "[User must have \"essentials.allow_users_for_attendance_from_api\" permission to Clock in]",
                        "response": []
                    }
                },
                {
                    "name": "Clock Out",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/clock-out",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"clock_out_time\": \"2000-06-13 13:13:00\",\n    \"clock_out_note\": \"reprehenderit\",\n    \"latitude\": \"ducimus\",\n    \"longitude\": \"aut\"\n}"
                        },
                        "description": "[User must have \"essentials.allow_users_for_attendance_from_api\" permission to Clock out]",
                        "response": []
                    }
                },
                {
                    "name": "List Holidays",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Brand management",
            "description": "",
            "item": [
                {
                    "name": "List brands",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/brand",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified brand",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/brand\/:brand",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Business Location management",
            "description": "",
            "item": [
                {
                    "name": "List business locations",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/business-location",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified business location",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/business-location\/:business_location",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "CRM",
            "description": "",
            "item": [
                {
                    "name": "List Follow ups",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "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": "voluptatum",
                                    "description": "filter the result through status, get status from getFollowUpResources->statuses",
                                    "disabled": false
                                },
                                {
                                    "key": "follow_up_type",
                                    "value": "ipsa",
                                    "description": "filter the result through follow_up_type, get follow_up_type from getFollowUpResources->follow_up_types",
                                    "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Add follow up",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/crm\/follow-ups",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Meeting with client\",\n    \"contact_id\": 2,\n    \"description\": \"qui\",\n    \"schedule_type\": \"iusto\",\n    \"user_id\": \"[2,3,5]\",\n    \"notify_before\": 5,\n    \"notify_type\": \"minute\",\n    \"status\": \"open\",\n    \"notify_via\": \"['sms' => 0 ,'mail' => 1]\",\n    \"start_datetime\": \"2021-01-06 13:05:00\",\n    \"end_datetime\": \"2021-01-06 13:05:00\",\n    \"followup_additional_info\": \"['call duration' => '1 hour']\",\n    \"allow_notification\": true\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified followup",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/crm\/follow-ups\/:follow_up",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Update follow up",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/crm\/follow-ups\/:follow_up",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Meeting with client\",\n    \"contact_id\": 2,\n    \"description\": \"aut\",\n    \"schedule_type\": \"mollitia\",\n    \"user_id\": \"[2,3,5]\",\n    \"notify_before\": 5,\n    \"notify_type\": \"minute\",\n    \"status\": \"open\",\n    \"notify_via\": \"['sms' => 0 ,'mail' => 1]\",\n    \"followup_additional_info\": \"['call duration' => '1 hour']\",\n    \"start_datetime\": \"2021-01-06 13:05:00\",\n    \"end_datetime\": \"2021-01-06 13:05:00\",\n    \"allow_notification\": true\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get follow up resources",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/crm\/follow-up-resources",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "List lead",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "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": "perspiciatis",
                                    "description": "Search term for lead name",
                                    "disabled": false
                                },
                                {
                                    "key": "biz_name",
                                    "value": "minima",
                                    "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": "omnis",
                                    "description": "Search term for lead's contact_id. Ex(CO0005)",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "odio",
                                    "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Save Call Logs",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/crm\/call-logs",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"call_logs\": [\n        {\n            \"mobile_number\": \"voluptatum\",\n            \"mobile_name\": \"ea\",\n            \"call_type\": \"call\",\n            \"start_time\": \"voluptatem\",\n            \"end_time\": \"tenetur\",\n            \"duration\": \"quia\"\n        }\n    ]\n}"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Cash register management",
            "description": "",
            "item": [
                {
                    "name": "List Cash Registers",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Create Cash Register",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/cash-register",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"location_id\": 1,\n    \"initial_amount\": 5358629.85272372,\n    \"created_at\": \"2020-5-7 15:20:22\",\n    \"closed_at\": \"2020-5-7 15:20:22\",\n    \"status\": \"close\",\n    \"closing_amount\": 68415143.23456912,\n    \"total_card_slips\": 7,\n    \"total_cheques\": 18,\n    \"closing_note\": \"velit\",\n    \"transaction_ids\": \"1,2,3\"\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified Register",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/cash-register\/:cash_register",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Contact management",
            "description": "",
            "item": [
                {
                    "name": "List contact",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/contactapi",
                            "query": [
                                {
                                    "key": "type",
                                    "value": "quam",
                                    "description": "Type of contact (supplier, customer)",
                                    "disabled": false
                                },
                                {
                                    "key": "name",
                                    "value": "rerum",
                                    "description": "Search term for contact name",
                                    "disabled": false
                                },
                                {
                                    "key": "biz_name",
                                    "value": "maiores",
                                    "description": "Search term for contact's business name",
                                    "disabled": false
                                },
                                {
                                    "key": "mobile_num",
                                    "value": "6",
                                    "description": "Search term for contact's mobile number",
                                    "disabled": false
                                },
                                {
                                    "key": "contact_id",
                                    "value": "et",
                                    "description": "Search term for contact's contact_id. Ex(CO0005)",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "sunt",
                                    "description": "Column name to sort the result, Column: name, supplier_business_name",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "maiores",
                                    "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Create contact",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/contactapi",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"type\": \"customer\",\n    \"supplier_business_name\": \"esse\",\n    \"prefix\": \"cupiditate\",\n    \"first_name\": \"accusantium\",\n    \"middle_name\": \"molestias\",\n    \"last_name\": \"assumenda\",\n    \"tax_number\": \"8787fefef\",\n    \"pay_term_number\": 3,\n    \"pay_term_type\": \"months\",\n    \"mobile\": \"4578691009\",\n    \"landline\": \"5487-8454-4145\",\n    \"alternate_number\": \"841847541222\",\n    \"address_line_1\": \"consequatur\",\n    \"address_line_2\": \"officiis\",\n    \"city\": \"et\",\n    \"state\": \"ex\",\n    \"country\": \"amet\",\n    \"zip_code\": \"facilis\",\n    \"customer_group_id\": \"qui\",\n    \"contact_id\": \"quia\",\n    \"dob\": \"2000-06-13\",\n    \"custom_field1\": \"eum\",\n    \"custom_field2\": \"et\",\n    \"custom_field3\": \"est\",\n    \"custom_field4\": \"adipisci\",\n    \"email\": \"quam\",\n    \"shipping_address\": \"est\",\n    \"position\": \"voluptas\",\n    \"opening_balance\": 0,\n    \"source_id\": 3,\n    \"life_stage_id\": 16,\n    \"assigned_to\": []\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified contact",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/contactapi\/:contactapi",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Update contact",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/contactapi\/:contactapi",
                            "query": []
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"type\": \"customer\",\n    \"supplier_business_name\": \"aut\",\n    \"prefix\": \"omnis\",\n    \"first_name\": \"quia\",\n    \"middle_name\": \"sunt\",\n    \"last_name\": \"voluptatem\",\n    \"tax_number\": \"488744dwd\",\n    \"pay_term_number\": 3,\n    \"pay_term_type\": \"months\",\n    \"mobile\": \"8795461009\",\n    \"landline\": \"65484-848-848\",\n    \"alternate_number\": \"9898795220\",\n    \"address_line_1\": \"doloribus\",\n    \"address_line_2\": \"voluptatem\",\n    \"city\": \"et\",\n    \"state\": \"nisi\",\n    \"country\": \"dolores\",\n    \"zip_code\": \"exercitationem\",\n    \"customer_group_id\": \"assumenda\",\n    \"contact_id\": \"et\",\n    \"dob\": \"2000-06-13\",\n    \"custom_field1\": \"tempora\",\n    \"custom_field2\": \"est\",\n    \"custom_field3\": \"et\",\n    \"custom_field4\": \"sint\",\n    \"email\": \"quasi\",\n    \"shipping_address\": \"corporis\",\n    \"position\": \"totam\",\n    \"opening_balance\": 10.3,\n    \"source_id\": 9,\n    \"life_stage_id\": 8,\n    \"assigned_to\": []\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Contact payment",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/contactapi-payment",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"contact_id\": 17,\n    \"amount\": 453.13,\n    \"method\": \"cash\",\n    \"paid_on\": \"2020-07-22 15:48:29\",\n    \"account_id\": 4,\n    \"card_number\": \"non\",\n    \"card_holder_name\": \"esse\",\n    \"card_transaction_number\": \"eius\",\n    \"card_type\": \"quo\",\n    \"card_month\": \"deserunt\",\n    \"card_year\": \"perspiciatis\",\n    \"card_security\": \"repudiandae\",\n    \"transaction_no_1\": \"numquam\",\n    \"transaction_no_2\": \"commodi\",\n    \"transaction_no_3\": \"et\",\n    \"cheque_number\": \"quidem\",\n    \"bank_account_number\": \"consequatur\",\n    \"note\": \"pariatur\"\n}"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Expense management",
            "description": "",
            "item": [
                {
                    "name": "List expenses",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "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": "et",
                                    "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Create expense \/ expense refund",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/expense",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"location_id\": 1,\n    \"final_total\": 32.33737363,\n    \"transaction_date\": \"2020-5-7 15:20:22\",\n    \"tax_rate_id\": 18,\n    \"expense_for\": 19,\n    \"contact_id\": 20,\n    \"expense_category_id\": 4,\n    \"expense_sub_category_id\": 2,\n    \"additional_notes\": \"voluptas\",\n    \"is_refund\": 0,\n    \"is_recurring\": 0,\n    \"recur_interval\": 16,\n    \"recur_interval_type\": \"months\",\n    \"subscription_repeat_on\": 15,\n    \"subscription_no\": \"excepturi\",\n    \"recur_repetitions\": 2,\n    \"payment\": [\n        {\n            \"amount\": 453.13,\n            \"method\": \"cash\",\n            \"account_id\": 12,\n            \"card_number\": \"quia\",\n            \"card_holder_name\": \"iste\",\n            \"card_transaction_number\": \"eos\",\n            \"card_type\": \"explicabo\",\n            \"card_month\": \"odit\",\n            \"card_year\": \"reprehenderit\",\n            \"card_security\": \"architecto\",\n            \"transaction_no_1\": \"earum\",\n            \"transaction_no_2\": \"officiis\",\n            \"transaction_no_3\": \"unde\",\n            \"note\": \"minus\",\n            \"cheque_number\": \"qui\"\n        }\n    ]\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified expense \/ expense refund",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/expense\/:expense",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Update expense \/ expense refund",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/expense\/:expense",
                            "query": []
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"final_total\": 30.5,\n    \"transaction_date\": \"2020-5-7 15:20:22\",\n    \"tax_rate_id\": 19,\n    \"expense_for\": 9,\n    \"contact_id\": 13,\n    \"expense_category_id\": 14,\n    \"expense_sub_category_id\": 13,\n    \"additional_notes\": \"beatae\",\n    \"is_recurring\": 0,\n    \"recur_interval\": 13,\n    \"recur_interval_type\": \"months\",\n    \"subscription_repeat_on\": 15,\n    \"subscription_no\": \"aut\",\n    \"recur_repetitions\": 20,\n    \"payment\": []\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "List expense refunds",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "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": "enim",
                                    "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "List expense categories",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/expense-categories",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Field Force",
            "description": "",
            "item": [
                {
                    "name": "List visits",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/field-force",
                            "query": [
                                {
                                    "key": "contact_id",
                                    "value": "voluptatem",
                                    "description": "id of the contact",
                                    "disabled": false
                                },
                                {
                                    "key": "assigned_to",
                                    "value": "adipisci",
                                    "description": "id of the assigned user",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "eos",
                                    "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": "desc",
                                    "description": "Sort visit by visit on date ('asc', 'desc')",
                                    "disabled": false
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Create Visit",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/field-force\/create",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"contact_id\": 3,\n    \"visit_to\": \"laborum\",\n    \"visit_address\": \"ullam\",\n    \"assigned_to\": 20,\n    \"visit_on\": \"2021-12-28 17:23:00\",\n    \"visit_for\": \"iste\"\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Update Visit status",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/field-force\/update-visit-status\/:id",
                            "query": [],
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "17",
                                    "description": "id of the visit to be updated"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"status\": \"finished\",\n    \"reason_to_not_meet_contact\": \"minima\",\n    \"visited_on\": \"2021-12-28 17:23:00\",\n    \"visited_address\": \"Radhanath Mullick Ln, Tiretta Bazaar, Bow Bazaar, Kolkata, West Bengal, 700 073, India\",\n    \"latitude\": \"41.40338\",\n    \"longitude\": \"2.17403\",\n    \"comments\": \"incidunt\",\n    \"photo\": \"vel\"\n}"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Product management",
            "description": "",
            "item": [
                {
                    "name": "List products",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/product",
                            "query": [
                                {
                                    "key": "order_by",
                                    "value": "eligendi",
                                    "description": "Values: product_name or newest",
                                    "disabled": false
                                },
                                {
                                    "key": "order_direction",
                                    "value": "accusamus",
                                    "description": "Values: asc or desc",
                                    "disabled": false
                                },
                                {
                                    "key": "brand_id",
                                    "value": "fugit",
                                    "description": "comma separated ids of one or multiple brands",
                                    "disabled": false
                                },
                                {
                                    "key": "category_id",
                                    "value": "voluptatem",
                                    "description": "comma separated ids of one or multiple category",
                                    "disabled": false
                                },
                                {
                                    "key": "sub_category_id",
                                    "value": "amet",
                                    "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": "inventore",
                                    "description": "(1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "send_lot_detail",
                                    "value": "amet",
                                    "description": "Send lot details in each variation location details(1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "name",
                                    "value": "ut",
                                    "description": "Search term for product name",
                                    "disabled": false
                                },
                                {
                                    "key": "sku",
                                    "value": "eos",
                                    "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified product",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/product\/:product",
                            "query": [
                                {
                                    "key": "selling_price_group",
                                    "value": "illum",
                                    "description": "(1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "send_lot_detail",
                                    "value": "quia",
                                    "description": "Send lot details in each variation location details(1, 0)",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "List Selling Price Group",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/selling-price-group",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "List Variations",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/variation\/:id",
                            "query": [
                                {
                                    "key": "product_id",
                                    "value": "dolores",
                                    "description": "Filter by comma separated products ids",
                                    "disabled": false
                                },
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "brand_id",
                                    "value": "maiores",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "category_id",
                                    "value": "exercitationem",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "sub_category_id",
                                    "value": "rem",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "not_for_selling",
                                    "value": "officiis",
                                    "description": "Values: 0 or 1",
                                    "disabled": false
                                },
                                {
                                    "key": "name",
                                    "value": "porro",
                                    "description": "Search term for product name",
                                    "disabled": false
                                },
                                {
                                    "key": "sku",
                                    "value": "quis",
                                    "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Sales management",
            "description": "",
            "item": [
                {
                    "name": "List sells",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/sell",
                            "query": [
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "id of the location",
                                    "disabled": false
                                },
                                {
                                    "key": "contact_id",
                                    "value": "rerum",
                                    "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": "voluptatem",
                                    "description": "id of the user who created the sale",
                                    "disabled": false
                                },
                                {
                                    "key": "service_staff_id",
                                    "value": "id",
                                    "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": "id",
                                    "description": "Source of the sale",
                                    "disabled": false
                                },
                                {
                                    "key": "only_subscriptions",
                                    "value": "impedit",
                                    "description": "Filter only subcription invoices (1, 0)",
                                    "disabled": false
                                },
                                {
                                    "key": "send_purchase_details",
                                    "value": "sit",
                                    "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Create sell",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/sell",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"sells\": [\n        {\n            \"location_id\": 1,\n            \"contact_id\": 12,\n            \"transaction_date\": \"2020-07-22 15:48:29\",\n            \"invoice_no\": \"fuga\",\n            \"source\": \"api, phone, woocommerce\",\n            \"status\": \"final\",\n            \"sub_status\": \"null\",\n            \"is_quotation\": true,\n            \"tax_rate_id\": 19,\n            \"discount_amount\": 10,\n            \"discount_type\": \"fixed\",\n            \"sale_note\": \"nobis\",\n            \"staff_note\": \"quia\",\n            \"commission_agent\": 19,\n            \"shipping_details\": \"Express Delivery\",\n            \"shipping_address\": \"eligendi\",\n            \"shipping_status\": \"ordered\",\n            \"delivered_to\": \"'Mr robin'\",\n            \"shipping_charges\": 10,\n            \"packing_charge\": 10,\n            \"exchange_rate\": 1,\n            \"selling_price_group_id\": 18,\n            \"pay_term_number\": 3,\n            \"pay_term_type\": \"months\",\n            \"is_suspend\": false,\n            \"is_recurring\": 0,\n            \"recur_interval\": 17,\n            \"recur_interval_type\": \"months\",\n            \"subscription_repeat_on\": 15,\n            \"subscription_no\": \"quis\",\n            \"recur_repetitions\": 8,\n            \"rp_redeemed\": 16,\n            \"rp_redeemed_amount\": 13.5,\n            \"types_of_service_id\": 19,\n            \"service_custom_field_1\": \"hic\",\n            \"service_custom_field_2\": \"consequatur\",\n            \"service_custom_field_3\": \"recusandae\",\n            \"service_custom_field_4\": \"quibusdam\",\n            \"service_custom_field_5\": \"quis\",\n            \"service_custom_field_6\": \"aliquam\",\n            \"round_off_amount\": 493030990.1,\n            \"table_id\": 14,\n            \"service_staff_id\": 20,\n            \"change_return\": 0,\n            \"products\": [\n                {\n                    \"product_id\": 17,\n                    \"variation_id\": 58,\n                    \"quantity\": 1,\n                    \"unit_price\": 437.5,\n                    \"tax_rate_id\": 0,\n                    \"discount_amount\": 0,\n                    \"discount_type\": \"percentage\",\n                    \"sub_unit_id\": 17,\n                    \"note\": \"et\"\n                }\n            ],\n            \"payments\": [\n                {\n                    \"amount\": 453.13,\n                    \"method\": \"cash\",\n                    \"account_id\": 5,\n                    \"card_number\": \"architecto\",\n                    \"card_holder_name\": \"sed\",\n                    \"card_transaction_number\": \"natus\",\n                    \"card_type\": \"natus\",\n                    \"card_month\": \"deleniti\",\n                    \"card_year\": \"eum\",\n                    \"card_security\": \"dolore\",\n                    \"transaction_no_1\": \"nihil\",\n                    \"transaction_no_2\": \"in\",\n                    \"transaction_no_3\": \"ratione\",\n                    \"bank_account_number\": \"sit\",\n                    \"note\": \"aut\",\n                    \"cheque_number\": \"aut\"\n                }\n            ]\n        }\n    ]\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified sell",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/sell\/:sell",
                            "query": [
                                {
                                    "key": "send_purchase_details",
                                    "value": "et",
                                    "description": "Get purchase details of each sell line (1, 0)",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Update sell",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/sell\/:sell",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"contact_id\": 10,\n    \"transaction_date\": \"2020-5-7 15:20:22\",\n    \"status\": \"final\",\n    \"sub_status\": \"null\",\n    \"is_quotation\": true,\n    \"tax_rate_id\": 20,\n    \"discount_amount\": 10,\n    \"discount_type\": \"fixed\",\n    \"sale_note\": \"sint\",\n    \"source\": \"labore\",\n    \"staff_note\": \"impedit\",\n    \"is_suspend\": false,\n    \"commission_agent\": 18,\n    \"shipping_details\": \"Express Delivery\",\n    \"shipping_address\": \"mollitia\",\n    \"shipping_status\": \"ordered\",\n    \"delivered_to\": \"Mr Robin\",\n    \"shipping_charges\": 10,\n    \"packing_charge\": 10,\n    \"exchange_rate\": 1,\n    \"selling_price_group_id\": 3,\n    \"pay_term_number\": 9,\n    \"pay_term_type\": \"months\",\n    \"is_recurring\": 0,\n    \"recur_interval\": 6,\n    \"recur_interval_type\": \"days\",\n    \"subscription_repeat_on\": 7,\n    \"subscription_no\": \"illum\",\n    \"recur_repetitions\": 14,\n    \"rp_redeemed\": 13,\n    \"rp_redeemed_amount\": 13.5,\n    \"types_of_service_id\": 18,\n    \"service_custom_field_1\": \"est\",\n    \"service_custom_field_2\": \"quasi\",\n    \"service_custom_field_3\": \"et\",\n    \"service_custom_field_4\": \"explicabo\",\n    \"service_custom_field_5\": \"rerum\",\n    \"service_custom_field_6\": \"dolores\",\n    \"round_off_amount\": 1080890.8914,\n    \"table_id\": 5,\n    \"service_staff_id\": 5,\n    \"change_return\": 0,\n    \"change_return_id\": 11,\n    \"products\": [\n        {\n            \"sell_line_id\": 8,\n            \"product_id\": 17,\n            \"variation_id\": 58,\n            \"quantity\": 1,\n            \"unit_price\": 437.5,\n            \"tax_rate_id\": 6,\n            \"discount_amount\": 0,\n            \"discount_type\": \"percentage\",\n            \"sub_unit_id\": 4,\n            \"note\": \"qui\"\n        }\n    ],\n    \"payments\": [\n        {\n            \"payment_id\": 10,\n            \"amount\": 453.13,\n            \"method\": \"cash\",\n            \"account_id\": 13,\n            \"card_number\": \"eaque\",\n            \"card_holder_name\": \"eos\",\n            \"card_transaction_number\": \"illum\",\n            \"card_type\": \"et\",\n            \"card_month\": \"facilis\",\n            \"card_year\": \"omnis\",\n            \"card_security\": \"non\",\n            \"transaction_no_1\": \"accusantium\",\n            \"transaction_no_2\": \"sed\",\n            \"transaction_no_3\": \"aut\",\n            \"note\": \"enim\",\n            \"cheque_number\": \"consequatur\",\n            \"bank_account_number\": \"quis\"\n        }\n    ]\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Delete Sell",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/sell\/:sell",
                            "query": [],
                            "variable": [
                                {
                                    "id": "sell",
                                    "key": "sell",
                                    "value": "distinctio",
                                    "description": "id of the sell to be deleted"
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Add Sell Return",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/sell-return",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"transaction_id\": 8,\n    \"transaction_date\": \"2020-5-7 15:20:22\",\n    \"invoice_no\": \"ut\",\n    \"discount_amount\": 10,\n    \"discount_type\": \"fixed\",\n    \"products\": [\n        {\n            \"sell_line_id\": 1,\n            \"quantity\": 1,\n            \"unit_price_inc_tax\": 437.5\n        }\n    ]\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "List Sell Return",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/list-sell-return",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Update shipping status",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/update-shipping-status",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"id\": 1,\n    \"shipping_status\": \"ordered\",\n    \"delivered_to\": \"quis\"\n}"
                        },
                        "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": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/active-subscription",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get Superadmin Package List",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/packages",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Table management",
            "description": "",
            "item": [
                {
                    "name": "List tables",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/table",
                            "query": [
                                {
                                    "key": "location_id",
                                    "value": "1",
                                    "description": "int id of the location",
                                    "disabled": false
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Show the specified table",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/table\/:table",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Tax management",
            "description": "",
            "item": [
                {
                    "name": "List taxes",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/tax",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified tax",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/tax\/:tax",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Taxonomy management",
            "description": "",
            "item": [
                {
                    "name": "List taxonomy",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/taxonomy",
                            "query": [
                                {
                                    "key": "type",
                                    "value": "omnis",
                                    "description": "Type of taxonomy (product, device, hrm_department)",
                                    "disabled": false
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified taxonomy",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/taxonomy\/:taxonomy",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Types of service management",
            "description": "",
            "item": [
                {
                    "name": "List types of service",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/types-of-service",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified types of service",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/types-of-service\/:types_of_service",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Unit management",
            "description": "",
            "item": [
                {
                    "name": "List units",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/unit",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified unit",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/unit\/:unit",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "User management",
            "description": "",
            "item": [
                {
                    "name": "Get the loggedin user details.",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/user\/loggedin",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Register User",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/user-registration",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"surname\": \"fuga\",\n    \"first_name\": \"sit\",\n    \"last_name\": \"placeat\",\n    \"email\": \"dolor\",\n    \"is_active\": \"nam\",\n    \"user_type\": \"omnis\",\n    \"crm_contact_id\": 1,\n    \"allow_login\": false,\n    \"username\": \"id\",\n    \"password\": \"illo\",\n    \"role\": 11,\n    \"access_all_locations\": true,\n    \"location_permissions\": [],\n    \"cmmsn_percent\": \"in\",\n    \"max_sales_discount_percent\": \"unde\",\n    \"selected_contacts\": true,\n    \"selected_contact_ids\": [],\n    \"dob\": \"reprehenderit\",\n    \"gender\": \"aut\",\n    \"marital_status\": \"sunt\",\n    \"blood_group\": \"quidem\",\n    \"contact_number\": \"nihil\",\n    \"alt_number\": \"sed\",\n    \"family_number\": \"deleniti\",\n    \"fb_link\": \"atque\",\n    \"twitter_link\": \"suscipit\",\n    \"social_media_1\": \"nam\",\n    \"social_media_2\": \"sed\",\n    \"custom_field_1\": \"sit\",\n    \"custom_field_2\": \"voluptatem\",\n    \"custom_field_3\": \"qui\",\n    \"custom_field_4\": \"voluptas\",\n    \"guardian_name\": \"enim\",\n    \"id_proof_name\": \"eligendi\",\n    \"id_proof_number\": \"dicta\",\n    \"permanent_address\": \"consectetur\",\n    \"current_address\": \"quod\",\n    \"bank_details\": [\n        {\n            \"account_holder_name\": \"necessitatibus\",\n            \"account_number\": \"eaque\",\n            \"bank_name\": \"velit\",\n            \"bank_code\": \"perferendis\",\n            \"branch\": \"voluptate\",\n            \"tax_payer_id\": \"repudiandae\"\n        }\n    ]\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "List users",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/user",
                            "query": [
                                {
                                    "key": "service_staff",
                                    "value": "reprehenderit",
                                    "description": "boolean Filter service staffs from users list (0, 1)",
                                    "disabled": false
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get the specified user",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/user\/:user",
                            "query": [],
                            "variable": [
                                {
                                    "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"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Update user password.",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/update-password",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"current_password\": \"blanditiis\",\n    \"new_password\": \"facere\"\n}"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Recover forgotten password.",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/forget-password",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"qui\"\n}"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "general",
            "description": "",
            "item": [
                {
                    "name": "List payment accounts",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/payment-accounts",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "List payment methods",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/payment-methods",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get business details",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/business-details",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get profit and loss report",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "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
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get product current stock",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/product-stock-report",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get notifications",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/notifications",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "",
                        "response": []
                    }
                },
                {
                    "name": "Get location details from coordinates",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "app.acorcloudpos.com",
                            "path": "connector\/api\/get-location",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"lat\": \"41.40338\",\n    \"lon\": \"2.17403\"\n}"
                        },
                        "description": "",
                        "response": []
                    }
                }
            ]
        }
    ]
}