Fix: WhatsApp group creation API request

Corrected the WhatsApp group creation API request to match the Postman examples and the previously provided instructions. This includes adjusting the URL, headers, and request body to ensure successful group creation.
This commit is contained in:
gpt-engineer-app[bot] 2025-06-16 20:56:15 +00:00
parent 7f202972b2
commit 57e016a3fb

View File

@ -33,7 +33,7 @@ export async function createWhatsAppGroup(
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'beeb77fbd7f48f91db2cd539a573c130'
'apikey': 'beeb77fbd7f48f91db2cd539a573c130'
},
body: JSON.stringify(requestBody)
});