api.hirepos.com/Customers

Edited

In HirePOS, the Customers endpoint serves as a gateway for posting customer details from third-party applications into HirePOS or retrieving customer information from HirePOS.

POST https://api.hirepos.com/Customers

Headers:
AuthKey={YourAPIKey}
AuthSecret={YourAPISecret}

// Example Request...

{
    "Company": "AnyDay Hire",
    "FirstName": "John",
    "LastName": "Smith",
    "AddressLine1": "1 Any Street",
    "AddressLine2": "",
    "City": "Cairns",
    "State": "QLD",
    "Postcode": "4870",
    "Country": "Australia",
    "Phone1": "(07) 1000 0000",
    "IsMobile1": false,
    "Phone2": "0412 323 000",
    "IsMobile2": true,
    "Phone3": "",
    "IsMobile3": false,
    "Fax": "",
    "Email": "",
    "ReferralSource": "Google Search",
    "Notes": ""
}  
  
// Example Response...

{
    "ErrorRaised": "False",
    "ErrorType": null,
    "ErrorMessage": null,
    "Customers": [
        {
            "Id": 1931,
            "Company": "AnyDay Hire",
            "FirstName": "John",
            "LastName": "Smith",
            "Code": "",
            "AddressLine1": "1 Any Street",
            "AddressLine2": "",
            "City": "Cairns",
            "State": "QLD",
            "Postcode": "4870",
            "Country": "Australia",
            "Phone1": "(07) 1000 0000",
            "IsMobile1": "False",
            "Phone2": "",
            "IsMobile2": "True",
            "Phone3": "",
            "IsMobile3": "False",
            "Fax": "",
            "Email": "",
            "ReferralSource": "Google Search",
            "Notes": null,
            "LastModified": "2022-01-05T14:00:00+10:00"
        }
    ]
}