Back to Content Management API

blogUpdateBulk

Allows you to bulk update blogs.

Arguments

  • Name
    ids
    Type
    [ID!]
    Description

    Array of blog IDs that you want to update.

  • Name
    input
    Type
    [BlogUpdateInput!]!
    Description

    Array of objects for each corresponding blog ID to update.

    • title: String
    • handle: String
    • firstPublishedAt: DateTime
    • firstPublishedAtTimezone: String
    • description: String
    • seo: SEOInput
    • template: String
    • sectionIds: [ID!]

Returns

  • Name
    Job
    Type
    Job
    Description

    Any requested field from the Job object.

Request

POST
/graphql
import ApiClient from '@example/protocol-api'

const client = new ApiClient(token)

await client.contacts.list()

Response

{
  "has_more": false,
  "data": [
    {
      "id": "WAz8eIbvDR60rouK",
      "username": "FrankMcCallister",
      "phone_number": "1-800-759-3000",
      "avatar_url": "https://assets.protocol.chat/avatars/frank.jpg",
      "display_name": null,
      "conversation_id": "xgQQXg3hrtjh7AvZ",
      "last_active_at": 705103200,
      "created_at": 692233200
    },
    {
      "id": "hSIhXBhNe8X1d8Et"
      // ...
    }
  ]
}

Was this page helpful?