[docs]@router.delete("/unsubscribe/{sub_id}")asyncdefunsubscribe(scanner:DependsScanner,sub_id:str)->Json:'''unsubscribe Args: sub_id (str): the subscription id Returns: Json'''awaitscanner.unsubscribe(sub_id=sub_id)returnJson({"ok":True,"message":"Unsubscribed Successfully","result":True})