Skip to content

Commit

Permalink
update docs -- organization endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
suchintan committed Sep 2, 2024
1 parent 65d25d9 commit 6a2f9ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/integrations/api.mdx
Original file line number Diff line number Diff line change
@@ -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"
}

0 comments on commit 6a2f9ab

Please sign in to comment.