Home
HubSpot
Authors Api Blog Author Structure
Authors Api Blog Author Structure
Represents a blog author profile with biographical and social information
Type: object
Properties: 15
Required: 4
Analytics Commerce Content CRM Customer Service Email Marketing Marketing Marketing Automation Operations Sales
BlogAuthor is a JSON Structure definition published by HubSpot, describing 15 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
id
name
slug
email
bio
website
twitter
facebook
linkedin
avatar
language
translatedFromId
created
updated
deletedAt
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/authors-api-blog-author-structure.json",
"name": "BlogAuthor",
"description": "Represents a blog author profile with biographical and social information",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the blog author",
"example": "500123"
},
"name": {
"type": "string",
"description": "Full display name of the author",
"example": "Example Record"
},
"slug": {
"type": "string",
"description": "URL-friendly identifier for the author",
"example": "example-value"
},
"email": {
"type": "string",
"description": "Author's email address",
"example": "jsmith@example.com"
},
"bio": {
"type": "string",
"description": "Author biography or description",
"example": "example-value"
},
"website": {
"type": "uri",
"description": "Author's personal website URL",
"example": "https://app.hubspot.com/contacts/12345"
},
"twitter": {
"type": "string",
"description": "Author's Twitter/X handle",
"example": "example-value"
},
"facebook": {
"type": "string",
"description": "Author's Facebook profile URL",
"example": "example-value"
},
"linkedin": {
"type": "string",
"description": "Author's LinkedIn profile URL",
"example": "https://app.hubspot.com/contacts/12345"
},
"avatar": {
"type": "uri",
"description": "URL to the author's avatar image",
"example": "https://app.hubspot.com/contacts/12345"
},
"language": {
"type": "string",
"description": "Language code for the author profile (e.g., en, es, fr)",
"example": "en"
},
"translatedFromId": {
"type": "string",
"description": "ID of the original author this was translated from",
"example": "500123"
},
"created": {
"type": "datetime",
"description": "ISO 8601 timestamp when the author was created",
"example": "2025-03-15T14:30:00Z"
},
"updated": {
"type": "datetime",
"description": "ISO 8601 timestamp when the author was last updated",
"example": "2025-03-15T14:30:00Z"
},
"deletedAt": {
"type": "datetime",
"description": "ISO 8601 timestamp when the author was archived",
"example": "2025-03-15T14:30:00Z"
}
},
"required": [
"id",
"name",
"created",
"updated"
]
}