From 421cd52d8e16a01dab6beb3e4ef1052473628074 Mon Sep 17 00:00:00 2001 From: carlospalmermews Date: Wed, 22 Apr 2026 12:46:21 +1200 Subject: [PATCH 1/6] CON-6332-resolve-requestor-inconsistency --- connector-api/events/wh-integration.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/connector-api/events/wh-integration.md b/connector-api/events/wh-integration.md index 5410f590..99e15710 100644 --- a/connector-api/events/wh-integration.md +++ b/connector-api/events/wh-integration.md @@ -68,15 +68,15 @@ The structure of the Data object depends on [Webhook action](wh-integration.md#w ### Integration created data -| Property | Type | Contract | Description | -| ------------- | -------------------------------------------- | -------- | ----------------------------------------------------------------------------- | -| `Enterprise` | [Enterprise](wh-integration.md#enterprise) | required | Property or chain of properties. | -| `Service` | [Service](wh-integration.md#service) | optional | Service the integration is connected to. | -| `Requestor` | [Requestor](wh-integration.md#requestor) | required | Person requesting the action or event. | -| `AccessToken` | string | required | Access token of the client application. | -| `CreatedUtc` | string | required | Creation date and time of the integration in UTC timezone in ISO 8601 format. | -| `IsEnabled` | bool | required | Whether integration is enabled. | -| `Integration` | [Integration](wh-integration.md#integration) | required | Integration data. | +| Property | Type | Contract | Description | +| ------------- | -------------------------------------------- | -------- |--------------------------------------------------------------------------------------------------------------| +| `Enterprise` | [Enterprise](wh-integration.md#enterprise) | required | Property or chain of properties. | +| `Service` | [Service](wh-integration.md#service) | optional | Service the integration is connected to. | +| `Requestor` | [Requestor](wh-integration.md#requestor) | optional | Person requesting the action or event. Not null when integration created by a known user; otherwise null. | +| `AccessToken` | string | required | Access token of the client application. | +| `CreatedUtc` | string | required | Creation date and time of the integration in UTC timezone in ISO 8601 format. | +| `IsEnabled` | bool | required | Whether integration is enabled. | +| `Integration` | [Integration](wh-integration.md#integration) | required | Integration data. | ### Enterprise From f5117f808554edb57ab723ec77b2e587aaea9d1f Mon Sep 17 00:00:00 2001 From: Carlos Palmer Date: Fri, 24 Apr 2026 11:36:54 +1200 Subject: [PATCH 2/6] PR reviewer comment applied. Co-authored-by: Jan Vlnas --- connector-api/events/wh-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector-api/events/wh-integration.md b/connector-api/events/wh-integration.md index 99e15710..5f4cf6e6 100644 --- a/connector-api/events/wh-integration.md +++ b/connector-api/events/wh-integration.md @@ -72,7 +72,7 @@ The structure of the Data object depends on [Webhook action](wh-integration.md#w | ------------- | -------------------------------------------- | -------- |--------------------------------------------------------------------------------------------------------------| | `Enterprise` | [Enterprise](wh-integration.md#enterprise) | required | Property or chain of properties. | | `Service` | [Service](wh-integration.md#service) | optional | Service the integration is connected to. | -| `Requestor` | [Requestor](wh-integration.md#requestor) | optional | Person requesting the action or event. Not null when integration created by a known user; otherwise null. | +| `Requestor` | [Requestor](wh-integration.md#requestor) | optional | Person requesting the action or event, if known. | | `AccessToken` | string | required | Access token of the client application. | | `CreatedUtc` | string | required | Creation date and time of the integration in UTC timezone in ISO 8601 format. | | `IsEnabled` | bool | required | Whether integration is enabled. | From 92a9089efa15cd764e930b5867d6de3486bf4e6f Mon Sep 17 00:00:00 2001 From: carlospalmermews Date: Fri, 24 Apr 2026 12:14:53 +1200 Subject: [PATCH 3/6] CON-6332-updated changelog --- connector-api/changelog/changelog2026.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 connector-api/changelog/changelog2026.md diff --git a/connector-api/changelog/changelog2026.md b/connector-api/changelog/changelog2026.md new file mode 100644 index 00000000..23db78fd --- /dev/null +++ b/connector-api/changelog/changelog2026.md @@ -0,0 +1,6 @@ +# Changelog 2026 + +## 24th April 2026 + +* [Integration Webhooks](../events/wh_integration.md#integration-webhooks): + * Clarified contract and description of `Requestor` field in integration created data. Documentation-only, no change to API. From 17665e3a6c8fe1fca9dbbd5a53c4129a9c5d937b Mon Sep 17 00:00:00 2001 From: Carlos Palmer Date: Fri, 24 Apr 2026 12:22:53 +1200 Subject: [PATCH 4/6] Applied copilot update to message Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- connector-api/events/wh-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector-api/events/wh-integration.md b/connector-api/events/wh-integration.md index 5f4cf6e6..253bbdf0 100644 --- a/connector-api/events/wh-integration.md +++ b/connector-api/events/wh-integration.md @@ -72,7 +72,7 @@ The structure of the Data object depends on [Webhook action](wh-integration.md#w | ------------- | -------------------------------------------- | -------- |--------------------------------------------------------------------------------------------------------------| | `Enterprise` | [Enterprise](wh-integration.md#enterprise) | required | Property or chain of properties. | | `Service` | [Service](wh-integration.md#service) | optional | Service the integration is connected to. | -| `Requestor` | [Requestor](wh-integration.md#requestor) | optional | Person requesting the action or event, if known. | +| `Requestor` | [Requestor](wh-integration.md#requestor) | optional | Person requesting the action or event, if known; otherwise this property is `null`. | | `AccessToken` | string | required | Access token of the client application. | | `CreatedUtc` | string | required | Creation date and time of the integration in UTC timezone in ISO 8601 format. | | `IsEnabled` | bool | required | Whether integration is enabled. | From bc76f2cd5fc6f523c368c893015b0ebefe6c171d Mon Sep 17 00:00:00 2001 From: Carlos Palmer Date: Fri, 24 Apr 2026 12:23:48 +1200 Subject: [PATCH 5/6] Added copilot suggested column spacing Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- connector-api/events/wh-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector-api/events/wh-integration.md b/connector-api/events/wh-integration.md index 253bbdf0..ab4e3b13 100644 --- a/connector-api/events/wh-integration.md +++ b/connector-api/events/wh-integration.md @@ -69,7 +69,7 @@ The structure of the Data object depends on [Webhook action](wh-integration.md#w ### Integration created data | Property | Type | Contract | Description | -| ------------- | -------------------------------------------- | -------- |--------------------------------------------------------------------------------------------------------------| +| ------------- | -------------------------------------------- | -------- | ------------------------------------------------------------------------------------------------------------ | | `Enterprise` | [Enterprise](wh-integration.md#enterprise) | required | Property or chain of properties. | | `Service` | [Service](wh-integration.md#service) | optional | Service the integration is connected to. | | `Requestor` | [Requestor](wh-integration.md#requestor) | optional | Person requesting the action or event, if known; otherwise this property is `null`. | From 23d13e48a43397bfe29965765db68082f0194bd2 Mon Sep 17 00:00:00 2001 From: Carlos Palmer Date: Fri, 24 Apr 2026 12:25:46 +1200 Subject: [PATCH 6/6] Applied copilot correction (thanks) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- connector-api/changelog/changelog2026.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector-api/changelog/changelog2026.md b/connector-api/changelog/changelog2026.md index 23db78fd..70f3ef42 100644 --- a/connector-api/changelog/changelog2026.md +++ b/connector-api/changelog/changelog2026.md @@ -2,5 +2,5 @@ ## 24th April 2026 -* [Integration Webhooks](../events/wh_integration.md#integration-webhooks): +* [Integration Webhooks](../events/wh-integration.md#integration-webhooks): * Clarified contract and description of `Requestor` field in integration created data. Documentation-only, no change to API.