action apacta_get_users_user_id_integration_settings { label: "Get a list of user integration settings" provider: apacta method: GET path: "/users/{user_id}/integration_settings" encoding: json input: { type: "object" properties: { user_id: { type: "string" } } required: ["user_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { 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" } integration_setting_id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } user_id: { type: "string" format: "uuid" } value: { type: "string" } } } } pagination: { type: "object" properties: { count: { type: "integer" } current_page: { type: "string" } has_next_page: { type: "boolean" } has_prev_page: { type: "boolean" } limit: { type: "integer" } page_count: { type: "string" } } } success: { type: "boolean" } } } }