curl --request POST \
--url https://api.engagefabric.com/projects/{projectId}/adventures/{adventureId}/quests \
--header 'Content-Type: application/json' \
--data '
{
"questId": "<string>",
"sortOrder": 123,
"unlockConditions": {
"requiredQuestIds": [
"<string>"
],
"minAdventurePoints": 123,
"minLevel": 123
},
"isRequired": true,
"bonusRewards": [
{
"type": "xp",
"amount": 123,
"currencyCode": "<string>",
"badgeId": "<string>",
"track": "<string>"
}
]
}
'