← Zendesk + NEURONWriter integrations

Create New Query with NEURONWriter API on New Ticket Added to View (Instant) from Zendesk API

Pipedream makes it easy to connect APIs for NEURONWriter, Zendesk and 2,200+ other apps remarkably fast.

Trigger workflow on
New Ticket Added to View (Instant) from the Zendesk API
Next, do this
Create New Query with the NEURONWriter API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Zendesk trigger and NEURONWriter action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Ticket Added to View (Instant) trigger
    1. Connect your Zendesk account
    2. Select a Trigger Category ID
    3. Optional- Configure Custom Subdomain
    4. Optional- Select one or more Fields
    5. Optional- Configure JSON Body
    6. Select a View ID
  3. Configure the Create New Query action
    1. Connect your NEURONWriter account
    2. Configure Keyword
    3. Select a Search Engine
    4. Select a Language
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a ticket is added to the specified view
Version:0.0.2
Key:zendesk-ticket-added-to-view

Zendesk Overview

The Zendesk API enables seamless integration of Zendesk's customer service platform with your existing business processes and third-party applications. By leveraging this API with Pipedream, you can automate ticket tracking, sync customer data, escalate issues, and streamline communication across multiple channels. This can significantly increase efficiency, accelerate response times, and enhance the overall customer experience. Automations can range from simple notifications to complex workflows involving data transformation and multi-step actions across various services.

Trigger Code

import common from "../common/ticket.mjs";

export default {
  ...common,
  key: "zendesk-ticket-added-to-view",
  name: "New Ticket Added to View (Instant)",
  description: "Emit new event when a ticket is added to the specified view",
  version: "0.0.2",
  type: "source",
  dedupe: "unique",
  props: {
    ...common.props,
    viewId: {
      propDefinition: [
        common.props.app,
        "viewId",
      ],
    },
  },
  methods: {
    ...common.methods,
    getWebhookName() {
      return "Ticket Added To View Webhook";
    },
    getTriggerTitle() {
      return "Ticket Added To View Trigger";
    },
    getTriggerConditions() {
      return {
        any: [
          {
            field: "update_type",
            value: "Change",
          },
          {
            field: "update_type",
            value: "Create",
          },
        ],
      };
    },
    async isRelevant(payload) {
      const { tickets } = await this.app.listTicketsInView({
        viewId: this.viewId,
      });
      const foundTicket = tickets.find(({ id }) => id == payload.ticketId);
      return foundTicket;
    },
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
ZendeskappappThis component uses the Zendesk app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
Trigger Category IDcategoryIdstringSelect a value from the drop down menu.
Custom SubdomaincustomSubdomainstring

For Enterprise Zendesk accounts: optionally specify the subdomain to use. This will override the subdomain that was provided when connecting your Zendesk account to Pipedream. For example, if you Zendesk URL is https://examplehelp.zendesk.com, your subdomain is examplehelp

Fieldsfieldsstring[]Select a value from the drop down menu.
JSON BodyjsonBodystring

Custom JSON Body of the incoming payload. Setting jsonBody will overwrite the fields prop

View IDviewIdstringSelect a value from the drop down menu.

Trigger Authentication

Zendesk uses OAuth authentication. When you connect your Zendesk account, Pipedream will open a popup window where you can sign into Zendesk and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Zendesk API.

Pipedream requests the following authorization scopes when you connect your account:

triggers:writewebhooks:writereadtickets:writetickets:readusers:writeorganizations:readorganizations:write

About Zendesk

Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.

Action

Description:Launches a new query based on provided keyword, search engine, and language. [See the documentation](https://contadu.crisp.help/en/article/neuronwriter-api-how-to-use-2ds6hx/#3-new-query)
Version:0.0.1
Key:neuronwriter-create-new-query

Action Code

import {
  ENGINE_OPTIONS, LANGUAGE_OPTIONS,
} from "../../common/constants.mjs";
import neuronwriter from "../../neuronwriter.app.mjs";

export default {
  key: "neuronwriter-create-new-query",
  name: "Create New Query",
  description: "Launches a new query based on provided keyword, search engine, and language. [See the documentation](https://contadu.crisp.help/en/article/neuronwriter-api-how-to-use-2ds6hx/#3-new-query)",
  version: "0.0.1",
  type: "action",
  props: {
    neuronwriter,
    keyword: {
      type: "string",
      label: "Keyword",
      description: "The keyword to generate a query and recommendations for.",
    },
    searchEngine: {
      type: "string",
      label: "Search Engine",
      description: "Preferred search engine.",
      options: ENGINE_OPTIONS,
    },
    language: {
      type: "string",
      label: "Language",
      description: "Content language.",
      options: LANGUAGE_OPTIONS,
    },
  },
  async run({ $ }) {
    const response = await this.neuronwriter.createNewQuery({
      $,
      data: {
        project: this.neuronwriter.$auth.project_id,
        keyword: this.keyword,
        engine: this.searchEngine,
        language: this.language,
      },
    });

    $.export("$summary", `Successfully created new query with Id: ${response.query}`);
    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
NEURONWriterneuronwriterappThis component uses the NEURONWriter app.
Keywordkeywordstring

The keyword to generate a query and recommendations for.

Search EnginesearchEnginestringSelect a value from the drop down menu:{ "label": "ALBANIA | google.AL", "value": "google.al" }{ "label": "ANDORRA | google.AD", "value": "google.ad" }{ "label": "AUSTRIA | google.AT", "value": "google.at" }{ "label": "BELARUS | google.BY", "value": "google.by" }{ "label": "BELGIUM | google.BE", "value": "google.be" }{ "label": "BOSNIA AND HERZEGOVINA | google.BA", "value": "google.ba" }{ "label": "BULGARIA | google.BG", "value": "google.bg" }{ "label": "CROATIA | google.HR", "value": "google.hr" }{ "label": "CZECH REPUBLIC | google.CZ", "value": "google.cz" }{ "label": "DENMARK | google.DK", "value": "google.dk" }{ "label": "ESTONIA | google.EE", "value": "google.ee" }{ "label": "FINLAND | google.FI", "value": "google.fi" }{ "label": "FRANCE | google.FR", "value": "google.fr" }{ "label": "GERMANY | google.DE", "value": "google.de" }{ "label": "GIBRALTAR | google.com.GI", "value": "google.com.gi" }{ "label": "GREECE | google.GR", "value": "google.gr" }{ "label": "GUERNSEY | google.GG", "value": "google.gg" }{ "label": "HUNGARY | google.HU", "value": "google.hu" }{ "label": "ICELAND | google.IS", "value": "google.is" }{ "label": "IRELAND | google.IE", "value": "google.ie" }{ "label": "ISLE OF MAN | google.IM", "value": "google.im" }{ "label": "ITALY | google.IT", "value": "google.it" }{ "label": "JERSEY | google.JE", "value": "google.je" }{ "label": "LATVIA | google.LV", "value": "google.lv" }{ "label": "LIECHTENSTEIN | google.LI", "value": "google.li" }{ "label": "LITHUANIA | google.LT", "value": "google.lt" }{ "label": "LUXEMBOURG | google.LU", "value": "google.lu" }{ "label": "MACEDONIA | google.MK", "value": "google.mk" }{ "label": "MALTA | google.com.MT", "value": "google.com.mt" }{ "label": "MOLDOVA | google.MD", "value": "google.md" }{ "label": "MONTENEGRO | google.ME", "value": "google.me" }{ "label": "NETHERLANDS | google.NL", "value": "google.nl" }{ "label": "NORWAY | google.NO", "value": "google.no" }{ "label": "POLAND | google.PL", "value": "google.pl" }{ "label": "PORTUGAL | google.PT", "value": "google.pt" }{ "label": "ROMANIA | google.RO", "value": "google.ro" }{ "label": "RUSSIA | google.RU", "value": "google.ru" }{ "label": "SAN MARINO | google.SM", "value": "google.sm" }{ "label": "SERBIA | google.RS", "value": "google.rs" }{ "label": "SLOVAKIA | google.SK", "value": "google.sk" }{ "label": "SLOVENIA | google.SI", "value": "google.si" }{ "label": "SPAIN | google.ES", "value": "google.es" }{ "label": "SWEDEN | google.SE", "value": "google.se" }{ "label": "SWITZERLAND | google.CH", "value": "google.ch" }{ "label": "TURKEY | google.com.TR", "value": "google.com.tr" }{ "label": "UKRAINE | google.com.UA", "value": "google.com.ua" }{ "label": "UNITED KINGDOM | google.co.UK", "value": "google.co.uk" }{ "label": "ANTIGUA AND BARBUDA | google.com.AG", "value": "google.com.ag" }{ "label": "BAHAMAS | google.BS", "value": "google.bs" }{ "label": "BELIZE | google.com.BZ", "value": "google.com.bz" }{ "label": "BRITISH VIRGIN ISLANDS | google.VG", "value": "google.vg" }{ "label": "CANADA | google.CA", "value": "google.ca" }{ "label": "COSTA RICA | google.co.CR", "value": "google.co.cr" }{ "label": "CUBA | google.com.CU", "value": "google.com.cu" }{ "label": "DOMINICA | google.DM", "value": "google.dm" }{ "label": "DOMINICAN REPUBLIC | google.com.DO", "value": "google.com.do" }{ "label": "EL SALVADOR | google.com.SV", "value": "google.com.sv" }{ "label": "GREENLAND | google.GL", "value": "google.gl" }{ "label": "GUATEMALA | google.com.GT", "value": "google.com.gt" }{ "label": "HAITI | google.HT", "value": "google.ht" }{ "label": "HONDURAS | google.HN", "value": "google.hn" }{ "label": "JAMAICA | google.com.JM", "value": "google.com.jm" }{ "label": "MEXICO | google.com.MX", "value": "google.com.mx" }{ "label": "NICARAGUA | google.com.NI", "value": "google.com.ni" }{ "label": "PANAMA | google.com.PA", "value": "google.com.pa" }{ "label": "PUERTO RICO | google.com.PR", "value": "google.com.pr" }{ "label": "SAINT VINCENT AND THE GRENADINES | google.com.VC", "value": "google.com.vc" }{ "label": "TRINIDAD AND TOBAGO | google.TT", "value": "google.tt" }{ "label": "UNITED STATES (USA) | google.COM", "value": "google.com" }{ "label": "VIRGIN ISLANDS | google.co.VI", "value": "google.co.vi" }{ "label": "ARGENTINA | google.com.AR", "value": "google.com.ar" }{ "label": "BOLIVIA | google.com.BO", "value": "google.com.bo" }{ "label": "BRAZIL | google.com.BR", "value": "google.com.br" }{ "label": "CHILE | google.CL", "value": "google.cl" }{ "label": "COLOMBIA | google.com.CO", "value": "google.com.co" }{ "label": "ECUADOR | google.com.EC", "value": "google.com.ec" }{ "label": "GUYANA | google.GY", "value": "google.gy" }{ "label": "PARAGUAY | google.com.PY", "value": "google.com.py" }{ "label": "PERU | google.com.PE", "value": "google.com.pe" }{ "label": "SURINAME | google.SR", "value": "google.sr" }{ "label": "URUGUAY | google.com.UY", "value": "google.com.uy" }{ "label": "VENEZUELA | google.co.VE", "value": "google.co.ve" }{ "label": "AFGHANISTAN | google.com.AF", "value": "google.com.af" }{ "label": "ARMENIA | google.AM", "value": "google.am" }{ "label": "AZERBAIJAN | google.AZ", "value": "google.az" }{ "label": "BAHRAIN | google.com.BH", "value": "google.com.bh" }{ "label": "BANGLADESH | google.com.BD", "value": "google.com.bd" }{ "label": "BHUTAN | google.BT", "value": "google.bt" }{ "label": "BRUNEI | google.com.BN", "value": "google.com.bn" }{ "label": "CAMBODIA | google.com.KH", "value": "google.com.kh" }{ "label": "CHINA | google.CN", "value": "google.cn" }{ "label": "CYPRUS | google.com.CY", "value": "google.com.cy" }{ "label": "GEORGIA | google.GE", "value": "google.ge" }{ "label": "HONG KONG | google.com.HK", "value": "google.com.hk" }{ "label": "INDIA | google.co.IN", "value": "google.co.in" }{ "label": "INDONESIA | google.co.ID", "value": "google.co.id" }{ "label": "IRAQ | google.IQ", "value": "google.iq" }{ "label": "ISRAEL | google.co.IL", "value": "google.co.il" }{ "label": "JAPAN | google.co.JP", "value": "google.co.jp" }{ "label": "JORDAN | google.JO", "value": "google.jo" }{ "label": "KAZAKHSTAN | google.KZ", "value": "google.kz" }{ "label": "KUWAIT | google.com.KW", "value": "google.com.kw" }{ "label": "KYRGYZSTAN | google.KG", "value": "google.kg" }{ "label": "LAOS | google.LA", "value": "google.la" }{ "label": "LEBANON | google.com.LB", "value": "google.com.lb" }{ "label": "MALAYSIA | google.com.MY", "value": "google.com.my" }{ "label": "MALDIVES | google.MV", "value": "google.mv" }{ "label": "MONGOLIA | google.MN", "value": "google.mn" }{ "label": "MYANMAR | google.com.MM", "value": "google.com.mm" }{ "label": "NEPAL | google.com.NP", "value": "google.com.np" }{ "label": "OMAN | google.com.OM", "value": "google.com.om" }{ "label": "PAKISTAN | google.com.PK", "value": "google.com.pk" }{ "label": "PALESTINE | google.PS", "value": "google.ps" }{ "label": "PHILIPPINES | google.com.PH", "value": "google.com.ph" }{ "label": "QATAR | google.com.QA", "value": "google.com.qa" }{ "label": "SAUDI ARABIA | google.com.SA", "value": "google.com.sa" }{ "label": "SINGAPORE | google.com.SG", "value": "google.com.sg" }{ "label": "SOUTH KOREA | google.co.KR", "value": "google.co.kr" }{ "label": "SRI LANKA | google.LK", "value": "google.lk" }{ "label": "TAIWAN | google.com.TW", "value": "google.com.tw" }{ "label": "TAJIKISTAN | google.com.TJ", "value": "google.com.tj" }{ "label": "THAILAND | google.co.TH", "value": "google.co.th" }{ "label": "TIMOR-LESTE | google.TL", "value": "google.tl" }{ "label": "TURKMENISTAN | google.TM", "value": "google.tm" }{ "label": "UNITED ARAB EMIRATES | google.AE", "value": "google.ae" }{ "label": "UZBEKISTAN | google.co.UZ", "value": "google.co.uz" }{ "label": "VIETNAM | google.com.VN", "value": "google.com.vn" }{ "label": "ALGERIA | google.DZ", "value": "google.dz" }{ "label": "ANGOLA | google.co.AO", "value": "google.co.ao" }{ "label": "BENIN | google.BJ", "value": "google.bj" }{ "label": "BOTSWANA | google.co.BW", "value": "google.co.bw" }{ "label": "BURKINA FASO | google.BF", "value": "google.bf" }{ "label": "BURUNDI | google.BI", "value": "google.bi" }{ "label": "CAMEROON | google.CM", "value": "google.cm" }{ "label": "CAPE VERDE | google.CV", "value": "google.cv" }{ "label": "CENTRAL AFRICAN REPUBLIC | google.CF", "value": "google.cf" }{ "label": "CHAD | google.TD", "value": "google.td" }{ "label": "DEMOCRATIC REPUBLIC OF THE CONGO | google.CD", "value": "google.cd" }{ "label": "DJIBOUTI | google.DJ", "value": "google.dj" }{ "label": "EGYPT | google.com.EG", "value": "google.com.eg" }{ "label": "ETHIOPIA | google.com.ET", "value": "google.com.et" }{ "label": "GABON | google.GA", "value": "google.ga" }{ "label": "GAMBIA | google.GM", "value": "google.gm" }{ "label": "GHANA | google.com.GH", "value": "google.com.gh" }{ "label": "IVORY COAST | google.CI", "value": "google.ci" }{ "label": "KENYA | google.co.KE", "value": "google.co.ke" }{ "label": "LESOTHO | google.co.LS", "value": "google.co.ls" }{ "label": "LIBYA | google.com.LY", "value": "google.com.ly" }{ "label": "MADAGASCAR | google.MG", "value": "google.mg" }{ "label": "MALAWI | google.MW", "value": "google.mw" }{ "label": "MALI | google.ML", "value": "google.ml" }{ "label": "MAURITIUS | google.MU", "value": "google.mu" }{ "label": "MOROCCO | google.co.MA", "value": "google.co.ma" }{ "label": "MOZAMBIQUE | google.co.MZ", "value": "google.co.mz" }{ "label": "NAMIBIA | google.com.NA", "value": "google.com.na" }{ "label": "NIGER | google.NE", "value": "google.ne" }{ "label": "NIGERIA | google.com.NG", "value": "google.com.ng" }{ "label": "REPUBLIC OF THE CONGO | google.CG", "value": "google.cg" }{ "label": "RWANDA | google.RW", "value": "google.rw" }{ "label": "SAINT HELENA | google.SH", "value": "google.sh" }{ "label": "SAO TOMÉ AND PRÍNCIPE | google.ST", "value": "google.st" }{ "label": "SENEGAL | google.SN", "value": "google.sn" }{ "label": "SEYCHELLES | google.SC", "value": "google.sc" }{ "label": "SIERRA LEONE | google.com.SL", "value": "google.com.sl" }{ "label": "SOMALIA | google.SO", "value": "google.so" }{ "label": "SOUTH AFRICA | google.co.ZA", "value": "google.co.za" }{ "label": "TANZANIA | google.co.TZ", "value": "google.co.tz" }{ "label": "TOGO | google.TG", "value": "google.tg" }{ "label": "TUNISIA | google.TN", "value": "google.tn" }{ "label": "UGANDA | google.co.UG", "value": "google.co.ug" }{ "label": "ZAMBIA | google.co.ZM", "value": "google.co.zm" }{ "label": "ZIMBABWE | google.co.ZW", "value": "google.co.zw" }{ "label": "AMERICAN SAMOA | google.AS", "value": "google.as" }{ "label": "ANGUILLA | google.com.AI", "value": "google.com.ai" }{ "label": "AUSTRALIA | google.com.AU", "value": "google.com.au" }{ "label": "COOK ISLANDS | google.co.CK", "value": "google.co.ck" }{ "label": "FIJI | google.com.FJ", "value": "google.com.fj" }{ "label": "KIRIBATI | google.KI", "value": "google.ki" }{ "label": "MICRONESIA | google.FM", "value": "google.fm" }{ "label": "MONTSERRAT | google.MS", "value": "google.ms" }{ "label": "NAURU | google.NR", "value": "google.nr" }{ "label": "NEW ZEALAND | google.co.NZ", "value": "google.co.nz" }{ "label": "NIUE | google.NU", "value": "google.nu" }{ "label": "PAPUA NEW GUINEA | google.com.PG", "value": "google.com.pg" }{ "label": "PITCAIRN | google.PN", "value": "google.pn" }{ "label": "SOLOMON ISLANDS | google.com.SB", "value": "google.com.sb" }{ "label": "TONGA | google.TO", "value": "google.to" }{ "label": "VANUATU | google.VU", "value": "google.vu" }{ "label": "WESTERN SAMOA | google.WS", "value": "google.ws" }
LanguagelanguagestringSelect a value from the drop down menu:AbkhazianAfarAfrikaansAkanAlbanianAmharicArabicAragoneseArmenianAssameseAvaricAymaraAzerbaijaniBambaraBashkirBasqueBelarusianBengaliBihariBislamaBosnianBretonBulgarianBurmeseCatalanChamorroChechenChineseChuvashCorsicanCreeCroatianCzechDanishDhivehiDutchDzongkhaEnglishEsperantoEstonianEweFaroeseFijianFinnishFrenchFulahGalicianGandaGeorgianGermanGreekGuaraniGujaratiHaitianHausaHebrewHereroHindiHiri MotuHungarianIcelandicIgboIndonesianInuktitutInupiaqIrishItalianJapaneseJavaneseKalaallisutKannadaKanuriKashmiriKazakhKhmerKikuyuKinyarwandaKirghizKomiKongoKoreanKuanyamaKurdishLaoLatvianLimburganLingalaLithuanianLuba-KatangaLuxembourgishMacedonianMalagasyMalayMalayalamMalteseMaoriMarathiMarshalleseMoldavianMongolianNauruNavajoNdongaNepaliNorth NdebeleNorthern SamiNorwegianNyanjaOccitanOjibwaOriyaOromoOssetianPanjabiPersianPolishPortuguese (Brazil)PortuguesePushtoQuechuaRomanianRomanshRundiRussianSamoanSangoSanskritSardinianGaelicSerbianShonaSichuan YiSindhiSinhalaSlovakSlovenianSomaliSouth NdebeleSouthern SothoSpanishSundaneseSwahiliSwatiSwedishTagalogTahitianTajikTamilTatarTeluguThaiTibetanTigrinyaTongaTsongaTswanaTurkishTurkmenTwiUighurUkrainianUrduUzbekVendaVietnameseWalloonWelshWestern FrisianWolofXhosaYiddishYorubaZhuangZulu

Action Authentication

NEURONWriter uses API keys for authentication. When you connect your NEURONWriter account, Pipedream securely stores the keys so you can easily authenticate to NEURONWriter APIs in both code and no-code steps.

About NEURONWriter

Content optimization with semantic SEO.

More Ways to Connect NEURONWriter + Zendesk

Create New Query with NEURONWriter API on New Ticket (Instant) from Zendesk API
Zendesk + NEURONWriter
 
Try it
Create New Query with NEURONWriter API on Ticket Closed (Instant) from Zendesk API
Zendesk + NEURONWriter
 
Try it
Create New Query with NEURONWriter API on Ticket Pending (Instant) from Zendesk API
Zendesk + NEURONWriter
 
Try it
Create New Query with NEURONWriter API on Ticket Solved (Instant) from Zendesk API
Zendesk + NEURONWriter
 
Try it
Create New Query with NEURONWriter API on Ticket Updated (Instant) from Zendesk API
Zendesk + NEURONWriter
 
Try it
New Ticket (Instant) from the Zendesk API

Emit new event when a ticket is created

 
Try it
New Ticket Added to View (Instant) from the Zendesk API

Emit new event when a ticket is added to the specified view

 
Try it
Ticket Closed (Instant) from the Zendesk API

Emit new event when a ticket has changed to closed status

 
Try it
Ticket Pending (Instant) from the Zendesk API

Emit new event when a ticket has changed to pending status

 
Try it
Ticket Solved (Instant) from the Zendesk API

Emit new event when a ticket has changed to solved status

 
Try it
Create Ticket with the Zendesk API

Creates a ticket. See the documentation.

 
Try it
Delete Ticket with the Zendesk API

Deletes a ticket. See the documentation.

 
Try it
Update Ticket with the Zendesk API

Updates a ticket. See the documentation.

 
Try it
Create New Query with the NEURONWriter API

Launches a new query based on provided keyword, search engine, and language. See the documentation

 
Try it
Get Content Saved with the NEURONWriter API

Pulls the most recent revision of the content saved for a specific query. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,200+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce
Salesforce
Web services API for interacting with Salesforce
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.