action up_get_accounts_id { label: "Retrieve account" description: "Retrieve a specific account by providing its unique identifier.\n" provider: up method: GET path: "/accounts/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Successful response to get a single account.\n" required: ["data"] properties: { data: { description: "The account returned in this response.\n" type: "object" } } } }