Sample code for 30+ languages & platforms
Go

WhatsApp - Delete Media

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

Chilkat Go Downloads

Go
    success := false

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

    http := chilkat.NewHttp()

    // 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.SetAuthToken("your-auth-token")

    resp := chilkat.NewHttpResponse()
    success = http.HttpNoBody("DELETE","https://your-webapp-hostname:your-webapp-port/v1/media/media-id",resp)
    if success == false {
        fmt.Println(http.LastErrorText())
        http.DisposeHttp()
        resp.DisposeHttpResponse()
        return
    }

    respStatusCode := resp.StatusCode()
    fmt.Println("Response Status Code = ", respStatusCode)
    if respStatusCode != 200 {
        fmt.Println("Response Header:")
        fmt.Println(resp.Header())
        fmt.Println("Response Body:")
        fmt.Println(resp.BodyStr())
        fmt.Println("Failed.")
        http.DisposeHttp()
        resp.DisposeHttpResponse()
        return
    }

    fmt.Println("Success.")

    http.DisposeHttp()
    resp.DisposeHttpResponse()