Export profile to csv
POST {{API_BASE_URL}}/browser/browsers.csv
You can import a profile into a csv file.
If you are using python, write the resulting response to a file:
f = open('profile.csv', 'w')
f.write(response.text)
f.close()
If node:
(sync variant)
fs.writeFileSync("profile.csv", response.body);
(async variant)
fs.writeFile("profile.csv", response.body)
On node the file entry must be inside the request function
Request Body
{"browsersIds"=>["{{PROFILE_ID}}"]}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Authorization | string | ||
Content-Type | string |
RESPONSES
status: Created
""