Documentation
curl -L -X GET 'https://flux.postacksolutions.com/api/developer/projects/{projectId}' \
-H 'Authorization: Bearer YOUR_TOKEN'{
"project": {
"id": "proj_abc123xyz",
"name": "My Messaging App",
"description": "My messaging application description",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z",
"isActive": true
}
}Projects
Get Project
Retrieves a specific project by ID
GET
200
{
"project": {
"id": "proj_abc123xyz",
"name": "My Messaging App",
"description": "My messaging application description",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z",
"isActive": true
}
}