action apacta_get_mass_messages_users_mass_messages_user_id { label: "View mass message" provider: apacta method: GET path: "/mass_messages_users/{mass_messages_user_id}" encoding: json input: { type: "object" properties: { mass_messages_user_id: { type: "string" } } required: ["mass_messages_user_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } id: { type: "string" format: "uuid" } is_read: { type: "boolean" } is_sent_email: { type: "boolean" } mass_message: { type: "object" properties: { company_id: { type: "string" format: "uuid" } content: { type: "string" } created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } } } mass_message_id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } modified_by_id: { type: "string" format: "uuid" } user_id: { type: "string" format: "uuid" } } } success: { type: "boolean" } } } }