`
from locust import HttpUser,User,task,constant
class myfirsttest(HttpUser):
host = "https://assessments-api-qa.kh3ira.com/api/assessment-attempt"
weight = 2
wait_time = constant(1)
@task
def get_users(self):
self.client.post("/63980c3c1a3185d030a14a2f/start")
`
How can I Parameterize the "63980c3c1a3185d030a14a2f" in the Post Request? Please share the Answer