Javascript
import Anchorbrowser from 'anchorbrowser'; const client = new Anchorbrowser({ apiKey: 'sk-1jdfiaj0advpoaskdfpoks', }); const successResponse = await client.profiles.delete('my-profile'); console.log(successResponse.data);
{ "data": { "status": "success" } }
Deletes an existing profile by its name.
API key passed in the header
The name of the profile to delete.
"my-profile"
Profile deleted successfully.
The response is of type object.
object