Documentation
curl -L -X POST 'https://flux.postacksolutions.com/api/developer/projects/{projectId}/servers' \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"name": "Production Server",
"description": "Main production instance"
}'{
"server": {
"id": "server_abc123xyz",
"name": "Production Server",
"description": "Main production instance",
"apiKey": "key_abc123xyz",
"projectId": "proj_abc123xyz",
"createdAt": "2024-01-15T10:30:00Z"
}
}Servers
Create Server
Creates a new server for a project
POST
200
{
"server": {
"id": "server_abc123xyz",
"name": "Production Server",
"description": "Main production instance",
"apiKey": "key_abc123xyz",
"projectId": "proj_abc123xyz",
"createdAt": "2024-01-15T10:30:00Z"
}
}