Website logo

Retrieve all possible salary values

Returns a list of valid salary options.

URL: https://api.trademe.co.nz/v1/Jobs/Catalogue/SalaryValues.{file_format}
HTTP Method: GET
Requires Authentication? Yes
Permission Required: None
Supported Formats: XML, JSON
Rate Limited? Yes

URL parameters

file_format Enumeration (required) The format of the response.
xml Serialize responses into XML.
json Serialize responses into JSON.

Returns

Collection of <CatalogueItem>

Label String or null

The display label of the item

Value String or null

The value of the item

Example XML Response (switch to JSON)

<CatalogueItemCollection xmlns="http://api.trademe.co.nz/v1">
  <CatalogueItem>
    <Label>ABC</Label>
    <Value>ABC</Value>
  </CatalogueItem>
  <CatalogueItem>
    <Label>ABC</Label>
    <Value>ABC</Value>
  </CatalogueItem>
</CatalogueItemCollection>

Example JSON Response (switch to XML)

[
  {
    "Label": "ABC",
    "Value": "ABC"
  },
  {
    "Label": "ABC",
    "Value": "ABC"
  }
]