action britbox_delete_profile_with_id { label: "deleteProfileWithId" description: "Delete a profile with a specific id under the active account.\n\nNote that you cannot delete the primary profile.\n" provider: britbox method: DELETE path: "/account/profiles/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }