{
  "_type": "export",
  "__export_format": 4,
  "__export_date": "2026-08-14T16:45:00.000Z",
  "__export_source": "print-sta.docs-2.0.27",
  "resources": [
    {
      "_id": "wrk_printsta_v1",
      "_type": "workspace",
      "name": "Print STA API v1",
      "description": "Print STA API v1 — Docs 2.0.27",
      "scope": "collection"
    },
    {
      "_id": "env_printsta",
      "_type": "environment",
      "parentId": "wrk_printsta_v1",
      "name": "Base Environment",
      "data": {
        "base_url": "https://bryzmdvfbowtljycefbs.supabase.co/functions/v1",
        "canonical_base_url": "https://api.print-sta.com.br/v1",
        "api_key": "pst_test_COLE_SUA_CHAVE",
        "computer_id": "",
        "printer_id": "",
        "job_id": ""
      }
    },
    {
      "_id": "fld_quickstart",
      "_type": "request_group",
      "parentId": "wrk_printsta_v1",
      "name": "Quickstart"
    },
    {
      "_id": "req_account",
      "_type": "request",
      "parentId": "fld_quickstart",
      "name": "Validar API Key / Conta",
      "method": "GET",
      "url": "{{ _.base_url }}/print-sta-api-account",
      "headers": [
        {
          "name": "Authorization",
          "value": "Bearer {{ _.api_key }}"
        }
      ]
    },
    {
      "_id": "req_computers",
      "_type": "request",
      "parentId": "fld_quickstart",
      "name": "Listar computadores online",
      "method": "GET",
      "url": "{{ _.base_url }}/print-sta-api-computers?status=online",
      "headers": [
        {
          "name": "Authorization",
          "value": "Bearer {{ _.api_key }}"
        }
      ]
    },
    {
      "_id": "req_printers",
      "_type": "request",
      "parentId": "fld_quickstart",
      "name": "Listar impressoras online",
      "method": "GET",
      "url": "{{ _.base_url }}/print-sta-api-printers?status=online",
      "headers": [
        {
          "name": "Authorization",
          "value": "Bearer {{ _.api_key }}"
        }
      ]
    },
    {
      "_id": "req_textjob",
      "_type": "request",
      "parentId": "fld_quickstart",
      "name": "Criar impressão TEXT",
      "method": "POST",
      "url": "{{ _.base_url }}/print-sta-api-print-jobs",
      "headers": [
        {
          "name": "Authorization",
          "value": "Bearer {{ _.api_key }}"
        },
        {
          "name": "Content-Type",
          "value": "application/json"
        }
      ],
      "body": {
        "mimeType": "application/json",
        "text": "{\n  \"printer_id\": \"{{ _.printer_id }}\",\n  \"content\": {\n    \"type\": \"text\",\n    \"encoding\": \"utf8\",\n    \"data\": \"PRINT STA\\\\nPrimeira impressão via Insomnia\\\\n\"\n  },\n  \"copies\": 1\n}"
      }
    },
    {
      "_id": "req_job",
      "_type": "request",
      "parentId": "fld_quickstart",
      "name": "Consultar job",
      "method": "GET",
      "url": "{{ _.base_url }}/print-sta-api-print-jobs/{{ _.job_id }}",
      "headers": [
        {
          "name": "Authorization",
          "value": "Bearer {{ _.api_key }}"
        }
      ]
    }
  ]
}
