Hoody Files
Section titled “Hoody Files”The Hoody Files API provides system and health endpoints for the files service. These endpoints are useful for monitoring, diagnostics, and confirming API availability before integrating other files operations.
Get API version
Section titled “Get API version”Returns the current API version and server information. Use this endpoint to verify connectivity and identify the deployed version of the files service.
GET /api/v1/version
This endpoint takes no parameters.
curl -X GET https://api.hoody.com/api/v1/version \ -H "Authorization: Bearer <token>"const result = await client.files.system.getApiVersion();{ "server_version": "1.0.0", "version": "1.0.0"}Response
Section titled “Response”{ "server_version": "1.0.0", "version": "1.0.0"}| Field | Type | Description |
|---|---|---|
server_version | string | The server version |
version | string | The API version |