Please update to the latest patch version to use it.
Basics
POST /api/v2/browser-profile/share
Description: Share profiles via account email or phone number. The maximum number of profiles that can be shared at one time is 200.
Request Parameters
Optional Body parameters can be omitted, and the parameter format is JSON.
Name |
Type | Necessary | Default | Example | Description |
profile_id | list | Yes | - | ["h1yynkm","h1yynks","h1yynkd"] | ID of the profile that needs to be shared |
receiver | text | Yes | - | "123@123.com" | Receiver's account email or phone number (no area code) |
content | list | No | - | ["name","tabs"] |
Content to be shared. Default sharing: platform, account, password, 2FA key, cookies, fingerprint information, IP, Other supporting content: Name, proxy, tabs, remark. |
share_type | integer | No | 1 | 1 |
1: Share via email (default) 2. Share via phone number |
Return Data
//Operation succeeded
{
"code":0,
"data": {
"group_name":"Share-0508-h875uc-jEtXjN" //A new group will be created for the receiver
},
"msg":"success"
}
// Operation failed
{
"code":-1,
"data":{},
"msg":"failed"
}