支援

/v1/support

使用 support 節點就您的 WhatsApp Business API 用戶端取得協助。請查看「聯絡支援團隊」一文,了解更多有關開立直接支援工作單的資訊。

檢索

support 節點發出的 API 呼叫會傳回相關資訊,以便支援團隊用來幫助您解決問題。

範例

GET /v1/support

使用 cURL

curl  https://your-webapp-hostname:your-webapp-port/v1/support \
  -H 'Authorization: Bearer your-auth-token' 

成功的回應會包含與您 WhatsApp Business API 用戶端相關的資料。回應中的欄位可能會視乎您具體的安裝情況而異:

單一實例

{
    "support": {   
        "context": "healthcheck", # context of the API
        "db_engine": "MYSQL"
        "db_info": [ database-driver-version ],
        "debug_info": "business-phone-number", #phone number if registered, otherwise, unregistered
        "description": "whatsapp-build-version",
        "device_iso8601": "current-timestamp",
  
        "e2e": { # encryption debug info
            "identity_timestamp": "id-timestamp",
            "registration_id": registration-id
        },
  
        "env": [ client-env-variables ],
        "expire_timestamp": "2018-09-27T14:26:07", # app build version expires timestamp 
        "free_space_data": 9223372036853727000, # bytes available on the data directory  
        "free_space_logs": 14269902848, # bytes available on the log directory
        "free_space_media_incoming": 9223372036853727000, # bytes available on the media incoming directory
        "free_space_media_outgoing": 9223372036853727000, # bytes available on the media outgoing directory
        "lc": "en", # lowercase, two-letter ISO 639 language code, ZZ if code is unknown
        "lg": "US", # uppercase, two or three-letter ISO 3166 country code, ZZ if code is unknown
        "multi_connect": false, # specifies whether current client is multiconnect enabled 
        "os_name": "ubuntu-x86_64", # operating system name 
        "os_version": "16.04", # operating system version

        "schema": { # database schema versions
            "axolotl": 1,
            "callback": 2,
            "cluster": 3,
            "config": 4,
            "contact": 5,
            "jobqueue": 6,
            "message": 7
        },
        "socket_conn": "UP | DN" | "SC" | "UP receiving offline" | "UNK", # see options below
        "version": "build-version"    
    }
}

高可用性/多點連線

{
    "support": {
        "your-hostname1:your-container-id1": {
          "multi_connect" : true,
          "role": "primary_master | secondary_master | coreapp",
          "shards": [ [your-owned-shard-id, your-owned-shard-id], ...],
          "context": "healthcheck",
          "db_engine": "MYSQL | PGSQL",
          "db_info": [ ... ],
          "debug_info": "enterprise phone number",
          "description": "build information",
          ...
        },
        "your-hostname2:your-container-id2": {
          "multi_connect" : true,
          "role": "primary_master | secondary_master | coreapp",
          "shards": [ [your-owned-shard-id, your-owned-shard-id], ...],
          "context": "healthcheck",
          "db_engine": "MYSQL | PGSQL",
          "db_info": [ ... ],
          "debug_info": "enterprise phone number",
          "description": "build information",
          ...
        },
    }
}

參數

socket_conn 欄位

socket_conn 欄位會提供 WhatsApp 伺服器連線的目前狀態。

名稱說明

DN

已與 WhatsApp 伺服器解除連線。

UP

已連線至 WhatsApp 伺服器。

SC

正在連線至 WhatsApp 伺服器。

UP receiving offline

正在連線至 WhatsApp 伺服器及接收伺服器傳送的離線訊息。

UNK

未知的連線狀態。

shards 欄位

  • 在高可用性設定中,只有一個核心應用程式會同時擁有控制分片(-1)和一般分片(0)。其分片欄位為 [[-1, -1], [0, 0]],而其他節點的分片欄位則為 []
  • 在多點連線設定中,主要的主節點會擁有控制分片(-1),而其分片欄位為 [[-1, -1]]。在擁有分片的核心應用程式中,其分片欄位為 [[owned-shard-id,owned shard id]]。目前,一個核心應用程式同時只能擁有 1 個分片。

role 欄位

名稱說明

role

容器在高可用性/多點連線設定中的角色。


值:primary_mastersecondary_mastercoreapp