Retrieving Group Integrations
Retrieving All Integrations for a Group
Using the GET method, you can retrieve all of the integrations configured for a Group.
GET https://edgeapi.marchex.io/marketingedge/v5/api/groups/{groupId}/integrations
If the request is handled successfully, the following response will be returned:
{
"type": "GoogleAnalytics4",
"integration_group_id": "78711163-901c-4491-be78-5d9e6edd0712",
"integration_configuration_id": "502dff40-d0a8-4dde-8e6e-f69f00f7ba67",
"group_id": 1234,
"created_datetime": "2023-04-06T13:35:07.817Z",
"modified_datetime": "2023-04-06T13:35:07.817Z"
}
Retrieving an Integration by Group Integration ID
Using the GET method, you can retrieve an individual integration that has been assigned to a Group.
GET https://edgeapi.marchex.io/marketingedge/v5/api/groups/{groupId}/integrations/{integration_group_id}
If the request is handled successfully, the following response will be returned:
{
"type": "GoogleAnalytics4",
"integration_group_id": "78711163-901c-4491-be78-5d9e6edd0712",
"integration_configuration_id": "502dff40-d0a8-4dde-8e6e-f69f00f7ba67",
"group_id": 1234,
"created_datetime": "2023-04-06T13:35:07.817Z",
"modified_datetime": "2023-04-06T13:35:07.817Z"
}
Updated 6 months ago