action slideroom_application_delete_attributes_v2 { label: "Deletes a custom attribute for an application." provider: slideroom method: DELETE path: "/api/v2/application/{applicationId}/attributes" encoding: json input: { type: "object" properties: { applicationId: { type: "string" } name: { type: "string" } } required: ["applicationId", "name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }