Resources
Engineers and resource groups. Auth:X-API-Key header. Base: https://api.vh3connect.io/api:YdihQNr3.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Engineers and resource groups
X-API-Key header. Base: https://api.vh3connect.io/api:YdihQNr3.
| Param | Type | Description |
|---|---|---|
pageNumber | integer | Page index (1-based) |
pageSize | integer | Items per page (default 100, max 1000) |
sortBy | string | Sort field (endpoint-specific) |
direction | enum | ascending or descending |
GET /resources/resource_getcurl -G "https://api.vh3connect.io/api:YdihQNr3/resources/resource_get" \
-H "X-API-Key: your-api-key" \
--data-urlencode "resourceId=100"
POST /resources/resource_createcurl -X POST "https://api.vh3connect.io/api:YdihQNr3/resources/resource_create" \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"name": "Alex Engineer",
"groupId": 5
}'
POST /resources/updatecurl -X POST "https://api.vh3connect.io/api:YdihQNr3/resources/update" \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"resourceId": 100,
"name": "Alex Engineer"
}'
POST /resources/resources_listcurl -X POST "https://api.vh3connect.io/api:YdihQNr3/resources/resources_list" \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"pageNumber": 1,
"pageSize": 50
}'
GET /resource_groups/resource_group/getcurl -G "https://api.vh3connect.io/api:YdihQNr3/resource_groups/resource_group/get" \
-H "X-API-Key: your-api-key" \
--data-urlencode "resourceGroupId=5"
POST /resource_groups/listcurl -X POST "https://api.vh3connect.io/api:YdihQNr3/resource_groups/list" \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"pageNumber": 1,
"pageSize": 50
}'
Was this page helpful?
Suggestions