Feature Request: Maybe API #2123
Closed
pronoym99
started this conversation in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the feature
The proposed feature is a Maybe API that allows users and developers to integrate other applications or services with Maybe. This API would enable users to programmatically interact with their financial data, import and export data, and build custom tools or workflows around Maybe's platform. It would also support secure endpoints for CRUD (Create, Read, Update, Delete) operations on the app data.
Why is this feature important?
Additional context, screenshots, and relevant links
Here are some possible API Routes assuming RESTful API endpoints. Although to provide a more flexible interface, I would suggest Graphql.
POST /api/v1/auth/login
: Authenticate a user.POST /api/v1/auth/token
: Generate API tokens for secure access.GET /api/v1/transactions
: Fetch all financial transactions.POST /api/v1/transactions
: Add a new transaction.PUT /api/v1/transactions/{id}
: Update an existing transaction.DELETE /api/v1/transactions/{id}
: Delete a specific transaction.GET /api/v1/budgets
: Retrieve user budget information.POST /api/v1/budgets
: Create or update a budget.GET /api/v1/analytics
: Fetch financial analytics and insights.Beta Was this translation helpful? Give feedback.
All reactions