Get Supported Disappearing Durations

Supported & Tested

Return supported disappearing-message duration options.

GEThttps://api.waplix.io/api/v1/chats/disappearing-durations
Authentication
Authorization: Bearer YOUR_API_KEY
Parameters Specification
instance_id
stringReq

Required Waplix instance id

Usage Notes
Verified on production. Public documentation uses sanitized example data only.
Request Payload Example
Request
curl -X GET "https://api.waplix.io/api/v1/api/v1/chats/disappearing-durations" \
  -H "Authorization: Bearer YOUR_API_KEY"
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "durations": [
      {
        "label": "Off",
        "seconds": 0,
        "value": "off"
      },
      {
        "label": "24 Hours",
        "seconds": 86400,
        "value": "24h"
      },
      {
        "label": "7 Days",
        "seconds": 604800,
        "value": "7d"
      },
      {
        "label": "90 Days",
        "seconds": 7776000,
        "value": "90d"
      }
    ]
  }
}
Was this page helpful?