action webflow_post_app_clients { label: "post_appClients" provider: webflow method: POST path: "/appClients" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" } callbackUrls: { type: "array" items: { type: "string" } } defaultLoginUrl: { type: "string" } description: { type: "string" } generateSecret: { type: "boolean" } loginUrls: { type: "array" items: { type: "string" } } logoutUrls: { type: "array" items: { type: "string" } } name: { type: "string" } } required: ["Content-Type"] 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 } }