GET customer/get?email={email}

Gets the specified customer based on email.

Request Information

Parameters

NameDescriptionAdditional information
email
The email.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "Forename": "sample string 2",
  "Surname": "sample string 3",
  "DateAdded": "2024-04-25T14:59:43.3741732+01:00",
  "Password": "sample string 5",
  "AccountNumber": "sample string 6"
}

application/xml, text/xml

Sample:
<CustomerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webi.Api2.Models">
  <AccountNumber>sample string 6</AccountNumber>
  <DateAdded>2024-04-25T14:59:43.3741732+01:00</DateAdded>
  <Email>sample string 1</Email>
  <Forename>sample string 2</Forename>
  <Password>sample string 5</Password>
  <Surname>sample string 3</Surname>
</CustomerModel>