If your authenticated user belongs to an organization you could do something like:
auth('sanctum')->user()->organization->id
I would eager load organization within User-model with protected $with = ['organization'].
Additionally: You need to have a look and understanding of Laravel auth-guards and it's providers, if you want to use a different auth-guard for organizations.