Documentation
Servers

Get Server

Retrieves a specific server by ID

GET
/
api
/
developer
/
projects
/
{projectId}
/
servers
/
{serverId}
curl -L -X GET 'https://flux.postacksolutions.com/api/developer/projects/{projectId}/servers/{serverId}' \
  -H 'Authorization: Bearer YOUR_TOKEN'
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
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your developer access token.

Path Parameters

projectId
string
required

The unique identifier of the project

serverId
string
required

The unique identifier of the server

Response

200
application/json

Successful response

server
object

The server object