Skip to content

Customer Create

Protocol

POST

URL

https://api.helpmonks.com/api/v1/company_user/create

Parameters

Name Required Value Comment
customer Yes Object containing the fields for this customer

The available fields are documented in the Customer Data Model. Refer to the Query syntax documentation on how to query against your records

Example

{
    customer : {
        "email" : "customer@domain.com",
        "first_name" : "Customer",
        "last_name" : "Awesome",
        "notes" : "This is an awesome customer"
    }
}

Returned data

Please refer to the Customer Data Model to see the data structure being returned

-->