post_profile_browsers_csv
Export browser profiles from GoLogin as CSV files. Specify workspace and browser IDs to generate a structured export for analysis or backup purposes.
Instructions
Export profiles
Input Schema
Name | Required | Description | Default |
---|---|---|---|
browsersIds | Yes | Array of browser IDs to export. | |
currentWorkspace | No |
Input Schema (JSON Schema)
{
"properties": {
"browsersIds": {
"description": "Array of browser IDs to export.",
"items": {
"type": "string"
},
"type": "array"
},
"currentWorkspace": {
"type": "string"
}
},
"required": [
"browsersIds"
],
"type": "object"
}