Getting Started
Customers
Create Customer
Create a new customer.
POST
/
v1
/
customers
curl --request POST \
--url https://api.nomod.com/v1/customers \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"first_name": "<string>",
"last_name": "<string>",
"email": "[email protected]",
"phone_number": "<string>",
"business_name": "<string>",
"job_title": "<string>",
"country": "<string>",
"province": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"street": "<string>",
"city": "<string>",
"zip_code": "<string>"
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created": "2023-11-07T05:31:56Z",
"first_name": "<string>",
"last_name": "<string>",
"business_name": "<string>",
"job_title": "<string>",
"province": 123,
"city": "<string>",
"street": "<string>",
"zip_code": "<string>",
"country": "<string>",
"email": "[email protected]",
"phone_number": "<string>"
}
Authorizations
Your API key. This is required by all endpoints to access our API programatically. You can view your API Key by navigating to the app settings
Body
application/json
Response
201
application/json
The response is of type object
.
curl --request POST \
--url https://api.nomod.com/v1/customers \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"first_name": "<string>",
"last_name": "<string>",
"email": "[email protected]",
"phone_number": "<string>",
"business_name": "<string>",
"job_title": "<string>",
"country": "<string>",
"province": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"street": "<string>",
"city": "<string>",
"zip_code": "<string>"
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created": "2023-11-07T05:31:56Z",
"first_name": "<string>",
"last_name": "<string>",
"business_name": "<string>",
"job_title": "<string>",
"province": 123,
"city": "<string>",
"street": "<string>",
"zip_code": "<string>",
"country": "<string>",
"email": "[email protected]",
"phone_number": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.