From 6a2f9ab4cfd85bc216d04404eca6137b54f2da28 Mon Sep 17 00:00:00 2001 From: Suchintan Singh Date: Mon, 2 Sep 2024 17:34:22 -0400 Subject: [PATCH] update docs -- organization endpoint --- docs/integrations/api.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/integrations/api.mdx b/docs/integrations/api.mdx index 20fe6d7e..0020d70e 100644 --- a/docs/integrations/api.mdx +++ b/docs/integrations/api.mdx @@ -12,7 +12,7 @@ Retrieves the organization information for the current authenticated user. ### Endpoint ``` -GET /organizations +GET https://api.skyvern.com/api/v1/organizations ``` ### Authentication @@ -55,7 +55,7 @@ The API will return a JSON object containing an array of organizations associate Using cURL: ```bash -curl -X GET "https://api.skyvern.com/organizations" \ +curl -X GET "https://api.skyvern.com/api/v1/organizations" \ -H "x-api-key: your_api_key_here" ``` @@ -64,7 +64,7 @@ Using Python with the `requests` library: ```python import requests -url = "https://api.skyvern.com/organizations" +url = "https://api.skyvern.com/api/v1/organizations" headers = { "x-api-key": "your_api_key" }