https://www.twilio.com/docs/iam/test-credentials#supported-resources
Not supported with test credentials (fax)
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Whenever I tried to use my test credentials for Fax, it throws an error:
Error
[HTTP 403] Unable to create record: Resource not accessible with Test Account Credentials
Code
public function send()
{
$sid = env('TWILIO_ACCOUNT_SID');
$token = env('TWILIO_AUTH_TOKEN');
$to = env('TO_EXAMPLE');
$twilio = new Client($sid, $token);
$mediaURL = asset('pdfs/dummy.pdf');
$from = ["from" => '+' . env('TWILIO_NUMBER')];
$fax = $twilio->fax->v1->faxes
->create('+' . $to, $mediaURL, $from);
print($fax->sid);
}
https://www.twilio.com/docs/iam/test-credentials#supported-resources
Not supported with test credentials (fax)
Please or to participate in this conversation.