Skip to main content
POST
/
superadmin
/
blog-posts
/
sync
Sync blog posts from marketing build
curl --request POST \
  --url https://api.engagefabric.com/superadmin/blog-posts/sync \
  --header 'Content-Type: application/json' \
  --data '
{
  "posts": [
    {
      "slug": "<string>",
      "title": "<string>",
      "tags": [
        "<string>"
      ],
      "featured": true,
      "postDate": "<string>",
      "draft": true,
      "excerpt": "<string>",
      "author": "<string>"
    }
  ]
}
'
{
  "success": true,
  "message": "<string>",
  "created": 123,
  "updated": 123,
  "total": 123
}

Body

application/json
posts
object[]
required

Array of blog posts to sync

Response

200 - application/json
success
boolean
required
message
string
required
created
number
required
updated
number
required
total
number
required