4_api_users_table.json

694 B
09/07/2025 14:45
JSON
4_api_users_table.json
{
  "id": "4_api_users_table",
  "title": "ผู้ใช้จาก External API",
  "type": "table",
  "refreshInterval": 0,
  "dataSource": {
    "type": "api",
    "request": {
      "endpoint": "https://jsonplaceholder.typicode.com/users",
      "method": "GET",
      "headers": {
        "Content-Type": "application/json"
      }
    }
  },
  "displayOptions": {
    "pagination": {
        "enabled": true,
        "limit": 6
    },
    "columns": [
      { "dataKey": "id", "displayName": "ID", "visible": true },
      { "dataKey": "name", "displayName": "ชื่อ", "visible": true },
      { "dataKey": "email", "displayName": "อีเมล", "visible": true }
    ]
  }
}