GET api/v1/fees/{id}/countries?properties={properties}&orderBy={orderBy}&take={take}&skip={skip}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

properties

string

None.

orderBy

string

None.

take

integer

Default value is 0

skip

integer

Default value is 0

Body Parameters

None.

Response Information

Resource Description

ResponseWrapperBindingModelOfListOfResourceReferenceOfString
NameDescriptionTypeAdditional information
Results

Collection of ResourceReferenceOfString

None.

TotalResults

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalResults": 1,
  "Results": [
    {
      "Id": "sample string 1",
      "Href": "sample string 2"
    },
    {
      "Id": "sample string 1",
      "Href": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<ResponseWrapperBindingModelOfArrayOfResourceReferenceOfstring5HfwBJuv xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Prometric.Api.Models">
  <TotalResults>1</TotalResults>
  <Results>
    <ResourceReferenceOfstring>
      <Href>sample string 2</Href>
      <Id>sample string 1</Id>
    </ResourceReferenceOfstring>
    <ResourceReferenceOfstring>
      <Href>sample string 2</Href>
      <Id>sample string 1</Id>
    </ResourceReferenceOfstring>
  </Results>
</ResponseWrapperBindingModelOfArrayOfResourceReferenceOfstring5HfwBJuv>