AI Video Generation Implementation

This commit is contained in:
ajaysi
2025-11-17 17:38:23 +05:30
parent 4901b7eb72
commit bf7493c366
132 changed files with 6200 additions and 19475 deletions

View File

@@ -0,0 +1,58 @@
# API (Summary)
Short reference of Wix integration endpoints exposed by ALwritys backend.
## Authentication
### Get Authorization URL
```http
GET /api/wix/auth/url?state=optional_state
```
### OAuth Callback
```http
POST /api/wix/auth/callback
Content-Type: application/json
{
"code": "authorization_code",
"state": "optional_state"
}
```
## Connection
### Status
```http
GET /api/wix/connection/status
```
### Disconnect
```http
POST /api/wix/disconnect
```
## Publishing
### Publish blog post
```http
POST /api/wix/publish
Content-Type: application/json
{
"title": "Blog Post Title",
"content": "Markdown",
"cover_image_url": "https://example.com/image.jpg",
"category_ids": ["category_id"],
"tag_ids": ["tag_id_1", "tag_id_2"],
"publish": true
}
```
## Content Management
### Categories
```http
GET /api/wix/categories
```
### Tags
```http
GET /api/wix/tags
```