Delete a Note or Call Log
DELETE https://api.chartmogul.com/v1/customer_notes/{NOTE_UUID}
Deletes the specified note object.
curl -X DELETE "https://api.chartmogul.com/v1/customer_notes/note_39351ba6-dea0-11ee-ac96-37b2b3de29af" \
-u YOUR_API_KEY:
ChartMogul::Note.retrieve("note_39351ba6-dea0-11ee-ac96-37b2b3de29af").destroy!
ChartMogul.CustomerNote.destroy(
config,
"note_39351ba6-dea0-11ee-ac96-37b2b3de29af"
);
ChartMogul\CustomerNote::retrieve("note_39351ba6-dea0-11ee-ac96-37b2b3de29af")->destroy();
api.DeleteNote("note_39351ba6-dea0-11ee-ac96-37b2b3de29af")
chartmogul.CustomerNote.destroy(
config, uuid="note_39351ba6-dea0-11ee-ac96-37b2b3de29af"
)
{}
true
{}
true
nil
None
Path parameters
note_uuid
string required- The ChartMogul UUID of the note you’re deleting.