Other
Category: Public
Base URL: /
Authentication: Mixed
Routes: 3 routes documented
Overview
This section documents 3 API routes for other.
Quick Reference
| Method | Endpoint | Description |
|---|---|---|
| GET | / |
GET / - Redirect root path to /app (admin dashboard) This en... |
| POST | /hooks/payment/stripe |
No description |
| POST | /hooks/payment/stripe_stripe |
No description |
GET Root
Endpoint: GET /
Authentication: Public (Optional)
Description
GET / - Redirect root path to /app (admin dashboard) This ensures that accessing the root URL automatically redirects users to the admin dashboard at /app
Response
Success:
// Response structure (to be documented)
Example Request
curl -X GET 'https://your-store.omnicart.cc/' \
-H 'Content-Type: application/json'
POST Hooks Payment Stripe
Endpoint: POST /hooks/payment/stripe
Authentication: Public (Optional)
Request Body
// Request body structure (to be documented)
Response
Success:
// Response structure (to be documented)
Example Request
curl -X POST 'https://your-store.omnicart.cc/hooks/payment/stripe' \
-H 'Content-Type: application/json'
POST Hooks Payment Stripe_stripe
Endpoint: POST /hooks/payment/stripe_stripe
Authentication: Public (Optional)
Request Body
// Request body structure (to be documented)
Response
Success:
// Response structure (to be documented)
Example Request
curl -X POST 'https://your-store.omnicart.cc/hooks/payment/stripe_stripe' \
-H 'Content-Type: application/json'