# Get budget member Endpoint: GET /v1/businesses/{client_id}/budgets/{budget_id}/members/{budget_member_id} Version: v1 Security: BearerAuth ## Path parameters: - `client_id` (integer, required) The ID of the business. Example: 123 - `budget_id` (string, required) The ID of the budget. - `budget_member_id` (integer, required) The ID of the budget member. ## Response 200 fields (application/json): - `id` (string) The ID of the budget member. Example: "e33b7c61-5124-4ba0-b238-e4c573133715" - `user` (object,null) The user for the budget member. Only present if the user has accepted their invite to Weel. - `user.id` (integer) The ID of the user. Example: 123 - `user.first_name` (string) The first name of the user. Example: "John" - `user.last_name` (string) The last name of the user. Example: "Doe" - `user.name` (string) The full name of the user or the display name if the user has set one. Example: "John Doe" - `invite` (object,null) The invite for the budget member. Only present if the user has not accepted their invite to Weel. - `invite.id` (string) The ID of the invite. Example: "e33b7c61-5124-4ba0-b238-e4c573133715" - `invite.email` (string) The email of the invite. Example: "john.doe@example.com" - `available_amount` (number) The available amount of the budget member. Example: 800 - `spent_amount` (number) The amount of the budget that has been spent by the budget member. Example: 200 - `reset_amount` (number) The reset amount of the budget member. Example: 1000 - `is_deleted` (boolean) Whether the budget member is deleted.