{
   "info": {
      "name": "Unified ADS 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-04-07T20:14:23.000Z"
   },
   "item": [
      {
         "name": "Ads Organizations",
         "item": [
            {
               "name": "Create an organization",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/organization",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "organization"
                     ],
                     "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 organization",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/organization/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "organization",
                        "{{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 organization",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/organization/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "organization",
                        "{{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 organization",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/organization/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "organization",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all organizations",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/organization",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "organization"
                     ],
                     "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": "parent_id",
                           "description": "The parent 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": "Ads Campaigns",
         "item": [
            {
               "name": "Create a campaign",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/campaign",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "campaign"
                     ],
                     "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 campaign",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/campaign/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "campaign",
                        "{{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 campaign",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/campaign/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "campaign",
                        "{{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 campaign",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/campaign/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "campaign",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all campaigns",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/campaign",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "campaign"
                     ],
                     "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": "org_id",
                           "description": "The org 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": "Ads Creatives",
         "item": [
            {
               "name": "Create a creative",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/creative",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "creative"
                     ],
                     "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 creative",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/creative/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "creative",
                        "{{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 creative",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/creative/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "creative",
                        "{{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 creative",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/creative/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "creative",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all creatives",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/creative",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "creative"
                     ],
                     "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": "org_id",
                           "description": "The org ID to filter by"
                        },
                        {
                           "key": "group_id",
                           "description": "The group 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": "Ads Insertionorders",
         "item": [
            {
               "name": "Create an insertionorder",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/insertionorder",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "insertionorder"
                     ],
                     "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 insertionorder",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/insertionorder/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "insertionorder",
                        "{{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 insertionorder",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/insertionorder/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "insertionorder",
                        "{{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 insertionorder",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/insertionorder/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "insertionorder",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all insertionorders",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/insertionorder",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "insertionorder"
                     ],
                     "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": "org_id",
                           "description": "The org ID to filter by"
                        },
                        {
                           "key": "campaign_id",
                           "description": "The campaign 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": "Ads Groups",
         "item": [
            {
               "name": "Create a group",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/group",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "group"
                     ],
                     "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 group",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/group/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "group",
                        "{{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 group",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/group/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "group",
                        "{{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 group",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/group/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "group",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all groups",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/group",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "group"
                     ],
                     "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": "org_id",
                           "description": "The org ID to filter by"
                        },
                        {
                           "key": "campaign_id",
                           "description": "The campaign ID to filter by"
                        },
                        {
                           "key": "parent_id",
                           "description": "The parent ID to filter by"
                        },
                        {
                           "key": "io_id",
                           "description": "The IO 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": "Ads Ads",
         "item": [
            {
               "name": "Create an ad",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/ad",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "ad"
                     ],
                     "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 ad",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/ad/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "ad",
                        "{{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 ad",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/ad/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "ad",
                        "{{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 ad",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/ad/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "ad",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all ads",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/ad",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "ad"
                     ],
                     "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": "org_id",
                           "description": "The org ID to filter by"
                        },
                        {
                           "key": "campaign_id",
                           "description": "The campaign ID to filter by"
                        },
                        {
                           "key": "group_id",
                           "description": "The group 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": "Ads Reports",
         "item": [
            {
               "name": "List all reports",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/report",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "report"
                     ],
                     "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": "org_id",
                           "description": "The org ID to filter by"
                        },
                        {
                           "key": "campaign_id",
                           "description": "The campaign ID to filter by"
                        },
                        {
                           "key": "group_id",
                           "description": "The group ID to filter by"
                        },
                        {
                           "key": "ad_id",
                           "description": "The ad ID to filter by"
                        },
                        {
                           "key": "type",
                           "description": ""
                        },
                        {
                           "key": "start_gte",
                           "description": "The start date to filter by"
                        },
                        {
                           "key": "end_lt",
                           "description": "The end date 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": "Ads Targets",
         "item": [
            {
               "name": "List all targets",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/target",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "target"
                     ],
                     "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": "org_id",
                           "description": "The org ID to filter by"
                        },
                        {
                           "key": "type",
                           "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"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Ads Promoteds",
         "item": [
            {
               "name": "List all promoteds",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/ads/{{connection_id}}/promoted",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "ads",
                        "{{connection_id}}",
                        "promoted"
                     ],
                     "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": "org_id",
                           "description": "The org ID to filter by"
                        },
                        {
                           "key": "type",
                           "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"
      }
   ]
}