curl --request PATCH \
--url http://localhost:3000/api/v1/missions/{missionId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": "<string>",
"status": "draft",
"name": "<string>",
"endDate": "2023-11-07T05:31:56Z"
}
'