All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| customers | CustomersDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"customers" : {
"customer" : [ {
"customerCategory" : "...",
"customerBrand" : "...",
"seller" : "...",
"mandateIdentification" : "...",
"mandateDate" : 12345,
"contactInformation" : { },
"customerAccounts" : { },
"code" : "...",
"description" : "...",
"externalRef1" : "...",
"externalRef2" : "...",
"name" : { },
"address" : { },
"businessAccountModel" : { },
"customFields" : { },
"updatedCode" : "..."
}, {
"customerCategory" : "...",
"customerBrand" : "...",
"seller" : "...",
"mandateIdentification" : "...",
"mandateDate" : 12345,
"contactInformation" : { },
"customerAccounts" : { },
"code" : "...",
"description" : "...",
"externalRef1" : "...",
"externalRef2" : "...",
"name" : { },
"address" : { },
"businessAccountModel" : { },
"customFields" : { },
"updatedCode" : "..."
} ],
"totalNumberOfRecords" : 12345
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "BUSINESS_API_EXCEPTION",
"message" : "..."
}
}