cURL
curl --request DELETE \ --url https://api.gologin.com/browser \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "profilesToDelete": [ "6200f55e7685342e170dc531" ] } '
Deletes multiple profiles by ids.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
You need to pass an array of profile ids.
Array of profile IDs that you want to delete.
["6200f55e7685342e170dc531"]
Was this page helpful?