Create Customer
post
https://api.nomod.com/v1/customersCreate a new contact with the given details.
curl -X POST 'https://api.nomod.com/v1/customers' \
-H 'X-API-KEY: $NOMOD_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"first_name": "string",
"last_name": "string",
"email": "string",
"phone_number": "string",
"business_name": "string",
"job_title": "string",
"country": "string",
"province": "00000000-0000-0000-0000-000000000000",
"street": "string",
"city": "string",
"zip_code": "string"
}'Request body
first_namestringFirst name
Max length: 150
last_namestringLast name
Max length: 150
emailstring <email>Email address.
phone_numberstringPhone e.g., +971500123456.
Max length: 15
business_namestringBusiness name.
Max length: 50
job_titlestringJob Title
Max length: 50
countrystringCountry code. get it from /countries endpoint
Max length: 2
provincestring <uuid>Province ID. get it from /provinces endpoint
streetstringStreet address
Max length: 100
citystringCity name.
Max length: 100
zip_codestringZip/Postal code.
Max length: 16
Responses
idstring <uuid>requiredread-onlycreatedstring <date-time>requiredread-onlyfirst_namestringrequiredread-onlylast_namestringrequiredread-onlybusiness_namestringrequiredread-onlyjob_titlestringrequiredread-onlyprovinceintegerrequiredread-onlycitystringrequiredread-onlystreetstringrequiredread-onlyzip_codestringrequiredread-onlycountrystringemailstring <email>requiredread-onlyphone_numberstringrequiredread-onlyExample response
{
"id": "00000000-0000-0000-0000-000000000000",
"created": "2026-01-01T00:00:00Z",
"first_name": "string",
"last_name": "string",
"business_name": "string",
"job_title": "string",
"province": 0,
"city": "string",
"street": "string",
"zip_code": "string",
"country": "string",
"email": "string",
"phone_number": "string"
}