Complete 3-layer API flow for blog post management: create, list, update, and delete
View Postman DocumentationCreate a blog post with metadata, tags, author, and SEO fields
POST /merchant/api/v1/domains/:domain_id/blogs
POST /api/blogs
5-Step Flow:
POST /api/blogs
Utility Service · Core Microservices
List posts with filters, pagination, and search
GET /merchant/api/v1/domains/:domain_id/blogs
GET /api/blogs
GET /api/blogs?domain_id=:domain_id
Utility Service · Core Microservices
Retrieve full content of a specific blog post
GET /merchant/api/v1/domains/:domain_id/blogs/:id
GET /api/blogs/:id
GET /api/blogs/:id
Utility Service · Core Microservices
Update fields with partial updates and scheduling changes
PATCH /merchant/api/v1/domains/:domain_id/blogs/:id
PATCH /api/blogs/:id
PATCH /api/blogs/:id
Utility Service · Core Microservices
DELETE /api/cache/blogs/:id
Caching Service · Shared Services
Soft-delete a blog post
DELETE /merchant/api/v1/domains/:domain_id/blogs/:id
DELETE /api/blogs/:id
DELETE /api/blogs/:id
Utility Service · Core Microservices
DELETE /api/cache/blogs/:id
Caching Service · Shared Services
This documentation represents the internal API flow between Seller API Gateway, Seller Admin Orchestration, and Core Microservices (Utility Service for blogs, User Service for auth).