{
  "info": {
    "name": "Identitycheck — mcp.ai",
    "description": "REST API for the Identitycheck 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/identitycheck",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "identitycheck_check_api_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/api/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "api",
            "health"
          ]
        },
        "description": "Performs an API health check to verify endpoint availability and responsiveness. This tool sends an HTTP request to a specified endpoint and interprets a 200 OK response as indicating the API is UP. I",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"method\": \"\",\n  \"endpoint_path\": \"\",\n  \"include_raw_on_json\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "identitycheck_delete_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "configuration"
          ]
        },
        "description": "Tool to delete an existing configuration. Use when you need to remove a configuration by its unique code.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "identitycheck_delete_notification_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/notification/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "notification",
            "endpoint"
          ]
        },
        "description": "Tool to delete a notification endpoint by its unique code. This operation is idempotent - it will succeed whether the endpoint exists or has already been deleted. Use when you need to remove a callbac",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "identitycheck_fetch_all_configurations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/all/configurations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "all",
            "configurations"
          ]
        },
        "description": "Tool to fetch all existing configurations. Use when you need to list all customer configurations after authentication.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "identitycheck_fetch_all_notification_endpoints",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/all/notification/endpoints",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "all",
            "notification",
            "endpoints"
          ]
        },
        "description": "Fetches all configured notification endpoints (webhooks) for the IdentityCheck SDK. Use this to list all callback URLs that receive onboarding event notifications (START_ONBOARDING, END_ONBOARDING).",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "identitycheck_fetch_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "configuration"
          ]
        },
        "description": "Fetch a specific identity verification configuration by its code. Use this action when you need to: - Retrieve theme customizations (logo, colors, button styles) for a configuration - Get custom wordi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "identitycheck_fetch_notification_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/notification/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "notification",
            "endpoint"
          ]
        },
        "description": "Tool to fetch a notification endpoint by its code. Use when you need the current configuration of a specific callback endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "identitycheck_fetch_onboardings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/onboardings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "onboardings"
          ]
        },
        "description": "Retrieves identity verification onboarding sessions with comprehensive filtering and pagination. An onboarding represents a customer's identity verification journey, tracking their progress from link ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uid\": \"\",\n  \"page\": 0,\n  \"dateTo\": \"\",\n  \"status\": \"\",\n  \"dateFrom\": \"\",\n  \"errorCode\": \"\",\n  \"businessUid\": \"\",\n  \"notificationType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "identitycheck_get_document_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/document/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "document",
            "content"
          ]
        },
        "description": "Tool to retrieve base64-encoded document content. Use when you have an onboarding UID and document code.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uid\": \"\",\n  \"docCode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "identitycheck_retrieve_onboarding_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/onboarding/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "onboarding",
            "status"
          ]
        },
        "description": "Retrieve the current status and results of an identity verification onboarding session. Use this tool to check the progress of an onboarding (CREATED, CLICKED, CAPTURE_ONGOING) or get final results (S",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "identitycheck_update_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "configuration"
          ]
        },
        "description": "Tool to update an existing configuration. Use when you need to modify properties of a configuration identified by code.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"configuration\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}