Javascript
import Anchorbrowser from 'anchorbrowser'; const client = new Anchorbrowser({ apiKey: 'My API Key', }); const successResponse = await client.profiles.update('my-profile'); console.log(successResponse.data);
{ "data": { "status": "success" } }
Updates the description or data of an existing profile using a browser session.
API key passed in the header
The name of the profile to update.
"my-profile"
Profile updated successfully.
The response is of type object.
object