{
  "info": {
    "name": "Passcreator — mcp.ai",
    "description": "REST API for the Passcreator MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/passcreator",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "passcreator_check_pass_existence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/pass/existence",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "pass",
            "existence"
          ]
        },
        "description": "Tool to check if a pass exists for a given ID. Use when verifying pass existence before subsequent operations like updates or deletions. The ID can be a generatedId (unique ID created for every pass, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"passId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "passcreator_create_app_scan",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/app/scan",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "app",
            "scan"
          ]
        },
        "description": "Tool to create a new App Scan in PassCreator. Use when recording pass validation or attendance scanning events. Supports tracking scan status, device information, and optional pass voiding.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"passId\": \"\",\n  \"createdOn\": \"\",\n  \"setVoided\": false,\n  \"deviceName\": \"\",\n  \"scanStatus\": \"\",\n  \"appConfigurationId\": \"\",\n  \"scannedBarcodeValue\": \"\",\n  \"additionalProperties\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "passcreator_get_app_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/app/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "app",
            "configuration"
          ]
        },
        "description": "Retrieves detailed information about an App Configuration by its identifier. Use when you need to get scan settings, UI customization, or validation rules for a specific App Configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "passcreator_get_process_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/process/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "process",
            "status"
          ]
        },
        "description": "Get the current status and progress of a bulk operation including any errors. Use this to monitor long-running bulk operations like batch pass updates or creations. The identifier is returned when ini",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "passcreator_get_signing_public_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/signing/public/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "signing",
            "public",
            "key"
          ]
        },
        "description": "Tool to obtain the public key needed to verify signatures from the placeholder sign() function. Use when you need to verify cryptographic signatures generated by Passcreator's sign placeholder.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "passcreator_list_app_configurations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/app/configurations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "app",
            "configurations"
          ]
        },
        "description": "Retrieves all App Configurations for your Passcreator account. Use this action to get a list of validation configurations that control how passes are scanned and validated. Each configuration can be l",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "passcreator_list_app_scans",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/app/scans",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "app",
            "scans"
          ]
        },
        "description": "Retrieves a paginated list of scans for a given app configuration. Use this tool to view scan history, track attendance, and analyze scan data ordered by creation date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start\": 0,\n  \"pageSize\": 0,\n  \"createdSince\": \"\",\n  \"appConfigurationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "passcreator_list_pass_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pass/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pass",
            "templates"
          ]
        },
        "description": "Retrieves all pass templates for your Passcreator account. Use this action to get a list of available templates (each with its unique identifier and name) which are needed to create new passes. Templa",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "passcreator_list_passes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/passes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "passes"
          ]
        },
        "description": "List and search wallet passes from Passcreator using the v3 API. Use this tool to: - Retrieve all passes in your account - Filter passes by template ID or project ID - Search passes using a search phr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageSize\": 0,\n  \"projectId\": \"\",\n  \"templateId\": \"\",\n  \"searchPhrase\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "passcreator_send_bulk_push_notifications",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/bulk/push/notifications",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "bulk",
            "push",
            "notifications"
          ]
        },
        "description": "Tool to send push notifications to multiple wallet passes simultaneously (up to 500 passes). Use when you need to notify pass holders about updates, events, or important information. The notification ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"listOfPasses\": \"\",\n  \"pushNotificationText\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "passcreator_update_passes_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/passes/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "passes",
            "bulk"
          ]
        },
        "description": "Tool to bulk update multiple wallet passes using filter criteria. Returns immediately with a tracking URL to monitor the asynchronous bulk operation progress. Use when updating many passes at once wit",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": {},\n  \"filter\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}