# Get User Group Retrieve user group details Endpoint: GET /api/v1/user-groups/{id} Version: 0.2.0 Security: bearerAuth ## Path parameters: - `id` (string, required) ID of the user group to retrieve. ## Response 200 fields (application/json): - `id` (string, required) The unique identifier of the object in the Fordefi platform. - `created_at` (string, required) The date and time when the object was created. - `modified_at` (string, required) The date and time when the object was last modified. Any change to any field of the resource is considered a modification. - `name` (string, required) The name of the user group. - `users_count` (integer, required) The number of users in the group. - `admins_count` (integer, required) The number of admins in the group. - `state` (string, required) The state of the user group. Enum: "active", "deleted" - `modified_by` (any, required) - `proposed_change` (object) The change proposal for the group. - `proposed_change.id` (string, required) The ID of the change proposal. - `proposed_change.created_at` (string, required) The time the change proposal was created. - `proposed_change.created_by` (any, required) - `proposed_change.new_name` (string) The new name of the group if it is changed. - `proposed_change.added_users` (array) The users added to the group. - `proposed_change.removed_users` (array) The users removed from the group. ## Response 400 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. - `system_error_code` (string) An additional system error code in Fordefi. ## Response 401 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. ## Response 403 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. ## Response 404 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. - `resource` (string) The type of resource. Enum: "user", "user_change_proposals", "user_group", "user_group_change_proposal", "vault", "vault_address", "vault_group", "address_group", "transaction", "batch_transaction", "path", "keyset", "auth_token", "access_token", "asset", "asset_info", "vault_derivation_path", "blockchain", "export", "quote", "import_keys_request", "vault_address_account", "exchange_asset_mapping" ## Response 408 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. ## Response 422 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (array, required) - `detail.loc` (array, required) - `detail.msg` (string, required) - `detail.type` (string, required) - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. ## Response 500 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes.