{
  "info": {
    "_postman_id": "8b9b8b0e-e5cd-4fca-86b2-f018e698888b",
    "name": "Talentscout Candidate Application",
    "description": "Submit your developer application directly via our POST API endpoint.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "name": "Submit Application",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json",
            "type": "text"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fullName\": \"Jane Doe\",\n  \"email\": \"jane.doe@example.com\",\n  \"mobileNumber\": \"+1234567890\",\n  \"country\": \"India\",\n  \"applyingFor\": \"FULL_STACK\",\n  \"experience\": {\n    \"years\": 3,\n    \"currentStatus\": \"WORKING_PROFESSIONAL\"\n  },\n  \"technicalDetails\": {\n    \"primaryTechStack\": [\n      \"React\",\n      \"Node.js\"\n    ],\n    \"strongestSkills\": [\n      \"Frontend Development\",\n      \"REST APIs\"\n    ],\n    \"githubProfile\": \"https://github.com/janedoe\",\n    \"portfolioWebsite\": \"https://janedoe.dev\",\n    \"linkedinProfile\": \"https://linkedin.com/in/janedoe\"\n  },\n  \"projectContribution\": {\n    \"proudProject\": \"Built a SaaS platform that automates tracking.\",\n    \"whyJoin\": \"To contribute to open-source and work with a skilled community.\",\n    \"weeklyContributionHours\": 15,\n    \"comfortableLongTerm\": true,\n    \"workedWithGitGithub\": true\n  },\n  \"optionalScreening\": {\n    \"resumeUrl\": \"https://drive.google.com/file/d/.../view\",\n    \"preferredCommunicationPlatform\": \"DISCORD\"\n  },\n  \"confirmation\": {\n    \"understandNotPaid\": true,\n    \"willingForInterview\": true\n  }\n}"
        },
        "url": {
          "raw": "{{BASE_URL}}/api/submit",
          "host": [
            "{{BASE_URL}}"
          ],
          "path": [
            "api",
            "submit"
          ]
        },
        "description": "POST endpoint to submit application payload."
      },
      "response": []
    }
  ],
  "variable": [
    {
      "key": "BASE_URL",
      "value": "https://apply.firebeam.space",
      "type": "string"
    }
  ]
}