Retool · Example Payload

Retool List Groups Example

Admin PanelDashboardInternal ToolsLow CodeNo Code

Retool List Groups Example is an example object payload from Retool, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.retool.com/v1/groups",
    "headers": {
      "Authorization": "Bearer YOUR_API_TOKEN",
      "Content-Type": "application/json"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": [
        {
          "id": 1,
          "name": "All Users",
          "members": [
            { "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "email": "alice@example.com" },
            { "id": "b2c3d4e5-f6a7-8901-bcde-fa2345678901", "email": "bob@example.com" }
          ],
          "createdAt": "2024-01-01T00:00:00Z",
          "updatedAt": "2026-03-01T14:00:00Z"
        },
        {
          "id": 5,
          "name": "Engineering",
          "members": [
            { "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "email": "alice@example.com" }
          ],
          "createdAt": "2024-06-15T08:30:00Z",
          "updatedAt": "2025-12-10T11:45:00Z"
        }
      ]
    }
  }
}