Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.discovr.media/llms.txt

Use this file to discover all available pages before exploring further.

Permanently deletes a profile and all associated data. Warning: This action cannot be undone. All lists, ratings, viewing history, and other data associated with this profile will be permanently deleted. Make sure you want to delete the profile before calling this endpoint. Note: You cannot delete your last remaining profile. Attempting to delete the last profile will return a 400 error.

Parameters

NameTypeRequiredDescription
profileIdstringYesThe unique identifier of the profile to delete

Returns

DeleteProfileResponse — Profile deleted successfully
{
  "message": "string"
}

Example

import { DiscovrClient } from "discovr";
import type { DeleteProfileResponse } from "discovr";

const discovr = new DiscovrClient("your-client-id", {
  basePath: "https://api.discovr.media",
});

// After sign-in and profile selection …
const response: DeleteProfileResponse = await discovr.deleteProfile("profile_abc123xyz");
console.log(response);