## Delete Retriever `retrievers().delete(RetrieverDeleteParamsparams = RetrieverDeleteParams.none(), RequestOptionsrequestOptions = RequestOptions.none())` **delete** `/api/v1/retrievers/{retriever_id}` Delete a Retriever by ID. ### Parameters - `RetrieverDeleteParams params` - `Optional retrieverId` - `Optional organizationId` - `Optional projectId` ### Example ```java package com.llamacloud_prod.api.example; import com.llamacloud_prod.api.client.LlamaCloudClient; import com.llamacloud_prod.api.client.okhttp.LlamaCloudOkHttpClient; import com.llamacloud_prod.api.models.retrievers.RetrieverDeleteParams; public final class Main { private Main() {} public static void main(String[] args) { LlamaCloudClient client = LlamaCloudOkHttpClient.fromEnv(); client.retrievers().delete("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"); } } ```