GET
/
cms
/
v3
/
blogs
/
authors
全てのブログ執筆者を取得
curl --request GET \
  --url https://api.hubapi.com/cms/v3/blogs/authors \
  --header 'Authorization: Bearer <token>'
{
  "total": 123,
  "paging": {
    "next": {
      "link": "",
      "after": ""
    }
  },
  "results": [
    {
      "website": "<string>",
      "displayName": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "facebook": "<string>",
      "fullName": "<string>",
      "bio": "<string>",
      "language": "af",
      "linkedin": "<string>",
      "avatar": "<string>",
      "translatedFromId": 123,
      "twitter": "<string>",
      "deletedAt": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "id": "<string>",
      "updated": "2023-11-07T05:31:56Z",
      "email": "<string>",
      "slug": "<string>"
    }
  ]
}
サポートされる製品
次のいずれかの製品またはそれ以上が必要です。
Marketing HubMarketing HubProfessional
Sales HubSales Hub無料ツール
Service HubService Hub無料ツール
Content HubContent HubStarter

必須スコープ

この API には、次のいずれかのスコープが必要です。
  • content

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

createdAt
string<date-time>

指定された時間ちょうどに作成されたブログ執筆者のみを返します。

createdAfter
string<date-time>

指定された時間より後に作成されたブログ執筆者のみを返します。

createdBefore
string<date-time>

指定された時間より前に作成されたブログ執筆者のみを返します。

updatedAt
string<date-time>

指定された時間ちょうどに最後に更新されたブログ執筆者のみを返します。

updatedAfter
string<date-time>

指定された時間より後に最後に更新されたブログ執筆者のみを返します。

updatedBefore
string<date-time>

指定された時間より前に最後に更新されたブログ執筆者のみを返します。

sort
string[]

結果の並べ替えに使用するフィールドが指定されます。有効なフィールドは「name」、「createdAt」、「updatedAt」、「createdBy」、「updatedBy」で、既定では「createdAt」が使用されます。

after
string

次の結果のセットを取得するためのカーソルトークン値。これはその他の結果が含まれるページ付けされたレスポンスの「paging.next.after」JSONプロパティーから取得できます。

limit
integer

返す結果の最大数。既定値は100です。

archived
boolean

削除済みのブログ執筆者を返すかどうかを指定します。既定値は「false」です。

property
string

Response

200
application/json

successful operation

Response object for collections of blog authors with pagination information.