# Get all groups owned by the user Retrieves all groups created by the authenticated user, including the members of each group. Groups allow users to organize their shared dashboards. For extra context visit: Sharing Context Endpoint: GET /v1/shared/groups Version: 0.9.0 Security: bearer ## Response 200 fields (application/json): - `id` (string, required) The unique identifier for the group Example: "a1b2c3d4-e5f6-7890-1234-567890abcdef" - `userId` (string, required) The ID of the user who owns the group Example: "a1b2c3d4-e5f6-7890-1234-567890abcdef" - `name` (string, required) The name of the group Example: "My Favorite People" - `created` (string, required) The date and time the group was created Example: "2023-01-01T12:00:00.000Z" - `lastUpdated` (string, required) The date and time the group was last updated Example: "2023-01-01T12:00:00.000Z" - `userIds` (array, required) Array of user IDs that are members of this group Example: ["a1b2c3d4-e5f6-7890-1234-567890abcdef"] - `users` (array, required) Array of users that are members of this group - `users.fromId` (string, required) - `users.fromEmail` (string, required) - `users.toId` (string, required) - `users.toEmail` (string, required) - `users.sharedSince` (string, required) - `users.created` (string, required) - `users.lastUpdated` (string, required) - `users.customName` (string, required) - `users.iconColor` (string, required) - `users.customProfilePicture` (string, required) - `users.groupIds` (array, required) Array of group IDs that the shared user is part of Example: ["a1b2c3d4-e5f6-7890-1234-567890abcdef"] - `users.lastSyncAt` (string) Last time data was synchronized from the shared user's mobile app Example: "2024-01-01T12:00:00.000Z" ## Response 400 fields (application/json): - `timestamp` (string) - `path` (string) - `message` (array) - `statusCode` (number) ## Response 401 fields (application/json): - `timestamp` (string) - `path` (string) - `message` (array) - `statusCode` (number) ## Response 500 fields (application/json): - `timestamp` (string) - `path` (string) - `message` (array) - `statusCode` (number)