Adding an Integration Configuration to a Group

Using the POST method with the Integrations endpoint of the Group collection will add an Integration Configuration to the specified Group

POST https://edgeapi.marchex.io/marketingedge/v5/api/groups/{groupId}/integrations

The following sample request can be used to create 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"
    }
]