{
  "info": {
    "name": "eCom01 Petar Agent API",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{PETAR_API_TOKEN}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "base_url",
      "value": "https://admin.ecom01.rs/api"
    },
    {
      "key": "PETAR_API_TOKEN",
      "value": ""
    }
  ],
  "item": [
    {
      "name": "Leads summary",
      "request": {
        "method": "GET",
        "url": "{{base_url}}/leads/summary"
      }
    },
    {
      "name": "Leads alerts since",
      "request": {
        "method": "GET",
        "url": {
          "raw": "{{base_url}}/leads/alerts?since=2026-05-22T08:00:00Z",
          "host": ["{{base_url}}"],
          "path": ["leads", "alerts"],
          "query": [
            {
              "key": "since",
              "value": "2026-05-22T08:00:00Z"
            }
          ]
        }
      }
    },
    {
      "name": "Create blog draft",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"Primer drafta\",\n  \"excerpt\": \"Kratak opis\",\n  \"body_markdown\": \"# Naslov\\n\\nTekst clanka.\",\n  \"status\": \"draft\",\n  \"tags\": [\"ai\", \"ecommerce\"],\n  \"image_url\": \"https://cdn.ecom01.rs/blog/hero.jpg\"\n}"
        },
        "url": "{{base_url}}/blog/posts"
      }
    },
    {
      "name": "Patch blog post",
      "request": {
        "method": "PATCH",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"published\"\n}"
        },
        "url": "{{base_url}}/blog/posts/123"
      }
    }
  ]
}
