FlowSynx Version API
The Version API provides metadata about the currently running version of the FlowSynx system. This endpoint is helpful for clients, monitoring tools, or CI/CD pipelines to programmatically verify the deployed version and ensure compatibility between components.
Authentication & Authorization
The /version
endpoint is public (no authentication and authentication required).
Version Endpoint
- Method:
GET
- Endpoint:
/version
curl
Example
curl -X GET http://localhost:6262/version
Example response
{
"data": {
"version": "1.1.1"
},
"messages": [],
"succeeded": true,
"generatedAtUtc": "2025-08-03T09:06:40.3417487Z"
}
Summary Table
Method | Endpoint | Authentication | Authorization roles |
---|---|---|---|
GET | /version | Not Required | Not Required |