(PowerShell) WhatsApp - Delete Media
Demonstrates how to delete media previously uploaded to the WhatsApp Business API client For more information, see https://developers.facebook.com/docs/whatsapp/api/media#delete
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$http = New-Object 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"
$resp = $http.QuickRequest("DELETE","https://your-webapp-hostname:your-webapp-port/v1/media/media-id")
if ($http.LastMethodSuccess -eq $false) {
$($http.LastErrorText)
exit
}
$respStatusCode = $resp.StatusCode
$("Response Status Code = " + $respStatusCode)
if ($respStatusCode -ne 200) {
$("Response Header:")
$($resp.Header)
$("Response Body:")
$($resp.BodyStr)
$("Failed.")
exit
}
$("Success.")
|