Contact Us
If you still have questions or prefer to get help directly from an agent, please submit a request.
Popular topics: Multilogin X, Multilogin 6,
-
Retrieving the token Using the automation token in a workspace Retrieving profile, folder, and workspace IDs Retrieving the user ID Selenium automation example Playwright automation example Puppeteer automation example Logging in to Multilogin automatically Setting up automatic cookie collection Auto-launching the agent Exporting proxy details from profiles Converting external proxy lists into API-ready JSON files Automation FAQHow to fix agent connection issues How to fix startup issues in Multilogin How to fix profile launch or proxy connection issues How to fix Mimic launch issues on Linux How to enable web camera in Multilogin profiles How to fix website loading issues in Multilogin My app or profile is slow: how to fix performance issues How to unlock a locked profile How to find missing profiles How to access restricted websites How to fix small Stealthfox window resolution on Windows How to fix connection issues in restricted regions How to fix Multilogin issues on macOS How to disconnect and reconnect the agent How to reinstall app components How to send logs to support How to fix "Failed to get profile data" error How to fix "Access denied" error How to fix “ERR_CONNECTION_RESET” error How to fix Stealthfox issues on Windows How to fix “Wrong proxy data” error Account banned: what should I do?
-
Common errors and solutions in Multilogin 6 Can't launch profiles in Multilogin 6 Multilogin 6 browser profile shows "Error" in status How to fix Stealthfox issues on Windows JavaScript error when switching to dark mode in Multilogin 6 Error: Failed to get IP data: can't connect through proxy Status: Update in progress...Loading (1) of 2 components Error: Javax.crypto.badpaddingexception: pad block corrupted How to fix "Fingerprint composition failed" error How to fix "Mimic/Stealthfox executable is not found" error How to fix "Downloading Mimic browser" error
Creating a profile with Postman
Written by Jason Nguyen
Updated on December 16th, 2024
Table of contents
In this article, we will use the “POST Profile Create” endpoint to build a simple script for creating profiles. This way, you can create multiple profiles at once.
Before you start
- Complete all three steps from this article, including “Using the bearer token”: they will allow you to sign in correctly
- Navigate to the "Profile Management" folder in your Postman workspace and select “POST Profile Create”
- Insert your values into the below variables in the script:
Running the script
- For bulk profile creation, specify the number of profiles in the
times
parameter (you can create up to 10 profiles at a time)
- Click "Send" to execute the request: a "200" status means success
Script example
{
"name": "Test",
"folder_id": "<FOLDER_ID>",
"core_version": 124,
"browser_type": "mimic",
"os_type": "windows",
"parameters": {
"storage": {
"is_local": false,
"save_service_worker": true
},
"flags": {
"audio_masking": "mask",
"fonts_masking": "custom",
"geolocation_masking": "custom",
"geolocation_popup": "prompt",
"graphics_masking": "mask",
"graphics_noise": "mask",
"localization_masking": "custom",
"media_devices_masking": "custom",
"navigator_masking": "custom",
"ports_masking": "mask",
"proxy_masking": "custom",
"screen_masking": "custom",
"timezone_masking": "custom",
"webrtc_masking": "custom"
},
"fingerprint": {
"navigator": {
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36",
"hardware_concurrency": 2,
"os_cpu": "windows",
"platform": "Win32"
},
"localization": {
"accept_languages": "ro-RO",
"languages": "ro-RO",
"locale": "ro-RO"
},
"timezone": {
"zone": "Europe/Bucharest"
},
"graphic": {
"vendor": "ANGLE (NVIDIA, NVIDIA GeForce RTX 4070 Ti Direct3D11 vs_5_0 ps_5_0, D3D11)",
"renderer": "Google Inc. (NVIDIA)"
},
"webrtc": {
"public_ip": "192.165.22.1"
},
"fonts": [
"Arial",
"Calibri",
"Cambria Math"
],
"media_devices": {
"video_inputs": 1,
"audio_inputs": 2,
"audio_outputs": 1
},
"screen": {
"width": 1920,
"height": 1080,
"pixel_ratio": 2
},
"geolocation": {
"latitude": 55,
"longitude": -54,
"altitude": 100,
"accuracy": 152
},
"ports": [
65535
],
"cmd_params": {
"params": [
{
"flag": "disable-notifications",
"value": "true"
}
]
}
}
}
}