Sample code for 30+ languages & platforms
Node.js

WhatsApp - Delete Media

Demonstrates how to delete media previously uploaded to the WhatsApp Business API client

Chilkat Node.js Downloads

Node.js
NODEJS_PRELUDE

function chilkatExample() {

    var success = false;

    //  This example assumes the Chilkat API to have been previously unlocked.
    //  See Global Unlock Sample for sample code.

    var http = new chilkat.Http();

    //  Implements the following CURL command:

    //  curl -X DELETE \
    //    https://your-webapp-hostname:your-webapp-port/v1/media/media-id \
    //    -H 'Authorization: Bearer your-auth-token'

    //  Use the following online tool to generate HTTP code from a CURL command
    //  Convert a cURL Command to HTTP Source Code

    //  Adds the "Authorization: Bearer your-auth-token" header.
    http.AuthToken = "your-auth-token";

    var resp = new chilkat.HttpResponse();
    success = http.HttpNoBody("DELETE","https://your-webapp-hostname:your-webapp-port/v1/media/media-id",resp);
    if (success == false) {
        console.log(http.LastErrorText);
        return;
    }

    var respStatusCode = resp.StatusCode;
    console.log("Response Status Code = " + respStatusCode);
    if (respStatusCode !== 200) {
        console.log("Response Header:");
        console.log(resp.Header);
        console.log("Response Body:");
        console.log(resp.BodyStr);
        console.log("Failed.");
        return;
    }

    console.log("Success.");

}

chilkatExample();