Documentation
curl -L -X GET 'https://flux.postacksolutions.com/api/developer/projects/{projectId}/servers/{serverId}' \
-H 'Authorization: Bearer YOUR_TOKEN'{
"server": {
"id": "server_abc123xyz",
"name": "Production Server",
"description": "Main production instance",
"projectId": "proj_abc123xyz",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z",
"isActive": true
}
}Servers
Get Server
Retrieves a specific server by ID
GET
200
{
"server": {
"id": "server_abc123xyz",
"name": "Production Server",
"description": "Main production instance",
"projectId": "proj_abc123xyz",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z",
"isActive": true
}
}