GET
api/v1/get-customer?clientId={clientId}&custGuid={custGuid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId | integer |
Required |
|
| custGuid | globally unique identifier |
Required |
Response Information
Description:
Return type: CustomerModel
Response Formats
application/json, text/json
{
"CustomerId": 1,
"Guid": "054bb44a-3ab4-4035-aa08-fa1628ac4f85",
"Title": "sample string 3",
"FirstName": "sample string 4",
"LastName": "sample string 5",
"Email": "sample string 6",
"Mobile": "sample string 7",
"Phone": "sample string 8",
"IsActive": true,
"IsEmailVerified": true,
"CreditBalance": 11.0,
"WalletBalance": 12.0,
"IsPhoneVerified": true,
"CustomerType": 13,
"DialCode": "sample string 14"
}
text/html
{"CustomerId":1,"Guid":"054bb44a-3ab4-4035-aa08-fa1628ac4f85","Title":"sample string 3","FirstName":"sample string 4","LastName":"sample string 5","Email":"sample string 6","Mobile":"sample string 7","Phone":"sample string 8","IsActive":true,"IsEmailVerified":true,"CreditBalance":11.0,"WalletBalance":12.0,"IsPhoneVerified":true,"CustomerType":13,"DialCode":"sample string 14"}
application/xml, text/xml
<CustomerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Customer"> <CreditBalance>11</CreditBalance> <CustomerId>1</CustomerId> <CustomerType>13</CustomerType> <DialCode>sample string 14</DialCode> <Email>sample string 6</Email> <FirstName>sample string 4</FirstName> <Guid>054bb44a-3ab4-4035-aa08-fa1628ac4f85</Guid> <IsActive>true</IsActive> <IsEmailVerified>true</IsEmailVerified> <IsPhoneVerified>true</IsPhoneVerified> <LastName>sample string 5</LastName> <Mobile>sample string 7</Mobile> <Phone>sample string 8</Phone> <Title>sample string 3</Title> <WalletBalance>12</WalletBalance> </CustomerModel>
