GET customer/get?email={email}
Gets the specified customer based on email.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
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-12-21T13:45:46.3836798+00: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-12-21T13:45:46.3836798+00:00</DateAdded> <Email>sample string 1</Email> <Forename>sample string 2</Forename> <Password>sample string 5</Password> <Surname>sample string 3</Surname> </CustomerModel>