Update my account

Using the SDK

from cakemail.models import PatchSelfAccount

account = api.account.update_self(
    PatchSelfAccount(
        name='<new account name>'
    )
)
<?php

$account = $api->account->updateSelf([
    'patch_self_account' => new \Cakemail\Lib\Model\PatchSelfAccount([
        'name' => '<new account name>'
    ])
]);
Language
Authorization
OAuth2
Click Try It! to start a request and see the response here!