Documentation
Projects

List Projects

Returns a list of all projects for the authenticated developer

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

Authorizations

Authorization
string
header
required

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

Response

200
application/json

Successful response

projects
array

Array of project objects