action signl4_post_users_user_id_check_permissions { label: "Checks if a user has the provided permission." provider: signl4 method: POST path: "/users/{userId}/checkPermissions" encoding: json input: { type: "object" properties: { items: { type: "array" items: { type: "string" } } teamId: { type: "string" } userId: { type: "string" } } required: ["userId"] additionalProperties: false } output: { type: "object" properties: { content: { type: "string" format: "byte" } contentDisposition: { type: "string" } contentEncoding: { type: "string" } contentType: { type: "string" } lastModified: { type: "string" format: "date-time" } name: { type: "string" } } additionalProperties: false } }