GET api/country?skip={skip}&take={take}&name={name}

Returns all of the countries with names containing the specified substring.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
skip

How many initial items to skip in the result set.

integer

Required

take

How many items to take from the result set.

integer

Required

name

Country name to search for as a substring.

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Object

None.

Response Formats

application/json, text/json

Sample:
[
  {},
  {}
]

text/html

Sample:
[{},{}]

application/xml, text/xml

Sample:
<ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <anyType />
  <anyType />
</ArrayOfanyType>