GET api/Customer/LoadInterests/{id}

Loads a list of interests. An optional parameter can be passed in which will bring only the interest relateing to the ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Interest ID

integer

Default value is 0

Body Parameters

None.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.

Response Formats

application/json, text/json

Sample:
[{"ID":0,"Description":""}]

application/xml, text/xml

Sample:
<?xml version="1.0" encoding="utf-16"?>
<CustomerInterests xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <APICustomerInterest>
    <ID>0</ID>
    <Description />
  </APICustomerInterest>
</CustomerInterests>