Hi @arb-6776
Azure function service bus trigger only supports service bus connection string. You cannot use SAS token to make connection to the service bus.
Ideally, any function app trigger would not be the recommended solution. But you can use the timer trigger that triggers the azure function from time to time. Inside the azure function, you can write your functionality to get the SAS token and use that SAS token to create the connection with servicebus and consume the messages.