| name | data type | description |
|---|---|---|
| string | ||
| paymentMethod | number | |
| |
|
|
| customerCode | string | |
| sellerCode | string | |
| customerBrandCode | string | |
| customerCategoryCode | string | |
| currencyCode | string | |
| countryCode | string | |
| languageCode | string | |
| titleCode | string | |
| firstName | string | |
| lastName | string | |
| birthDate | number | |
| phoneNumber | string | |
| billingCycleCode | string | |
| address1 | string | |
| address2 | string | |
| address3 | string | |
| zipCode | string | |
| state | string | |
| city | string | |
| usePrefix | boolean | |
| invoicingThreshold | number | |
| discountPlan | string | |
| customFields | CustomFieldsDto |
Example
{
"email" : "...",
"paymentMethod" : 12345,
"customerCode" : "...",
"sellerCode" : "...",
"customerBrandCode" : "...",
"customerCategoryCode" : "...",
"currencyCode" : "...",
"countryCode" : "...",
"languageCode" : "...",
"titleCode" : "...",
"firstName" : "...",
"lastName" : "...",
"birthDate" : 12345,
"phoneNumber" : "...",
"billingCycleCode" : "...",
"address1" : "...",
"address2" : "...",
"address3" : "...",
"zipCode" : "...",
"state" : "...",
"city" : "...",
"usePrefix" : true,
"invoicingThreshold" : 12345.0,
"discountPlan" : "...",
"customFields" : {
"customField" : [ {
"code" : "...",
"valueDate" : 12345,
"valuePeriodStartDate" : 12345,
"valuePeriodEndDate" : 12345,
"valuePeriodPriority" : 12345,
"stringValue" : "...",
"dateValue" : 12345,
"longValue" : 12345,
"doubleValue" : 12345.0,
"value" : [ { }, { } ],
"mapValue" : {
"property1" : { },
"property2" : { }
},
"entityReferenceValue" : { },
"indexType" : "STORE_ONLY"
}, {
"code" : "...",
"valueDate" : 12345,
"valuePeriodStartDate" : 12345,
"valuePeriodEndDate" : 12345,
"valuePeriodPriority" : 12345,
"stringValue" : "...",
"dateValue" : 12345,
"longValue" : 12345,
"doubleValue" : 12345.0,
"value" : [ { }, { } ],
"mapValue" : {
"property1" : { },
"property2" : { }
},
"entityReferenceValue" : { },
"indexType" : "INDEX"
} ]
}
}