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 Account banned: what should I do? 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 My app or profile is slow: how to fix performance issues How to unlock a locked profile How to find missing profiles How to fix website loading issues in Multilogin How to access restricted websites How to fix connection issues in restricted regions How to fix Stealthfox issues on Windows How to fix small Stealthfox window resolution on Windows 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 “Some settings were reset” error How to fix “Plan limit reached” error How to fix “Wrong proxy data” error How to fix “ERR_CONNECTION_RESET” error
-
Common errors and solutions in Multilogin 6 How to fix profile launch issues in Multilogin 6 How to fix proxy connection issues in Multilogin 6 How to fix frozen "Update in progress... Loading [3] of 2 components" status How to fix Android profile issues in Multilogin 6 How to fix issues with extension data in Mimic How to fix Stealthfox issues on Windows How to fix "JavaScript error" in Multilogin 6 dark mode How to fix "Javax.crypto […] pad block corrupted" error How to fix "Fingerprint composition failed" error How to fix "Mimic/Stealthfox executable is not found" error How to fix "Downloading Mimic browser" error How to fix "Invalid buffer arguments" error How to fix "Cannot invite existing user" error
Getting started with Postman
Written by Yelena Varabyeva
Updated on December 12th, 2024
Table of contents
Setting up Postman
- Download and install Postman
- Go to Multilogin X API documentation and click "Run in Postman" in the top-right corner
- Select "Postman for <your OS>"
- In the "Import collection" window, select your workspace and click "Import": this will copy all the requests into a workspace on your computer
You can also use the web version by choosing "Postman for Web" in step 3; or manually create a collection with requests in Postman by clicking "New" → "Collection" and giving it a name.
Signing in
Here you will learn how to convert your password and sign in to your Multilogin X account.
- Visit MD5 Hash Generator and convert your Multilogin X account password
- Navigate to the "Profile Access Management" folder in your Postman workspace and select "POST User Signin"
- In the "Body" section, put in your Multilogin X account email and password hash generated in Step 1
- Click "Send" to execute the request: a "200" status means success
You will need the value of the token attribute to run further requests in Postman.
The token expires in 30 minutes. You can refresh it with the "User Refresh Token" endpoint. Also you can use the automation token and specify the required expiration period yourself (not available in the Starter plan).
Using the bearer token
For the majority of requests in Postman you will need to use the bearer token. Here's how you can put its value automatically into each request.
- Go to the "Scripts" section in the "POST User Signin" request
- Add the following code and save the changes:
const response = pm.response.json()
const token = response.data.token
pm.collectionVariables.set("token", token)
- Complete the steps from the “Signing in” section of this article
- Go to the main collection page "Multilogin X API" and switch to the "Authorization" section
- Specify the values below and save changes:
-
Bearer token
for "Type" -
{{token}}
for "Token"
-
When you use other requests, the token value will pull up automatically to the "Authorization" section of each request.