Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl -X DELETE https://api.bodhveda.com/recipients/recipient_123 \ -H "Authorization: Bearer bv_xxxxxxxxx"
import { Bodhveda } from "@bodhveda/js"; const bodhveda = new Bodhveda("bv_xxxxxxxxx"); await bodhveda.recipients.delete("recipient_123");
import ( "context" bodhveda "github.com/MudgalLabs/bodhveda/sdk/go" ) ctx := context.Background() client := bodhveda.NewClient("bv_xxxxxxxxx", nil) err := client.Recipients.Delete(ctx, "recipient_123")
{ "message": "Recipient deleted" }
{ "message": "Recipient not found" }
Remove an existing recipient.
Bearer authentication header of the form Bearer bv_xxxxxxxxx, where bv_xxxxxxxxx is your API Key with Full access scope.
Bearer bv_xxxxxxxxx
bv_xxxxxxxxx
Full access
The unique external ID of the recipient.
Recipient deleted