Welcome to Microsoft Q&A Platform, thanks for posting your query here.
You can queue multiple jobs to run on any of our providers using the submit method of a target; optionally, if you are using our Qiskit plugin, you can call the backend.run method to submit the job asynchronously.
For example:
jobs = []
for circuit in circuits:
jobs.append(backend.run(circuit, shots=N))
results = []
for job in jobs:
results.append(job.result())
We are working on bringing more advanced functionality, like batching jobs on a single call. If you would like to get early access to new Azure Quantum features, please register at https://aka.ms/AQ/Preview
Hope this helps.
Please 'Accept as answer' if the provided information is helpful, so that it can help others in the community looking for help on similar topics.