Get a list of possible addresses based on a search
Name | Type | Description |
---|---|---|
field | String | Field to search by |
txt | String | Text to find |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Orders/CustomerLookUp
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
field=sample string 1&txt=sample string 1
This is an example of the response JSON. Results will vary depending on your data.
[
{
"EmailAddress": "sample string 1",
"Address1": "sample string 2",
"Address2": "sample string 3",
"Address3": "sample string 4",
"Town": "sample string 5",
"Region": "sample string 6",
"PostCode": "sample string 7",
"Country": "sample string 8",
"Continent": "sample string 9",
"FullName": "sample string 10",
"Company": "sample string 11",
"PhoneNumber": "sample string 12",
"CountryId": "70176fa5-9c45-43d2-8f9f-4b02cfef5348"
}
]