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

Response

201 - application/json

Blog author created

The response is of type object.