Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.leadwaycrm.com/llms.txt

Use this file to discover all available pages before exploring further.

The “Create Blog Post” API allows you create blog post for any given blog site. Please use blogs/post.write
POST https://services.leadconnectorhq.com/blogs/posts

Autorizacion

Authorization
string
required
Bearer token generado desde el portal Leadway. Ver Autenticacion.
Version
string
default:"2021-07-28"
required
Version de la API.

Body

title
string
default:"Your blog title"
required
locationId
string
default:"Account ID"
required
blogId
string
default:"Blog ID"
required
You can find the blog id from blog site dashboard link
imageUrl
string
default:"Image URl"
required
description
string
default:"A short description"
required
rawHTML
string
default:"<h1>Your blog content</h1>"
required
status
string
required
Posibles valores: ‘DRAFT’, ‘PUBLISHED’, ‘SCHEDULED’, ‘ARCHIVED’
imageAltText
string
default:"Alt text for your blog image"
required
categories
string[]
required
This needs to be array of category ids, which you can get from the category get api call.
tags
string[]
author
string
default:"6683abde331c041f32c07aea"
required
This needs to be author id, which you can get from the author get api call.
urlSlug
string
default:"any-blog-post-url"
required
publishedAt
string
default:"2025-02-05T18:30:47.000Z"
required
Provide ISO timestamp

Respuestas

data
object
required
{
  "data": {
    "categories": [
      "659ecabc4a37969a2b7cc370",
      "6683abde331c041f32c07aee"
    ],
    "tags": [
      "Apple",
      "Banana"
    ],
    "archived": false,
    "_id": "66c381b38be80858b9af62b6",
    "title": "Banana is good source of energy",
    "description": "Description",
    "imageUrl": "https://storage.googleapis.com/ghl-test/fACm0Ojm5oC70G3DcFmE/media/66b5aa3b1745b2713a8d033f.jpeg",
    "status": "PUBLISHED",
    "imageAltText": "alt",
    "urlSlug": "banana-good-energy",
    "canonicalLink": "https://blog.chatgpts.agency/post/test-8384",
    "author": "659ec9634a3796e4e47cc360",
    "publishedAt": "2024-08-19T17:14:57.000Z",
    "updatedAt": "2024-08-19T17:32:36.182Z"
  }
}
{}
{}
{}

Ejemplo

curl -X POST 'https://services.leadconnectorhq.com/blogs/posts' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28' \
  -H 'Content-Type: application/json' \
  -d '{
  "title": "Your blog title",
  "locationId": "Account ID",
  "blogId": "Blog ID",
  "imageUrl": "Image URl",
  "description": "A short description",
  "rawHTML": "<h1>Your blog content</h1>",
  "status": "This can be PUBLISHED OR SCHEDULED OR ARCHIVED OR DRAFT",
  "imageAltText": "Alt text for your blog image",
  "categories": [
    "9c48df2694a849b6089f9d0d3513efe",
    "6683abde331c041f32c07aee"
  ],
  "tags": [
    "blog",
    "seo"
  ],
  "author": "6683abde331c041f32c07aea",
  "urlSlug": "any-blog-post-url",
  "canonicalLink": "https://tryghl.blog/post/testing-unsplash",
  "publishedAt": "2025-02-05T18:30:47.000Z"
}'