action apacta_get_currencies_currency_id { label: "Get details about one currency" provider: apacta method: GET path: "/currencies/{currency_id}" encoding: json input: { type: "object" properties: { currency_id: { type: "string" } } required: ["currency_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { centiga_id: { type: "string" } created: { type: "string" format: "dateTime" } currency_sign: { type: "string" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } description: { type: "string" } id: { type: "string" format: "uuid" } identifier: { type: "string" } modified: { type: "string" format: "dateTime" } name: { type: "string" } pogo_id: { type: "string" } tripletex_id: { type: "string" } } } success: { type: "boolean" } } } }