PATCH
/
browser
/
name
/
many
curl --request PATCH \
  --url https://api.gologin.com/browser/name/many \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "profileId": "6200f55e7685342e170dc531",
    "name": "My Test Profile"
  }
]'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json · object[]
Array of objects with profileId and new name.

The body is of type object[].