Best answer

How can I custom error for user

  • 17 May 2023
  • 2 replies
  • 68 views

How can I change this word such as ‘My app returned “Custom Invalid param”’?

Thank you.

icon

Best answer by Marille 17 May 2023, 11:50

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

2 replies

Userlevel 4
Badge +9

Hey @Marille 👋

Great work and thanks for sharing with the Community! 

All the available error classes to throw in your code, along with examples, are described here: https://github.com/zapier/zapier-platform/blob/main/packages/cli/README.md#zerrors 

Fixed it.

return z.request(options)
  .then((response) => {

    // 
  }).catch((err) => {
    //let get_error = JSON.parse(err.message);
    //let content = JSON.parse(get_error.content);
    throw new z.errors.Error(‘My app returned “Custom Invalid param”’);
  })