update docs -- organization endpoint
This commit is contained in:
@@ -12,7 +12,7 @@ Retrieves the organization information for the current authenticated user.
|
|||||||
### Endpoint
|
### Endpoint
|
||||||
|
|
||||||
```
|
```
|
||||||
GET /organizations
|
GET https://api.skyvern.com/api/v1/organizations
|
||||||
```
|
```
|
||||||
|
|
||||||
### Authentication
|
### Authentication
|
||||||
@@ -55,7 +55,7 @@ The API will return a JSON object containing an array of organizations associate
|
|||||||
Using cURL:
|
Using cURL:
|
||||||
|
|
||||||
```bash
|
```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"
|
-H "x-api-key: your_api_key_here"
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -64,7 +64,7 @@ Using Python with the `requests` library:
|
|||||||
```python
|
```python
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
url = "https://api.skyvern.com/organizations"
|
url = "https://api.skyvern.com/api/v1/organizations"
|
||||||
headers = {
|
headers = {
|
||||||
"x-api-key": "your_api_key"
|
"x-api-key": "your_api_key"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user