CreateCustomerRequest
DTO for creating a customer in an accounting platform
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The customer or company name |
The customer or company name | ||
| string | The customer's email address | |
The customer's email address | ||
| contactNumber | string | The customer's phone number |
The customer's phone number | ||
| firstName | string | The contact person's first name |
The contact person's first name | ||
| lastName | string | The contact person's last name |
The contact person's last name | ||
| platformData | object | Platform-specific data required for customer creation |
Platform-specific data required for customer creation | ||
JSON Example
{
"name": "string",
"email": "string",
"contactNumber": "string",
"firstName": "string",
"lastName": "string"
}