GetCustomerResponseDto Data Type

All the MEVEO API web service response must extend this class.

Implemented Interfaces
Serializable
Properties
name data type description
customer CustomerDto
Properties inherited from BaseResponse
actionStatus ActionStatus

Example

{
  "customer" : {
    "customerCategory" : "...",
    "customerBrand" : "...",
    "seller" : "...",
    "mandateIdentification" : "...",
    "mandateDate" : 12345,
    "contactInformation" : {
      "email" : "...",
      "phone" : "...",
      "mobile" : "...",
      "fax" : "..."
    },
    "customerAccounts" : {
      "customerAccount" : [ { }, { } ]
    },
    "code" : "...",
    "description" : "...",
    "externalRef1" : "...",
    "externalRef2" : "...",
    "name" : {
      "title" : "...",
      "firstName" : "...",
      "lastName" : "..."
    },
    "address" : {
      "address1" : "...",
      "address2" : "...",
      "address3" : "...",
      "zipCode" : "...",
      "city" : "...",
      "country" : "...",
      "state" : "..."
    },
    "businessAccountModel" : {
      "code" : "...",
      "description" : "..."
    },
    "customFields" : {
      "customField" : [ { }, { } ]
    },
    "updatedCode" : "..."
  },
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : "MISSING_PARAMETER",
    "message" : "..."
  }
}