action webflow_get_profiles_profile_id { label: "get_profiles_profileId" provider: webflow method: GET path: "/profiles/{profileId}" encoding: json input: { type: "object" properties: { profileId: { type: "string" } } required: ["profileId"] additionalProperties: false } output: { type: "object" required: ["profileId"] properties: { createdTime: { type: "string" } email: { type: "string" } familyName: { type: "string" } givenName: { type: "string" } locale: { type: "string" } metadata: { type: "object" } name: { type: "string" } picture: { type: "string" } profileId: { type: "string" } updatedTime: { type: "string" } } additionalProperties: false } }