Typescript
import Nuntly from '@nuntly/sdk'; const client = new Nuntly({ apiKey: 'My API Key', }); const account = await client.account.update({ display_name: 'Ray Tomlinson' }); console.log(account.id);
{ "data": { "id": "user_01jh6jk831bzen14edngw38we9", "kind": "user" } }
Update your account
Bearer HTTP authentication. Allowed headers Authorization: Bearer <API_KEY>
A successful response
The response is of type object.
object