Recent searches


No recent searches

KAZUYUKI NITANAI's Avatar

KAZUYUKI NITANAI

Joined Jan 27, 2025

·

Last activity Feb 03, 2025

Following

0

Followers

0

Total activity

3

Votes

0

Subscription

1

ACTIVITY OVERVIEW

Latest activity by KAZUYUKI NITANAI

KAZUYUKI NITANAI commented,

Community comment Developer - Zendesk APIs

Hi James

 

I ran cURL and it ran without any problems.

This indicated a problem with the gas, so I checked again,

 

'contentType': 'application/json',

 was incorrect and

'Content-Type': 'application/json',

 was the correct way to describe it.

 

 Because of this mistake, subsequent payloads could not recognize it.

 

 

 The problem has been resolved. Thank you for your cooperation.

View comment · Posted Feb 03, 2025 · KAZUYUKI NITANAI

0

Followers

0

Votes

0

Comments


KAZUYUKI NITANAI created a post,

Post Developer - Zendesk APIs

Hello everyone,

As you read the following, I am trying to create something in gas that will create articles in the Help Center.

 

It says that required fields are missing, but what is missing?

 

Referring URL
https://developer.zendesk.com/api-reference/help_center/help-center-api/articles/
See Create Article

 

Created program (gas)
*How to execute the API

function zendeskPostArticle() {

  var url = 'https://xxxxxxxxx.zendesk.com/api/v2/help_center/ja/sections/**********/articles';

  const TOKEN = '********';
  const EMAIL = '********';

  var postjson = {
    "article": {
      "body": "Use a tripod",
      "locale": "ja",
      "permission_group_id": ******,
      "title": "Taking photos in low light",
      "user_segment_id": *****
    },
    "notify_subscribers": false
  }

  var options = {
      'method': 'POST',
      'headers': {
          'Authorization': "Basic " + Utilities.base64Encode(Utilities.newBlob(EMAIL + '/token:' + TOKEN).getBytes()),
          'contentType': 'application/json',
          'Accept': 'application/json'
      },
      'payload': JSON.stringify(postjson)
  };

  var response = UrlFetchApp.fetch(url, options);
  var json = JSON.parse(response.getContentText("UTF-8"));
}


The error that occurred:

Exception: Request failed for https://xxxxxxxxx.zendesk.com returned code 400. Truncated server response: Required parameter missing: article

 

thank you

Edited Jan 27, 2025 · KAZUYUKI NITANAI

0

Followers

2

Votes

2

Comments