{
  "info": {
    "name": "Sakhaa Capture API (sandbox template)",
    "description": "Generated from the approved public OpenAPI contract. Start with a local mock or sandbox. This collection contains placeholders only and no credentials.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "sakhaa_base_url",
      "value": "http://localhost:7200/api/v1/capture",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "GET /info",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "X-API-Key",
            "value": "{{sakhaa_x_api_key}}",
            "type": "text"
          },
          {
            "key": "X-API-Secret",
            "value": "{{sakhaa_x_api_secret}}",
            "type": "text"
          }
        ],
        "url": {
          "raw": "{{sakhaa_base_url}}/info",
          "host": [
            "{{sakhaa_base_url}}"
          ],
          "path": [
            "info"
          ]
        }
      },
      "response": []
    },
    {
      "name": "POST /person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "X-API-Key",
            "value": "{{sakhaa_x_api_key}}",
            "type": "text"
          },
          {
            "key": "X-API-Secret",
            "value": "{{sakhaa_x_api_secret}}",
            "type": "text"
          },
          {
            "key": "Content-Type",
            "value": "application/json",
            "type": "text"
          }
        ],
        "url": {
          "raw": "{{sakhaa_base_url}}/person",
          "host": [
            "{{sakhaa_base_url}}"
          ],
          "path": [
            "person"
          ]
        },
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"API Test Person\",\n  \"email\": \"api-test@example.invalid\",\n  \"company\": \"Example Test Company\",\n  \"notes\": \"Synthetic documentation verification record\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "POST /persons/bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "X-API-Key",
            "value": "{{sakhaa_x_api_key}}",
            "type": "text"
          },
          {
            "key": "X-API-Secret",
            "value": "{{sakhaa_x_api_secret}}",
            "type": "text"
          },
          {
            "key": "Content-Type",
            "value": "application/json",
            "type": "text"
          }
        ],
        "url": {
          "raw": "{{sakhaa_base_url}}/persons/bulk",
          "host": [
            "{{sakhaa_base_url}}"
          ],
          "path": [
            "persons",
            "bulk"
          ]
        },
        "body": {
          "mode": "raw",
          "raw": "{\n  \"persons\": [\n    {\n      \"name\": \"API Batch Test Person\",\n      \"email\": \"api-batch-test@example.invalid\",\n      \"idempotency_key\": \"docs-batch-person-0001\"\n    }\n  ]\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    }
  ]
}
