# Edit Endpoint URLs

To facilitate polling both the Table API and Attachment API, we will need to edit the Endpoint URLs configured in earlier Guides in the following places:

* Connection
* Outbound Message Path
* Previously Configured Poll Processors

## Edit Connection

First, edit the Endpoint URL in the Connection.

In Unifi Integration Designer, navigate to the **'Connections' icon**. Click to open & edit **< Your Connection >** *(configured following the Outbound Incident Guide)*.

![](https://796541950-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MQBk35gIi557UHt7QlJ%2F-MRRw3p8F4VArh7Q24JP%2F-MRRx-WpzFk0CiIxVNjr%2FEdit%20Endpoint%20URL%201.png?alt=media\&token=1432fcfb-fc0e-4a85-a0a9-d8af5c0a0b8d)

**Remove** `/table/incident` from the **Endpoint URL** and **Save**. *(This will be prepended to the Outbound Message Path & previously configured Poll Processors.)*

![](https://796541950-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MQBk35gIi557UHt7QlJ%2F-MRRw3p8F4VArh7Q24JP%2F-MRRx8ouIKsG3V4N7XC4%2FEdit%20Endpoint%20URL%202.png?alt=media\&token=197291f6-bbe0-4d1f-b554-b6f3b6f15e73)

## Edit Outbound Message Path

Edit each of the previously configured Outbound Messages:

* CreateIncident
* UpdateIncident
* ResolvIncident
* CreateIncidentInboundReceipt

To edit the CreateIncident Message, navigate to the **'Messages' icon** & click to open the **CreateIncident** Message.

Navigate to **Outbound > Settings.** Add the previously cut `/table/incident` to the **Path** & **Save**.

![](https://796541950-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MQBk35gIi557UHt7QlJ%2F-MRRw3p8F4VArh7Q24JP%2F-MRRxckuWQ1PY_WC5LV6%2FEdit%20Endpoint%20URL%203.png?alt=media\&token=f16b3f4e-d088-48c4-a2ca-bc6b3a31779b)

{% hint style="success" %}
**Repeat** for each of the other Outbound Messages.
{% endhint %}

{% hint style="warning" %}
DO NOT delete the existing path, rather prepend it with `/table/incident` *(as cut from the Connection)*. For example, the Path for the UpdateIncident Message should now read as follows: `/table/incident/{bond.getValue("external_reference")}`.
{% endhint %}

## Edit Previously Configured Poll Processors

Edit the Endpoint URL in the Setup script for each of the previously configured Poll Processor&#x73;*:\**&#x20;

{% hint style="info" %}
\*(The names of your Poll Processors may differ.)
{% endhint %}

* SN REST Poll Processor *(as configured in the* [*'Poll Processor' page of the Incident Update Poller Guide*](https://docs.sharelogic.com/unifi/2.2/incident-update-poller-guide/polling/poll-processor#setup-script)
* SN REST Poller with Incident DataStore *(as configured in the* [*'Poll Processor' page of the Incident Multiple Message Poller Guide*](https://docs.sharelogic.com/unifi/2.2/incident-multiple-message-poller-guide/polling/poll-processor#setup-script)*)*
* SN REST Create Poll processor *(as configured in the* [*'Poll Processor' page of the Incident Create Poller Guide*](https://docs.sharelogic.com/unifi/2.2/incident-create-poller-guide/polling/poll-processor#setup-script)*)*
* SN REST Poller - Single incident *(as configured in the* [*'Child Poll Processor' page of the Incident Parent and Child Poller Guide*](https://docs.sharelogic.com/unifi/2.2/incident-parent-and-child-poller-guide/polling/child-poll-processor#setup-script)*)*
* SN REST Poller - Incident List *(as configured in the* [*'Parent Poll Processor' page of the Incident Parent and Child Poller Guide*](https://docs.sharelogic.com/unifi/2.2/incident-parent-and-child-poller-guide/polling/parent-poll-processor#setup-script)*)*

{% hint style="info" %}
**Note**: Although it is necessary to edit the Endpoint URL for all of the previously configured Poll Processors for each of them to work, it is only essential (for the purposes of this Guide) that this is done for the Parent and Child Poll Processors and the Create Poll Processor as these will be used when testing our Integration (& the Messages).
{% endhint %}

To edit the SN REST Poll Processor, navigate to the **'Poll Processors' icon** & click to open the **SN REST Poll Processor**.

Navigate to **Scripts > Setup Script**.

Edit the code by prepending the existing Endpoint URL with `/table/incident` i.e. insert it immediately after the `poll_request.endpoint_url += '` value & click **Save**. That line of code should now read as follows:

```
poll_request.endpoint_url += '/table/incident?sysparm_query=' + uri_query +
        '&sysparm_fields=' + encodeURIComponent(fields) + '&sysparm_limit=10';
```

*Your SN REST Poll Processor Setup Script should now look like this:*

![](https://796541950-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MQBk35gIi557UHt7QlJ%2F-MRRw3p8F4VArh7Q24JP%2F-MRS2vMTczREEaaRwqtT%2FEdit%20Endpoint%20URL%204.png?alt=media\&token=05ceecfd-1889-48a8-9e20-6cb30885cb2d)

{% hint style="success" %}
**Repeat** for each of the other previously configured Poll Processors.
{% endhint %}

Once complete we can configure the first of our Child Poll Processors, the **Get Attachment Poll Processor**.
