action webflow_delete_app_clients_app_client_id { label: "delete_appClients_appClientId" provider: webflow method: DELETE path: "/appClients/{appClientId}" encoding: json input: { type: "object" properties: { appClientId: { type: "string" } } required: ["appClientId"] additionalProperties: false } output: { type: "object" required: ["appClientId", "callbackUrls", "clientId", "createdBy", "createdTime", "defaultLoginUrl", "description", "hasSecret", "loginUrls", "logoutUrls", "name", "updatedBy", "updatedTime"] properties: { appClientId: { type: "string" } callbackUrls: { type: "array" items: { type: "string" } } clientId: { type: "string" } clientSecret: { type: "string" } createdBy: { type: "string" } createdTime: { type: "string" } defaultLoginUrl: { type: "string" } description: { type: "string" } hasSecret: { type: "boolean" } loginUrls: { type: "array" items: { type: "string" } } logoutUrls: { type: "array" items: { type: "string" } } name: { type: "string" } updatedBy: { type: "string" } updatedTime: { type: "string" } } additionalProperties: false } }