action pocketsmith_get_currencies_id { label: "Get currency" description: "Gets a particular currency by its ID." provider: pocketsmith method: GET path: "/currencies/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" description: "The ISO 4217 or unofficial currency code." } minor_unit: { type: "integer" description: "The number of digits after the minor unit separator." } name: { type: "string" description: "The name of the currency." } separators: { type: "object" properties: { major: { type: "string" description: "The separator used in the major unit." } minor: { type: "string" description: "The seperator used for the minor unit." } } } symbol: { type: "string" description: "The symbol of the currency." } } } }