action apacta_get_events_event_id { label: "Show event" provider: apacta method: GET path: "/events/{event_id}" encoding: json input: { type: "object" properties: { event_id: { type: "string" } } required: ["event_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { company_id: { type: "string" format: "uuid" description: "Read-only" } created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" description: "Read-only" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } description: { type: "string" } end: { type: "string" format: "datetime" } id: { type: "string" format: "uuid" description: "Read-only" } modified: { type: "string" format: "dateTime" } modified_by_id: { type: "string" format: "uuid" description: "Read-only" } name: { type: "string" } project_id: { type: "string" format: "uuid" } start: { type: "string" format: "datetime" } user_id: { type: "string" format: "uuid" } } } success: { type: "boolean" } } } }