{
   "info": {
      "name": "Unified CDP API",
      "description": "One API to Rule Them All\n\n## API Endpoints (Data Centers)\n\nUnified.to operates multiple data centers. You can switch between them using the `base_url` variable:\n\n- **US (Default)**: https://api.unified.to\n- **EU**: https://api-eu.unified.to\n- **AU**: https://api-au.unified.to\n\nTo change the data center:\n1. Go to the collection's \"Variables\" tab\n2. Update the `base_url` value to your preferred endpoint\n3. Save the collection\n\n## Authentication\n\nTo use this API, you need an API Token. Follow these steps to obtain your token:\n\n1. Visit the Unified.to API Keys page: https://app.unified.to/apikeys, https://app-eu..unified.to/apikeys, https://app-au.unified.to/apikeys\n2. Log in to your account (or create one if you haven't already)\n3. Generate a new API key or copy an existing one\n4. Use the API key as a Bearer token in the Authorization header\n\n## Setup in Postman\n\n**Option 1: Using Collection Variables (Recommended)**\n1. Go to the collection's \"Variables\" tab\n2. Set the `api_token` variable to your API key\n3. Save the collection\n4. All requests will automatically use this token\n\n**Option 2: Using Collection Authorization**\n1. Go to the collection's \"Authorization\" tab\n2. Select \"Bearer Token\" as the type\n3. Enter `{{api_token}}` in the \"Token\" field (or paste your API key directly)\n4. Save the collection\n\nFor more information, visit: https://docs.unified.to",
      "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
      "updatedAt": "2026-09-04T20:36:52.000Z"
   },
   "item": [
      {
         "name": "Cdp Profiles",
         "item": [
            {
               "name": "Create a profile",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/profile",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "profile"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "POST",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Retrieve a profile",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/profile/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "profile",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Update a profile",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/profile/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "profile",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "PUT",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Remove a profile",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/profile/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "profile",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all profiles",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/profile",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "profile"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        },
                        {
                           "key": "updated_gte",
                           "description": "Return only results whose updated date is equal or greater to this value"
                        },
                        {
                           "key": "sort",
                           "description": ""
                        },
                        {
                           "key": "order",
                           "description": ""
                        },
                        {
                           "key": "query",
                           "description": "Query string to search. eg. email address or name"
                        },
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Cdp Segments",
         "item": [
            {
               "name": "Create a segment",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/segment",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "segment"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "POST",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Retrieve a segment",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/segment/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "segment",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Update a segment",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/segment/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "segment",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "PUT",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Remove a segment",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/segment/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "segment",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all segments",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/segment",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "segment"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        },
                        {
                           "key": "updated_gte",
                           "description": "Return only results whose updated date is equal or greater to this value"
                        },
                        {
                           "key": "sort",
                           "description": ""
                        },
                        {
                           "key": "order",
                           "description": ""
                        },
                        {
                           "key": "query",
                           "description": "Query string to search. eg. email address or name"
                        },
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Cdp Events",
         "item": [
            {
               "name": "Create an event",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/event",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "event"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "POST",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Retrieve an event",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/event/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "event",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Update an event",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/event/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "event",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "PUT",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Remove an event",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/event/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "event",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all events",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/event",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "event"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        },
                        {
                           "key": "updated_gte",
                           "description": "Return only results whose updated date is equal or greater to this value"
                        },
                        {
                           "key": "sort",
                           "description": ""
                        },
                        {
                           "key": "order",
                           "description": ""
                        },
                        {
                           "key": "query",
                           "description": "Query string to search. eg. email address or name"
                        },
                        {
                           "key": "profile_id",
                           "description": "The profile ID to filter by"
                        },
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Cdp Sources",
         "item": [
            {
               "name": "Create a source",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/source",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "source"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "POST",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Retrieve a source",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/source/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "source",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Update a source",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/source/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "source",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "PUT",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Remove a source",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/source/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "source",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all sources",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/source",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "source"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        },
                        {
                           "key": "updated_gte",
                           "description": "Return only results whose updated date is equal or greater to this value"
                        },
                        {
                           "key": "sort",
                           "description": ""
                        },
                        {
                           "key": "order",
                           "description": ""
                        },
                        {
                           "key": "query",
                           "description": "Query string to search. eg. email address or name"
                        },
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Cdp Destinations",
         "item": [
            {
               "name": "Create a destination",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/destination",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "destination"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "POST",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Retrieve a destination",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/destination/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "destination",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Update a destination",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/destination/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "destination",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "PUT",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Remove a destination",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/destination/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "destination",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all destinations",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/destination",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "destination"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        },
                        {
                           "key": "updated_gte",
                           "description": "Return only results whose updated date is equal or greater to this value"
                        },
                        {
                           "key": "sort",
                           "description": ""
                        },
                        {
                           "key": "order",
                           "description": ""
                        },
                        {
                           "key": "query",
                           "description": "Query string to search. eg. email address or name"
                        },
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Cdp Activations",
         "item": [
            {
               "name": "Create an activation",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/activation",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "activation"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "POST",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Retrieve an activation",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/activation/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "activation",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Update an activation",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/activation/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "activation",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "PUT",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Remove an activation",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/activation/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "activation",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all activations",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/cdp/{{connection_id}}/activation",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "cdp",
                        "{{connection_id}}",
                        "activation"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        },
                        {
                           "key": "updated_gte",
                           "description": "Return only results whose updated date is equal or greater to this value"
                        },
                        {
                           "key": "sort",
                           "description": ""
                        },
                        {
                           "key": "order",
                           "description": ""
                        },
                        {
                           "key": "query",
                           "description": "Query string to search. eg. email address or name"
                        },
                        {
                           "key": "segment_id",
                           "description": "The segment ID to filter by"
                        },
                        {
                           "key": "destination_id",
                           "description": ""
                        },
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      }
   ],
   "variable": [
      {
         "key": "base_url",
         "value": "https://api.unified.to",
         "type": "string"
      },
      {
         "key": "api_token",
         "value": "YOUR_API_TOKEN_HERE",
         "type": "string"
      }
   ]
}