最近の検索


最近の検索はありません

fahev dalebig's Avatar

fahev dalebig

参加日2023年9月04日

·

前回のアクティビティ2024年3月01日

フォロー中

0

フォロワー

0

合計アクティビティ

13

投票

3

受信登録

2

アクティビティの概要

さんの最近のアクティビティ fahev dalebig

fahev dalebigさんがコメントを作成しました:

コミュニティのコメント Q&A - Apps and integrations

Hi Team, 

Is there any update?

コメントを表示 · 投稿日時:2024年3月01日 · fahev dalebig

0

フォロワー

1

投票

0

コメント


fahev dalebigさんが投稿を作成しました:

投稿 Q&A - Apps and integrations

Attachment Redacted from Comment event link: https://developer.zendesk.com/api-reference/integration-services/trigger-events/ticket-events/#attachment-redacted-from-comment

When clicking the Redact button, I need to restrict the agent.



code:

 client.on('ticket.AttachmentRedactedFromComment', () => {
          console.log('it was triggered ------------------ attachment redacted from comment' );
          const errorMessage = `Ticket not saved!`
          return true? errorMessage: true;
        });

This is the code I am using to restrict the agent from deleting (redacting) the attachment. The event is not working (ticket.AttachmentRedactedFromComment). 

Thanks in advance.

投稿日時:2024年2月27日 · fahev dalebig

1

フォロワー

2

投票

2

コメント


fahev dalebigさんがコメントを作成しました:

コミュニティのコメント Developer - Zendesk SDKs

 

Is there any update or progress on the issue we've raised? We greatly value your assistance and insights in helping us resolve this matter.

Your prompt response and guidance would be greatly appreciated.

Thank you for your attention.

コメントを表示 · 投稿日時:2023年10月25日 · fahev dalebig

0

フォロワー

0

投票

0

コメント


fahev dalebigさんがコメントを作成しました:

コミュニティのコメント Developer - Zendesk SDKs

Hi Zendesk Team, 

Is there any update on this matter?

コメントを表示 · 投稿日時:2023年10月24日 · fahev dalebig

0

フォロワー

0

投票

0

コメント


fahev dalebigさんがコメントを作成しました:

コミュニティのコメント Developer - Zendesk SDKs

Hi Zendesk Team

 

Is there any update on this?

コメントを表示 · 投稿日時:2023年10月20日 · fahev dalebig

0

フォロワー

0

投票

0

コメント


fahev dalebigさんがコメントを作成しました:

コミュニティのコメント Developer - Zendesk SDKs

Hi Greg Katechis,

is there any update on this, how we can proceed?

コメントを表示 · 投稿日時:2023年10月04日 · fahev dalebig

0

フォロワー

0

投票

0

コメント


fahev dalebigさんがコメントを作成しました:

コミュニティのコメント Developer - Zendesk SDKs

Hi Greg Katechis,

Proxy error: {:code=>"UnprocessableEntity", :status=>"422", :title=>"Unprocessable Entity", :message=>"Failed to get installation and oauth information for app."}

is being encountered when attempting to use the provided code. It appears that FormData needs to be passed in the body of a POST request, but the documentation does not provide guidance on how to do so.

How should I proceed to resolve this issue?



let data = new FormData();
    data.append("username", username);
    data.append("key", key);
    data.append("email", email);

    let config = {
      method: "post",
      maxBodyLength: Infinity,
      url: `${shopURL}/index.php?route=zendesk/customer`,
      headers: {
        "Content-Type": "application/x-www-form-urlencoded",
      },
      crossOriginIsolated: true,
      data: JSON.stringify(data),
      secure: true,
  };

    return client.request(config);

 

When I passed the build for review process marketplace team rejected it because of security issues, I am using Axios inside the Zendesk SDK, I could not figure it out where is the mistake.

 

this is my manifest parameters

コメントを表示 · 編集日時:2023年10月03日 · fahev dalebig

0

フォロワー

0

投票

0

コメント


fahev dalebigさんが投稿を作成しました:

投稿 Developer - Zendesk SDKs

I making an API calls inside the SDK application with the Axios POST method and Formdata, you can in the below code.

const axios = require('axios');
const FormData = require('form-data');
let data = new FormData();
data.append('username', 'balu');
data.append('key', jhjjjjhjjjhh');
data.append('email', 'anish.k@spritle.com');

let config = {
  method: 'post',
  maxBodyLength: Infinity,
  url: 'https://opencart.ajithr.com/index.php?route=zendesk/customer',
  headers: { 
    'Content-Type': 'application/json', 
    'Cookie': 'OCSESSID=0c4898f4cd2a443a21c3fb3324; currency=USD', 
    ...data.getHeaders()
  },
  data : data
};

axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});

How can I change this Axios method into a client method? 

I documentation also can't able to find it.

Thanks in advance.

投稿日時:2023年9月04日 · fahev dalebig

1

フォロワー

8

投票

12

コメント