# List budget members by user ID This endpoint allows you to retrieve budget members by their user ID. Endpoint: GET /v1/businesses/{client_id}/users/{user_id}/budget-members Version: v1 Security: BearerAuth ## Path parameters: - `client_id` (integer, required) The ID of the business. Example: 123 - `user_id` (integer, required) The ID of the user. ## Response 200 fields (application/json): - `count` (integer) The total number of budget members for the user. Example: 100 - `next` (string) The URL to the next page of budget members. Example: "offset=50&limit=50" - `previous` (string) The URL to the previous page of budget members. Example: "offset=0&limit=50" - `results` (array) - `results.id` (string) The ID of the budget member. Example: "e33b7c61-5124-4ba0-b238-e4c573133715" - `results.budget` (object) The budget for the budget member. - `results.budget.id` (string) The ID of the budget. Example: "e33b7c61-5124-4ba0-b238-e4c573133715" - `results.budget.name` (string) The name of the budget. Example: "Sales Team" - `results.budget.budget_type` (string) The type of budget. Enum: "BUDGET", "SUBSCRIPTION" - `results.available_amount` (number) The available amount of the budget member. Example: 800 - `results.spent_amount` (number) The amount of the budget that has been spent by the budget member. Example: 200 - `results.reset_amount` (number) The reset amount of the budget member. Example: 1000 - `results.is_deleted` (boolean) Whether the budget member is deleted. - `results.created` (string) The date and time when the budget member was created in UTC. Example: "2024-01-01T00:00:00Z" - `results.updated` (string) The date and time when the budget member was last updated in UTC. Example: "2024-01-01T00:00:00Z"