I have the admin account on docusign which I connect the api client with its credentials.
$client = new Client([
'username' => $username,
'password' => $password,
'integrator_key' => $integrator_key,
'host' => $host
]);
I have multiple users on this account and I can fetch the list of users (as well as their ids).
$client->users->callList()
I am trying to send an envelope on behalf of a user beside the admin account (so it doesn't show admin's name in the email, instead it shows that users details), however I am confused how to do that.
How do I do that using Docusign PHP Client? Or is it not possible with PHP Client so that I should use curl instead like this answer?