Updating an Integration Configuration assigned to a Group
Using the PUT method with the Integrations endpoint of the Group collection will allow for updates to the Integration for the specified Group
PUT https://edgeapi.marchex.io/marketingedge/v5/api/groups/{groupId}/integrations/{integration_group_id}
The following sample request can be used to Update an Integration for a Group
{
"integration_configuration_id": "5f0c5a61-f5c1-42f3-b72d-decf6e13570d"
}
If the request is handled successfully, the following response will be returned:
[
{
"type": "GoogleAnalytics4",
"integration_group_id": "2d2f8efb-1216-4683-8f3f-8706ff63b97d",
"integration_configuration_id": "5f0c5a61-f5c1-42f3-b72d-decf6e13570d",
"group_id": 14011749,
"created_datetime": "2024-02-08T15:51:51.400Z"
},
{
"type": "GoogleAnalytics4",
"integration_group_id": "fef0ae10-1429-4eb2-a807-daf7281b0405",
"integration_configuration_id": "4ee33d4c-5650-4fcd-acb9-f641157b791b",
"group_id": 14011749,
"created_datetime": "2024-02-08T15:51:51.353Z"
}
]
Updated 11 months ago