PUT
/
blogs
/
v3
/
blog-authors
/
{author_id}
Update a blog author
curl --request PUT \
  --url https://api.hubapi.com/blogs/v3/blog-authors/{author_id} \
  --header 'Content-Type: application/json' \
  --data '{
  "full_name": "<string>",
  "email": "jsmith@example.com",
  "bio": "<string>",
  "avatar": "<string>",
  "website": "<string>",
  "twitter": "<string>",
  "linkedin": "<string>",
  "facebook": "<string>",
  "google_plus": "<string>"
}'
{
  "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
}

Path Parameters

author_id
integer
required

Body

application/json

Response

200 - application/json

Blog author updated

The response is of type object.