action visagecloud_update_profile_using_patch { label: "Update an existing profile with a given id" provider: visagecloud method: PATCH path: "/rest/v1.1/profile/{id}" encoding: json input: { type: "object" properties: { accessKey: { type: "string" } classificationAttributes: { type: "string" } collectionId: { type: "string" } details: { type: "string" } externalId: { type: "string" } id: { type: "string" } labels: { type: "string" } screenName: { type: "string" } secretKey: { type: "string" } } required: ["accessKey", "collectionId", "id", "secretKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }