Skip to content

Commit 70a4a13

Browse files
committed
Change connector casing for 8.7 Guides
1 parent a620e28 commit 70a4a13

9 files changed

+86
-86
lines changed

versioned_docs/version-8.7/guides/configuring-out-of-the-box-connector.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: configuring-out-of-the-box-connectors
3-
title: Integrate a Camunda Connector
4-
description: "Ready to use out of the box, Connectors help automate complex business processes by inserting them into BPMN diagrams."
3+
title: Integrate a Camunda connector
4+
description: "Ready to use out of the box, connectors help automate complex business processes by inserting them into BPMN diagrams."
55
keywords: [connector, modeling, connectors, low-code, no-code]
66
---
77

@@ -11,20 +11,20 @@ keywords: [connector, modeling, connectors, low-code, no-code]
1111
The launch of [Camunda 8](../components/concepts/what-is-camunda-8.md) also introduced an integration framework with a key goal: integrate faster to reduce the time it takes to automate and orchestrate business processes across systems.
1212

1313
:::note
14-
New to Connectors? Review our [introduction to Connectors](/components/connectors/introduction.md) to get familiar with their capabilities.
14+
New to connectors? Review our [introduction to connectors](/components/connectors/introduction.md) to get familiar with their capabilities.
1515
:::
1616

17-
[Connectors](../components/connectors/introduction.md) achieve this goal. Ready to use out of the box, Connectors help automate complex [business processes](../components/concepts/processes.md) by inserting them into [BPMN diagrams](./automating-a-process-using-bpmn.md) within [Web Modeler](../components/modeler/about-modeler.md), and configuring them via the properties panel on the right side of the screen.
17+
[Connectors](../components/connectors/introduction.md) achieve this goal. Ready to use out of the box, connectors help automate complex [business processes](../components/concepts/processes.md) by inserting them into [BPMN diagrams](./automating-a-process-using-bpmn.md) within [Web Modeler](../components/modeler/about-modeler.md), and configuring them via the properties panel on the right side of the screen.
1818

19-
You can also orchestrate APIs, for example by working with a [REST Connector](/guides/getting-started-orchestrate-apis.md). Learn more about [types of Connectors](/components/connectors/connector-types.md).
19+
You can also orchestrate APIs, for example by working with a [REST connector](/guides/getting-started-orchestrate-apis.md). Learn more about [types of connectors](/components/connectors/connector-types.md).
2020

21-
Connectors technically consist of two parts: the business logic is implemented as a [job worker](../components/concepts/job-workers.md), and the user interface during modeling is provided using an element template. In this guide, we'll walk step-by-step through the implementation of a sample Connector.
21+
Connectors technically consist of two parts: the business logic is implemented as a [job worker](../components/concepts/job-workers.md), and the user interface during modeling is provided using an element template. In this guide, we'll walk step-by-step through the implementation of a sample connector.
2222

2323
## Set up
2424

25-
We'll implement our Connector with [Modeler](../components/modeler/about-modeler.md). To get started, ensure you’ve [created a Camunda 8 account](/guides/create-account.md).
25+
We'll implement our connector with [Modeler](../components/modeler/about-modeler.md). To get started, ensure you’ve [created a Camunda 8 account](/guides/create-account.md).
2626

27-
You'll also need to [create a SendGrid account](https://signup.sendgrid.com/) if you don't have one already, as we'll use SendGrid in our example Connector. Once you've created your account, you will immediately be prompted to create a [sender](https://docs.sendgrid.com/ui/sending-email/senders).
27+
You'll also need to [create a SendGrid account](https://signup.sendgrid.com/) if you don't have one already, as we'll use SendGrid in our example connector. Once you've created your account, you will immediately be prompted to create a [sender](https://docs.sendgrid.com/ui/sending-email/senders).
2828

2929
### Create a cluster
3030

@@ -53,25 +53,25 @@ In this example, we've designed the following BPMN diagram:
5353
To learn more about building your own BPMN diagram from scratch, visit our guide on [automating a process using BPMN](./automating-a-process-using-bpmn.md).
5454
:::
5555

56-
## Add a Connector
56+
## Add a connector
5757

58-
Here, a receipt is initially uploaded for review. The first task we need to complete is notifying the manager of the uploaded receipt. If we want to leverage our email service to notify the manager, we can utilize a productivity applications Connector to replace this task.
58+
Here, a receipt is initially uploaded for review. The first task we need to complete is notifying the manager of the uploaded receipt. If we want to leverage our email service to notify the manager, we can utilize a productivity applications connector to replace this task.
5959

6060
:::note
61-
Camunda offers a variety of available Connectors. For example, utilize cloud Connectors to communicate with cloud-native applications and conform to REST, GraphQL, or SOAP protocols. Or, employ service Connectors to integrate with technology enablers like RPA, AI or IOT services. Learn more about our [available Connectors](../components/connectors/out-of-the-box-connectors/available-connectors-overview.md) to find out which may best suit your business needs.
61+
Camunda offers a variety of available connectors. For example, utilize cloud connectors to communicate with cloud-native applications and conform to REST, GraphQL, or SOAP protocols. Or, employ service connectors to integrate with technology enablers like RPA, AI or IOT services. Learn more about our [available connectors](../components/connectors/out-of-the-box-connectors/available-connectors-overview.md) to find out which may best suit your business needs.
6262
:::
6363

64-
To add our productivity applications Connector, take the following steps:
64+
To add our productivity applications connector, take the following steps:
6565

6666
1. Click the start event. A context pad to the right of the start event will appear.
67-
2. Click the **Append Connector** item in the panel.
68-
3. To send an email via SendGrid, for example, select the **SendGrid Email Connector** option. Name this newly-created task `Notify manger of receipt`. This now replaces our original task.
67+
2. Click the **Append connector** item in the panel.
68+
3. To send an email via SendGrid, for example, select the **SendGrid Email connector** option. Name this newly-created task `Notify manger of receipt`. This now replaces our original task.
6969
![adding a connector](./img/adding-connector.png)
7070
4. You need to fill out the required information in the properties panel of this task on the right side of the screen. Here, we'll add an example API key obtained from our [SendGrid account](https://app.sendgrid.com/settings/api_keys), a sender and receiver name and email address, and the email message content.
7171

7272
![filling out connector properties panel](./img/connector-properties-panel.png)
7373

74-
Our Connector is now attached and ready to use. Your completed diagram should look like the following:
74+
Our connector is now attached and ready to use. Your completed diagram should look like the following:
7575

7676
![completed connectors and BPMN diagram](./img/connectors-bpmn-diagram.png)
7777

@@ -95,7 +95,7 @@ Variables are part of a process instance and represent the data of the instance.
9595

9696
## Observe your running process
9797

98-
After the [user task](./getting-started-orchestrate-human-tasks.md) **Upload receipt** is completed in [Tasklist](../components/tasklist/introduction-to-tasklist.md), an email is automatically sent to the address as specified in the Connectors properties panel we configured earlier.
98+
After the [user task](./getting-started-orchestrate-human-tasks.md) **Upload receipt** is completed in [Tasklist](../components/tasklist/introduction-to-tasklist.md), an email is automatically sent to the address as specified in the connectors properties panel we configured earlier.
9999

100100
![email via SendGrid](./img/sendgrid-email.png)
101101

@@ -105,8 +105,8 @@ In [Operate](../components/operate/operate-introduction.md), you will now see th
105105

106106
## Additional resources and next steps
107107

108-
- [Use Connectors in your BPMN process](/components/connectors/use-connectors/index.md)
109-
- [Available Connectors](../components/connectors/out-of-the-box-connectors/available-connectors-overview.md)
108+
- [Use connectors in your BPMN process](/components/connectors/use-connectors/index.md)
109+
- [Available connectors](../components/connectors/out-of-the-box-connectors/available-connectors-overview.md)
110110
- [Connectors & Integration Framework](https://camunda.com/platform/modeler/connectors/)
111111
- [Camunda BPMN Tutorial](https://camunda.com/bpmn/)
112112
- [Automate processes using BPMN](./automating-a-process-using-bpmn.md)

versioned_docs/version-8.7/guides/document-handling.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: document-handling
33
title: "Store, track, and manage documents"
4-
description: "Get started with document handling by uploading a document to a BPMN process, displaying and downloading a document in a user task, and sending a document to an external system via a Connector."
4+
description: "Get started with document handling by uploading a document to a BPMN process, displaying and downloading a document in a user task, and sending a document to an external system via a connector."
55
keywords: ["document handling"]
66
---
77

@@ -13,11 +13,11 @@ In this guide we will cover three main use cases:
1313

1414
- [Upload a document to a BPMN process](#upload-a-document-to-a-bpmn-process);
1515
- [Display and download a document](#display-and-download-a-document);
16-
- [Send a document to an external system via a Connector](#send-a-document-to-an-external-system-via-a-connector).
16+
- [Send a document to an external system via a connector](#send-a-document-to-an-external-system-via-a-connector).
1717

1818
## Upload a document to a BPMN process
1919

20-
You can implement document uploads in your BPMN processes using [forms](#build-a-form-for-document-upload), [inbound Connectors](#upload-a-document-via-inbound-webhook-connector), and [Camunda 8 REST API](../apis-tools/camunda-api-rest/specifications/create-document.api.mdx).
20+
You can implement document uploads in your BPMN processes using [forms](#build-a-form-for-document-upload), [inbound connectors](#upload-a-document-via-inbound-webhook-connector), and [Camunda 8 REST API](../apis-tools/camunda-api-rest/specifications/create-document.api.mdx).
2121

2222
### Build a form for document upload
2323

@@ -58,7 +58,7 @@ Single document uploads are accessible using `value[1]` (since [FEEL](../compone
5858

5959
### Upload a document via inbound webhook connector
6060

61-
Documents can be added to a process using the [inbound](../components//connectors/connector-types.md#inbound-connectors) [HTTP webhook Connector](/components/connectors/protocol/http-webhook.md).
61+
Documents can be added to a process using the [inbound](../components//connectors/connector-types.md#inbound-connectors) [HTTP webhook connector](/components/connectors/protocol/http-webhook.md).
6262

6363
You can pass the documents in both the response expression and the result expression, where the `documents` object contains the references for created documents. Below, review an example of a webhook configuration:
6464

@@ -72,7 +72,7 @@ In this example, the result expression may look as follows, where `applicationDo
7272
}
7373
```
7474

75-
The document reference received as an output of one Connector should be stored in process variables by using the result expression or result variable.
75+
The document reference received as an output of one connector should be stored in process variables by using the result expression or result variable.
7676

7777
To call the webhook sending a file, for example:
7878

@@ -145,17 +145,17 @@ When a user opens the task, they can view and download the document directly fro
145145

146146
![Document preview for task in Tasklist](./img/task-with-document-preview-tasklist.png)
147147

148-
## Send a document to an external system via a Connector
148+
## Send a document to an external system via a connector
149149

150-
You can reference a document in an [outbound Connector](../components//connectors/connector-types.md#outbound-connectors). Connectors can use variables with document metadata as an input. The format of inputs will depend on the Connector, as each Connector has a different input structure.
150+
You can reference a document in an [outbound connector](../components//connectors/connector-types.md#outbound-connectors). connectors can use variables with document metadata as an input. The format of inputs will depend on the connector, as each connector has a different input structure.
151151

152152
The [Connector SDK](/components/connectors/custom-built-connectors/connector-sdk.md) provides document support in property/variable bindings.
153153

154-
In most cases for the following outbound Connectors, you can include a **Request body** under **Payload** in the properties panel to send with your request:
154+
In most cases for the following outbound connectors, you can include a **Request body** under **Payload** in the properties panel to send with your request:
155155

156156
![example REST configuration](./img/rest-outbound-document.png)
157157

158-
### Outbound Connectors that support document handling
158+
### Outbound connectors that support document handling
159159

160160
| Connector | Support details |
161161
| --------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |

versioned_docs/version-8.7/guides/getting-started-orchestrate-apis.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
id: orchestrate-apis
33
title: Get started with API orchestration
44
sidebar_label: APIs
5-
description: "Use Connectors to build low code process automation solutions"
5+
description: "Use connectors to build low code process automation solutions"
66
keywords:
77
[api endpoints, orchestration, getting started, user guide, connectors]
88
---
@@ -14,38 +14,38 @@ keywords:
1414
import clsx from "clsx";
1515
import SaasPrereqs from './react-components/\_saas-prerequisites.md'
1616

17-
This guide will walk you through working with a REST Connector task as a first time Camunda 8 SaaS user. The REST Connector is a [protocol Connector](/components/connectors/out-of-the-box-connectors/available-connectors-overview.md#protocol-connectors), where you can make a request to a REST API and use the response in the next steps of your process.
17+
This guide will walk you through working with a REST connector task as a first time Camunda 8 SaaS user. The REST connector is a [protocol connector](/components/connectors/out-of-the-box-connectors/available-connectors-overview.md#protocol-connectors), where you can make a request to a REST API and use the response in the next steps of your process.
1818

1919
:::note
20-
New to Connectors? Review our [introduction to Connectors](/components/connectors/introduction.md) to get familiar with their capabilities, and have a closer look at all of the available [out-of-the-box Connectors](/components/connectors/out-of-the-box-connectors/available-connectors-overview.md).
20+
New to connectors? Review our [introduction to connectors](/components/connectors/introduction.md) to get familiar with their capabilities, and have a closer look at all of the available [out-of-the-box connectors](/components/connectors/out-of-the-box-connectors/available-connectors-overview.md).
2121
:::
2222

2323
<details>
2424
<summary>Have you signed up for Camunda yet?</summary>
2525
<SaasPrereqs/>
2626
</details>
2727

28-
The concept of a Connector consists of two parts: the business logic is implemented as a job worker, and the user interface during modeling is provided using an element template. In this guide, you will create a REST Connector task in your process, handle the HTTP response, and deploy your process. New to creating a process? Get started by [modeling your first diagram](/guides/model-your-first-process.md).
28+
The concept of a connector consists of two parts: the business logic is implemented as a job worker, and the user interface during modeling is provided using an element template. In this guide, you will create a REST connector task in your process, handle the HTTP response, and deploy your process. New to creating a process? Get started by [modeling your first diagram](/guides/model-your-first-process.md).
2929

30-
## Step 1: Create a REST Connector task
30+
## Step 1: Create a REST connector task
3131

32-
To use a **REST Connector** in your process, follow the steps below:
32+
To use a **REST connector** in your process, follow the steps below:
3333

3434
1. Create a BPMN diagram. To do this, click **New project** within Modeler.
3535
2. Name your project and select **Create new > BPMN diagram**.
3636
3. Give your model a descriptive name and ID. On the right side of the page, expand the **General** section of the properties panel to find the name and ID fields. For this guide, we'll use `API Orchestration Tutorial` for the name and `api-orchestration-tutorial` for the ID.
37-
4. Use Web Modeler to design a BPMN flow with a Connector. Create a Connector by dragging the rectangular task element from the palette, or click the existing start event and the displayed task element to the right of the start event.
38-
5. Change the task type by clicking the wrench icon and select **REST Outbound Connector** in the **Connectors** section. Alternatively, you can directly choose a **REST Outbound Connector** by using the context pad.
37+
4. Use Web Modeler to design a BPMN flow with a connector. Create a connector by dragging the rectangular task element from the palette, or click the existing start event and the displayed task element to the right of the start event.
38+
5. Change the task type by clicking the wrench icon and select **REST Outbound connector** in the **Connectors** section. Alternatively, you can directly choose a **REST Outbound connector** by using the context pad.
3939

4040
![Blank task on Web Modeler canvas with properties panel open](img/connectors-blank-task.png)
4141

4242
6. Add a descriptive name using the **General** section in the properties panel. For this guide, we'll use `Make a request`.
4343

44-
## Step 2: Make your REST Connector executable
44+
## Step 2: Make your REST connector executable
4545

4646
![Connector on Web Modeler canvas with properties panel open](img/connectors-rest-red-properties.png)
4747

48-
To make the **REST Connector** executable, fill out the mandatory **URL** field in the HTTP Endpoint section (highlighted in red) in the properties panel with `https://catfact.ninja/fact` so we can get a random cat fact from the [Cat Fact API](https://catfact.ninja/) for this example.
48+
To make the **REST connector** executable, fill out the mandatory **URL** field in the HTTP Endpoint section (highlighted in red) in the properties panel with `https://catfact.ninja/fact` so we can get a random cat fact from the [Cat Fact API](https://catfact.ninja/) for this example.
4949

5050
## Step 3: Handle your response
5151

@@ -68,7 +68,7 @@ To deploy your process, take the following steps:
6868

6969
Congratulations! You successfully built your first API orchestration solution with Camunda 8.
7070

71-
Camunda 8 empowers users to automate processes faster. Connectors are reusable components that allow you to access APIs without writing code.
71+
Camunda 8 empowers users to automate processes faster. connectors are reusable components that allow you to access APIs without writing code.
7272

7373
Don't want to build the process yourself? Click this button to create it from a template in Camunda 8 SaaS, or sign up first.
7474

@@ -92,5 +92,5 @@ Don't want to build the process yourself? Click this button to create it from a
9292
## Additional resources and next steps
9393

9494
- Learn more about Camunda 8 and what it can do by reading [What is Camunda 8](/components/concepts/what-is-camunda-8.md) or watching our [Overview video](https://bit.ly/3TjNEm7) in Camunda Academy.
95-
- [Learn about types of Connectors](/components/connectors/connector-types.md)
96-
- [Use Connectors in your BPMN process](/components/connectors/use-connectors/index.md)
95+
- [Learn about types of connectors](/components/connectors/connector-types.md)
96+
- [Use connectors in your BPMN process](/components/connectors/use-connectors/index.md)

0 commit comments

Comments
 (0)