curl --request POST \
--url https://api.gologin.com/deleted-profiles/restore \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"profileIds": [
"60a763f3f003b444f8aae4f2",
"60a763f3f003b444f8aae4f3"
],
"workspaceId": "60a763f3f003b444f8aae4f2"
}'
Restore deleted profiles.
curl --request POST \
--url https://api.gologin.com/deleted-profiles/restore \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"profileIds": [
"60a763f3f003b444f8aae4f2",
"60a763f3f003b444f8aae4f3"
],
"workspaceId": "60a763f3f003b444f8aae4f2"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Was this page helpful?