When running AT+CGACT=1,1 get error pdn not valid

I have my APN set:

at+cgdcont?

+CGDCONT: 0,“IPV4V6”,“VIRTUEYES.COM.BR”,0

OK
at+cgauth?

+CGAUTH: 0,1,“virtu”,“virtu”

OK
at+cpin?

+CPIN: READY

OK

Then, I run this to connect:

at+cgact=1,1

+CME ERROR: pdn not valid

I am new to Quectel modules, so I am not so familiar with the AT sequence.
I had more experience with another vendor, and in the other vendor’s module I have, my SIM Card connects and tx/rx data.

You have an APN set for context 0, but not context 1.

You are then trying to activate context 1.

Try populating context 1 first with:

AT+CGAUTH=1,1,"virtu","virtu"
AT+CGDCONT=1,"IPV4V6","VIRTUEYES.COM.BR"

@snowgum thanks for your reply