Request Information

URI Parameters

NameDescriptionTypeAdditional information
Offset

integer

None.

Filters

Gets or sets the filters.

Dictionary of string [key] and string [value]

None.

Page

Gets or sets the page.

integer

Range: inclusive between 1 and 2147483647

PageSize

Gets or sets the page size.

integer

Range: inclusive between 1 and 2147483647

Sort

Gets or sets sort field.

string

None.

SortDesc

Gets or sets a value indicating whether data is sorted descending.

boolean

None.

Body Parameters

None.

Response Information

Resource Description

A list of fee type mappings.

Collection of Pico.FeeTypeMapping
NameDescriptionTypeAdditional information
provider

Gets or sets the provider.

string

None.

providerCode

Gets or sets the provider code.

string

None.

feeType

Gets or sets the fee identifier.

integer

None.

id

Gets or sets the fee type mapping identifier.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "provider": "sample String 1",
    "providerCode": "sample String 2",
    "feeType": "3",
    "id": "4"
  },
  {
    "provider": "sample String 1",
    "providerCode": "sample String 2",
    "feeType": "3",
    "id": "4"
  }
]

text/html

Sample:
[{"provider":"sample String 1","providerCode":"sample String 2","feeType":"3","id":"4"},{"provider":"sample String 1","providerCode":"sample String 2","feeType":"3","id":"4"}]

application/xml, text/xml

Sample:
<ArrayOfFeeTypeMapping xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <FeeTypeMapping>
    <Provider>sample String 1</Provider>
    <ProviderCode>sample String 2</ProviderCode>
    <FeeTypeId>3</FeeTypeId>
    <FeeTypeMappingId>4</FeeTypeMappingId>
  </FeeTypeMapping>
  <FeeTypeMapping>
    <Provider>sample String 1</Provider>
    <ProviderCode>sample String 2</ProviderCode>
    <FeeTypeId>3</FeeTypeId>
    <FeeTypeMappingId>4</FeeTypeMappingId>
  </FeeTypeMapping>
</ArrayOfFeeTypeMapping>