diff --git a/apps/docs/content/docs/developers/getting-started/authentication.mdx b/apps/docs/content/docs/developers/getting-started/authentication.mdx index 40e595d6d..44dd7944c 100644 --- a/apps/docs/content/docs/developers/getting-started/authentication.mdx +++ b/apps/docs/content/docs/developers/getting-started/authentication.mdx @@ -73,14 +73,14 @@ Include the token in the `Authorization` header of your HTTP requests. ### cURL ```bash -curl https://app.documenso.com/api/v2/documents \ +curl https://app.documenso.com/api/v2/document \ -H "Authorization: api_xxxxxxxxxxxxxxxx" ``` ### JavaScript / TypeScript ```typescript -const response = await fetch('https://app.documenso.com/api/v2/documents', { +const response = await fetch('https://app.documenso.com/api/v2/document', { method: 'GET', headers: { Authorization: 'api_xxxxxxxxxxxxxxxx',