Authorization: Bearer ********************{
"content": "Updated Question"
}curl --location --request PATCH 'http://localhost:3000/api/v1/level-one-questionaire/questions/1' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"content": "Updated Question"
}'{
"message": "Question retrieved successfully",
"data": {
"id": 1,
"content": "updated question",
"createdAt": "2025-03-04T18:15:05.874Z",
"deletedAt": null
}
}