Documentation
curl -L -X GET 'https://flux.postacksolutions.com/api/developer/projects' \
-H 'Authorization: Bearer YOUR_TOKEN'{
"projects": [
{
"id": "proj_abc123xyz",
"name": "My App",
"description": "My messaging application",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z",
"isActive": true
}
]
}Projects
List Projects
Returns a list of all projects for the authenticated developer
GET
200
{
"projects": [
{
"id": "proj_abc123xyz",
"name": "My App",
"description": "My messaging application",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z",
"isActive": true
}
]
}