Retool · Example Payload

Retool Create User Example

Admin PanelDashboardInternal ToolsLow CodeNo Code

Retool Create User 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": "POST",
    "url": "https://api.retool.com/v1/users",
    "headers": {
      "Authorization": "Bearer YOUR_API_TOKEN",
      "Content-Type": "application/json"
    },
    "body": {
      "email": "carol@example.com",
      "firstName": "Carol",
      "lastName": "Williams",
      "isAdmin": false,
      "userType": "default"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "id": "c3d4e5f6-a7b8-9012-cdef-ab3456789012",
      "email": "carol@example.com",
      "firstName": "Carol",
      "lastName": "Williams",
      "isAdmin": false,
      "isDisabled": false,
      "userType": "default",
      "groups": [
        { "id": 1, "name": "All Users" }
      ],
      "createdAt": "2026-05-02T12:00:00Z",
      "updatedAt": "2026-05-02T12:00:00Z"
    }
  }
}