async show(applyId: string): Promise<Apply> {
    const path = `/applies/${applyId}`
    return await this.get<Apply>(path)
  }