currencies
QUERY

A list of currencies.These may be presented to a hirer for selection in a job posting flow. A dropdown is recommended.This query accepts browser tokens that include the query:ontologies scope.

Arguments

Name
Description
usageTypeCode* 
String!
Determines the list of currencies to be provided.Currently only two codes are defined:
  • All will provide every currency that SEEK supports in a job posting flow.
  • SEEKMarket will provide currencies associated with the markets SEEK is active in.

Result

Name
Description
A currency supported by the SEEK API.This may be used when specifying a price or salary range.

Sample

GraphQL
query ($usageTypeCode: String!) {
  currencies(usageTypeCode: $usageTypeCode) {
    code
  }
}