Hidemyacc Documents
  • HIDEMYACC OVERVIEW
    • What is Hidemyacc?
    • Who need Hidemyacc?
    • Why Hidemyacc?
  • HIDEMYACC REGISTRATION
    • Create new account
    • Free trial
    • Setting
      • Account
      • New profile default
      • Hidemyacc server
      • Language
      • Updates
      • Timezone
      • Security
      • Magic Link
      • Storage
  • HIDEMYACC 3.0 - FEATURES
    • New UX/UI
    • New browser source - Marco
    • Setup & Profile
      • New Profile
        • Overview tab
        • Proxy tab
        • Extensions
        • Timezone
        • WebRTC
        • Geolocation
        • Advanced
        • Cookies
        • Bookmarks
      • Quick
      • Duplicate
      • Multi profiles
      • Restore profiles
      • History activity
      • Profile history
      • Profile & folder management
        • Share/Transfer profile/folder
    • Automation
      • Create automation scripts
        • Variables command group
        • Browser command group
        • Interaction command group
        • Condition command group
        • Loops command group
        • Facebook group
      • Run test and debug
      • Import/Export scripts
      • Record Automation
      • Automation Schedule
      • Facebook group
    • Team Member
    • Synchronizer
      • Main and controlled profile
      • Windows
      • Text
      • Tabs
      • Widget
      • Page
    • Proxy Manager
      • Proxy Manager
        • Add proxy to Proxy Manager
        • Add proxy from Proxy Manager to profile
      • Proxy Store
    • Setting
    • Affiliate Program
    • Hidemyacc 3.0 API
      • Profile
        • Start Profile
        • Stop Profile
        • Profile List
        • Folder List
        • Create Marco Profile
        • Create Ghosty Profile
        • Update Marco Profile
        • Update Ghosty Profile
        • Delete Profile
      • User
        • Query account information
      • Example
  • HIDEMYACC 2.0 FEATURES
    • Automation
    • Fingerprint Protection
    • Auto Back-up
    • High Security
    • Teamwork
    • Cookie-Bot
    • Support 24/7
    • Huge configurations
    • Multi-apps
  • HIDEMYACC 2.0 INSTRUCTIONS
    • Download and Install Hidemyacc
    • Create Hidemyacc account
    • Purchase Hidemyacc Plans
    • Create Hidemyacc Profile
    • Manage Your Profiles
    • Restore Profiles
    • Check hardware fingerprints and browser fingerprints
    • Automation
    • Hidemyacc API
      • Profile
        • 1. Profile List
        • 2. Create Profile
        • 3. Run Profile
        • 4. Stop Profile
        • 5. Delete Profile
      • User
        • Query account information
      • Examples
  • ABOUT
    • Team
    • Customer Support
    • FAQ
      • How to use HIDEMYACC?
      • What operating systems does the software support?
      • Can I use my account on different computers at the same time?
      • How many accounts can I use in 1 computer?
      • How to pay for the invoice?
      • If I cannot pay on time, will I lose all my data?
      • How long will I wait prior to the activation of my subscription?
      • How to change the subscription plan?
      • Hidemyacc 3.0
        • What is Hidemyacc version 3.0?
        • How can I upgrade to Hidemyacc version 3.0?
        • What can I do with the profiles I create on browser source Foxy?
        • How does the new UI enhance usability?
        • Are there any new pricing plans or modifications to existing subscriptions in Hidemyacc version 3.0?
        • Is Hidemyacc version 3.0 available for all platforms and devices?
Powered by GitBook
On this page
  • Create Profile
  • Parameters - Parameter
  • Examples
  • Success response
  • Success response example
  • Error response
  • Error response example
  1. HIDEMYACC 2.0 INSTRUCTIONS
  2. Hidemyacc API
  3. Profile

2. Create Profile

Create Profile

POST http://127.0.0.1:12368/profiles

Parameters - Parameter

Name
Type
Description

os

String

Operating system. List of supported operating systems: (win, mac, linux, android, ios)

name

String

Optional profile's name

notes

String

Optional Note

browser

String

Optional Browser. List of supported browsers: (chrome, opera, edge, firefox)

proxy

String

Optional Proxy. Use in the following format: "{"host":"103.171.112.245","mode":"http","password":"1ee93edba5c911c33","port":19099,"username":"nguyenmanhtien.bh"}"

Examples

  • Curl example

curl -X POST http://127.0.0.1:12368/profiles -i -d "os=mac&name=test&notes=example&browser=chrome"
  • Javascript example

const hidemyacc = new Hidemyacc();
const proxy = {
  host: "103.171.112.245",
  mode: "http",
  password: "1ee93edba5c911c33",
  port: 19099,
  username: "nguyenmanhtien.bh",
};
const user = await hidemyacc.create(os, name, notes, browser, proxy);

Success response

Success response - Success 200

Name
Type
Description

data

Object

Profile information.

Success response example

Success response example - Success-Example

HTTP/1.1 200 OK
    {
        "code": 1,
        "data":
        {
            "browserType": "chrome",
            "createdAt": "2021-10-06T09:28:43.178Z",
            "id": "615d6c4b2a151505fe6ba060",
            "name": "test",
            "notes": "example",
            "os": "mac",
            "platform": "MacIntel",
            "proxy":
            {
                "autoProxyPassword": "",
                "autoProxyRegion": "us",
                "autoProxyServer": "",
                "autoProxyUsername": "",
                "host": "",
                "mode": "none",
                "password": "",
                "port": 80,
                "proxyEnabled": false,
                "torProxyRegion": "us",
                "username": ""
            },
            "role": "owner",
            "updatedAt": "2021-10-06T09:28:43.178Z"
        }
    }

Error response

Error response - Error 4xx

Name
Type
Description

401

Not logged into account

Error response example

Error response example - Response (example):

HTTP/1.1 401 Not Authenticated
{
  "code": 0,
  "message": "Unauthorized",
  "data": {}
}
Previous1. Profile ListNext3. Run Profile

Last updated 3 years ago