action beanstream_delete_profiles_profile_id { label: "Delete profile" description: "Delete a Payment Profile using the profile ID, also known as the Customer Code." provider: beanstream method: DELETE path: "/profiles/{profileId}" encoding: json input: { type: "object" properties: { profileId: { type: "string" } } required: ["profileId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }