PUT
/
v1
/
profiles
/
{name}
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"
  }
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

name
string
required

The name of the profile to update.

Example:

"my-profile"

Body

application/json

Response

200
application/json

Profile updated successfully.

The response is of type object.