action apacta_get_countries_country_id { label: "Get details about one country" provider: apacta method: GET path: "/countries/{country_id}" encoding: json input: { type: "object" properties: { country_id: { type: "string" } } required: ["country_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { created: { type: "string" format: "dateTime" } currency_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } id: { type: "string" format: "uuid" } identifier: { type: "string" } language_id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } name: { type: "string" } phone_code: { type: "string" } time_zone: { type: "string" } } } success: { type: "boolean" } } } }