Status

Reply to a status with a GIF

Replies to a contact's status with a GIF. WhatsApp has no GIF wire type, so the file must be MP4. The reply is delivered to the author's 1:1 chat and quotes the status.

POST
/reply-status-gif

Replies to a contact's status with a GIF. WhatsApp has no GIF wire type, so the file must be MP4. The reply is delivered to the author's 1:1 chat and quotes the status.

Authorization

bearerAuth
AuthorizationBearer <token>

Per-user API token (UUID v4) sent as Authorization: Bearer <token>. Identifies the tenant and user.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/reply-status-gif" \  -H "Content-Type: application/json" \  -d '{    "phone": "5511999999999",    "gif": "https://cdn.example.com/reactions/wow.mp4",    "statusMessageId": "3EB0XXXX1234567890ABCDEF"  }'
{  "success": true,  "message_id": "3EB0YYYY9876543210FEDCBA",  "zaapId": "3EB0YYYY9876543210FEDCBA",  "id": "3EB0YYYY9876543210FEDCBA",  "timestamp": "2026-06-21T14:41:00-03:00",  "status_type": "reply_gif",  "mime_type": "video/mp4",  "chat_jid": "5511999999999@s.whatsapp.net"}
{  "success": false,  "error": {    "code": "invalid_media",    "message": "gif is required (MP4 URL or base64)"  }}
{  "success": false,  "error": "validation failed",  "error_code": "VALIDATION_ERROR",  "timestamp": "2026-06-15T12:00:00Z"}
{  "success": false,  "error": {    "code": "device_error",    "message": "failed to resolve user device"  }}
{  "success": false,  "error": {    "code": "upload_failed",    "message": "failed to upload media to whatsapp"  }}
{  "success": false,  "error": {    "code": "device_disconnected",    "message": "whatsapp session is not connected"  }}
{  "success": false,  "error": {    "code": "upload_timeout",    "message": "context deadline exceeded"  }}