{
   "info": {
      "name": "Unified ASSESSMENT 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": "Assessment Packages",
         "item": [
            {
               "name": "Create an assessment package",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/assessment/{{connection_id}}/package",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "assessment",
                        "{{connection_id}}",
                        "package"
                     ],
                     "query": []
                  },
                  "method": "POST",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List assessment packages",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/assessment/{{connection_id}}/package",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "assessment",
                        "{{connection_id}}",
                        "package"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Get an assessment package",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/assessment/{{connection_id}}/package/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "assessment",
                        "{{connection_id}}",
                        "package",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Update an assessment package",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/assessment/{{connection_id}}/package/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "assessment",
                        "{{connection_id}}",
                        "package",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "PUT",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Delete an assessment package",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/assessment/{{connection_id}}/package/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "assessment",
                        "{{connection_id}}",
                        "package",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Assessment Orders",
         "item": [
            {
               "name": "Update an order",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/assessment/{{connection_id}}/order/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "assessment",
                        "{{connection_id}}",
                        "order",
                        "{{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"
                        }
                     ]
                  }
               }
            }
         ]
      }
   ],
   "variable": [
      {
         "key": "base_url",
         "value": "https://api.unified.to",
         "type": "string"
      },
      {
         "key": "api_token",
         "value": "YOUR_API_TOKEN_HERE",
         "type": "string"
      }
   ]
}