# The taClient.setTournamentShowQualifierButton() method This documents the `taClient.setTournamentShowQualifierButton()` method.
info
Async: This is a method you would want to use await with
This method has input parameters. The function could easily be defined as: ```ts async function setTournamentShowQualifierButton(tournamentId: string, show: boolean): Promise { // backend logic } ``` ## Parameters: - **tournamentId** (string): The GUID of the tournament - **show** (boolean): Whether to show the qualifier button in the tournament menu ## General usage: ```ts const response: Response = taClient.setTournamentShowQualifierButton(tournamentGuid, true); ``` - For `Response` please find documentation at [Models -> Response](/documentation#Models/4-Response) If you have not yet, please read [Client -> Introduction to the Client](/documentation#Client/3-client-intro) ## Standard Response: ```js { details: { setTournamentShowQualifierButton: Response_SetTournamentShowQualifierButton, oneofKind: 'setTournamentShowQualifierButton' }, respondingToPacketId: 'packet-guid-uuidv4', type: Response_ResponseType } ``` - For `Response_SetTournamentShowQualifierButton` please find documentation at [Models -> Response_SetTournamentShowQualifierButton](/documentation#Models/4-Response_SetTournamentShowQualifierButton).
info
Note: When enabled, players will see a qualifier button in the tournament menu within the game. When disabled, the qualifier button is hidden.