Skip to main content
POST
/
blogs
/
v3
/
blog-authors
Create a blog author
curl --request POST \
  --url https://api.hubapi.com/blogs/v3/blog-authors \
  --header 'Content-Type: application/json' \
  --data '
{
  "full_name": "John Doe",
  "email": "john.doe@company.com",
  "bio": "Marketing specialist",
  "website": "https://company.com",
  "twitter": "@johndoe"
}
'
{
  "id": 123,
  "portal_id": 123,
  "full_name": "<string>",
  "email": "jsmith@example.com",
  "username": "<string>",
  "user_id": 123,
  "slug": "<string>",
  "bio": "<string>",
  "avatar": "<string>",
  "gravatar_url": "<string>",
  "website": "<string>",
  "twitter": "<string>",
  "linkedin": "<string>",
  "facebook": "<string>",
  "google_plus": "<string>",
  "created": 123,
  "updated": 123,
  "deleted_at": 123
}

Body

application/json
full_name
string
required
email
string<email>
required
bio
string
avatar
string
website
string
twitter
string
linkedin
string
facebook
string
google_plus
string

Response

201 - application/json

Blog author created

id
integer<int64>
portal_id
integer<int64>
full_name
string
email
string<email>
username
string
user_id
integer<int64>
slug
string
bio
string
avatar
string
gravatar_url
string
website
string
twitter
string
linkedin
string
facebook
string
google_plus
string
created
integer<int64>
updated
integer<int64>
deleted_at
integer<int64>
Last modified on December 12, 2025