I have to send this data in a get request but I don't know how to do it. Can you help me?
const ROUTE = "public/v1/route";export async function showRoute( flow: string, token: string): Promise<RouteParams> { const response = await client.get(ROUTE); return response.data;}