Documentation
curl -L -X POST 'https://flux.postacksolutions.com/api/developer/projects' \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"name": "My Messaging App",
"description": "My messaging application description"
}'{
"project": {
"id": "proj_abc123xyz",
"name": "My Messaging App",
"description": "My messaging application description",
"apiSecret": "secret_abc123xyz",
"createdAt": "2024-01-15T10:30:00Z"
}
}Projects
Create Project
Creates a new project for the authenticated developer
POST
200
{
"project": {
"id": "proj_abc123xyz",
"name": "My Messaging App",
"description": "My messaging application description",
"apiSecret": "secret_abc123xyz",
"createdAt": "2024-01-15T10:30:00Z"
}
}