Multiple draft publish or category update for FAQs

Description

You can use this API to update multiple draft or publish FAQs.

Requested Payload:

  • published : {true|false}
    This key is used to indicate whether the FAQ is in the drafted or published state. True indicates that the FAQ has been published while false indicates that the FAQ is drafted and not yet published.
  • category_id : To specify the category IDs with which the FAQs should be mapped.
  • ids : To specify an array of FAQ ids that need to be modified

Note: Any one is mandatory

OAuth Scope:

faqs.CREATE

URL:

Copiedhttps://salesiq.zoho.com/api/v3/{portal_name}/faqs

Example:

Copiedhttps://salesiq.zoho.com/api/v3/zylkerinc/faqs

Payload:

Copied{
  "ids":["53400000000298001","53400000000328001"],
  "published":"true"
}
or
{
  "ids":["53400000000298001","53400000000328001"],
  "category_id":"53400000000032123"
}