Rest apiEndpoints
List Users
Get all users
Authorization
token AuthorizationBearer <token>
Recal API token
In: header
Response Body
application/json
curl -X GET "https://example.com/v1/users"{ "data": [ { "createdAt": "2025-04-24T00:00:00.000Z", "id": "user_123", "oauthConnections": [ { "alive": true, "email": "user@example.com", "expiresAt": "2019-08-24T14:15:22Z", "provider": "google", "scope": [ "string" ], "type": "string", "accessToken": null, "refreshToken": null } ], "organizations": [ { "createdAt": "2025-04-24T00:00:00.000Z", "name": "Recal", "slug": "recal", "members": [ { "createdAt": "2025-04-24T00:00:00.000Z", "id": "user_123" } ] } ] } ]}