• Website
  • Server status
  • API documentation
  • Blog
Telegram Icon Community
EN
English
Português
Русский
中文 (中国)
Tiếng Việt
Log in Try for €1.99
  • Website
  • Server status
  • API documentation
  • Blog
  • Telegram Icon Community
  • English (US)
    English
    Português
    Русский
    中文 (中国)
    Tiếng Việt
Log in View Plans

Low-code automation with Postman

Automate browser tasks with Postman – no coding required. Learn how to send API requests, manage profiles, and streamline workflows with minimal effort.

search icon

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Getting started with Multilogin automation
  • Basic automation with CLI
  • Low-code automation with Postman
  • Script runner & predefined scripts
  • Puppeteer, Selenium, and Playwright
  • Custom Python scripts
  • Quick solutions with Developer Tools
  • External automation tools
  • Home
  • breadcrumb separator bar
  • Multilogin (latest)
  • breadcrumb separator bar
  • Efficient task automation with API
  • breadcrumb separator bar
  • Low-code automation with Postman
  • breadcrumb separator bar
  • How to update a Multilogin profile with Postman

How to update a Multilogin profile with Postman

Written by Soraya P ( Updated on March 19th, 2026 )

Updated on March 19th, 2026

You can use the two endpoints below to update existing browser profiles:

  • The Profile Update endpoint allows you to update all the parameters of a profile
  • The Profile Partial Update endpoint allows you to change any profile parameters separately

In the Profile Partial Update endpoint you can only change values for parameters that accept custom inputs, such as proxy, name, navigator_masking, localization_masking, geolocation_masking, and so on.

Before you start

  1. Complete all three steps from the article How to set up Multilogin API with Postman, including “Using the bearer token”: they will allow you to sign in correctly
  2. Insert your value into the below variable in the script:
    1. profile_id: get this value from the DevTools panel or from Postman

Running the script

Full profile update

  1. Navigate to the “Profile Management” section in your Postman workspace and select Profile Update endpoint
  2. Go to the “Body” tab and customize the needed parameters
  3. Click “Send” to execute the request: a “200” status means success
Profile Update - My Workspace 2025-12-15 at 2.12.54 PM
 
 

Partial profile update

  1. Navigate to the “Profile Management” section in your Postman workspace and select the Profile Partial Update endpoint
  2. Go to the “Body” tab and add your values for the custom parameters such as proxy, name, navigator_masking, localization_masking, geolocation_masking, and so on
  3. Click “Send” to execute the request: a “200” status means success
Profile Partial Update - My Workspace 2025-12-15 at 2.24.27 PM

Script example

{
    "name": "Test updated",
    "profile_id": "569e4e66-b7ba-42f5-9622-3f4e2337ac3a",
    "notes": "notes",
    "proxy": {
        "host": "<string>", #IP or HOST
        "type": "url", #HTTP or SOCKS5
        "port": "<integer>", #PORT
        "username": "<string>",
        "password": "<string>"
    },
    "parameters": {
        "flags": {
            "audio_masking": "natural",
            "fonts_masking": "mask",
            "geolocation_masking": "mask",
            "geolocation_popup": "prompt",
            "graphics_masking": "mask",
            "graphics_noise": "mask",
            "localization_masking": "mask",
            "media_devices_masking": "natural",
            "navigator_masking": "mask",
            "ports_masking": "mask",
            "proxy_masking": "custom",
            "screen_masking": "natural",
            "timezone_masking": "mask",
            "webrtc_masking": "mask"
        },
        "storage": {
            "is_local": false,
            "save_service_worker": false
        },
        "fingerprint": {}
        }
    }
 
 
 
 

 

browser profile terminate

Was this article helpful?

Give feedback about this article

In this article

  • Before you start
  • Running the script

Multilogin community

Stay informed, share your thoughts, and engage with others!

Telegram Icon Join us on Telegram

Read more on the topic

Blog Post Img

10 Best Datacenter Proxies for Web Scraping (2025 Edition)

Apr 2, 2025 5 min read
Google SERP Img

What is a Google SERP Proxy and Why Should You Care?

Apr 1, 2025 6 min read
UK Proxy Img

What Are Dedicated UK Proxies? Everything You Need to Know

Apr 1, 2025 6 min read
Related Article Title Icon

Related articles

  • Multilogin API automation: beginner's guide
  • How to start a Multilogin profile with Postman
  • How to stop a Multilogin profile with Postman
  • How to create a Multilogin profile with Postman
Expand