GET api/Fans/{id}

Gets a particular fan.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the fan.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The fan with the specified ID, or a 404 response if the fan doesn't exist.

Fan
NameDescriptionTypeAdditional information
ID

The ID of the record.

integer

None.

Name

The name of the fan.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2"
}