Skip to main content
POST
/
invite-to-quest
Invite to Quest
curl --request POST \
  --url http://dolphinflashcards.com/api/invite-to-quest \
  --header 'Content-Type: application/json' \
  --data '{
  "jwtToken": "<string>",
  "questId": "<string>",
  "invitedId": "<string>"
}'
{
  "message": "User invited"
}

Body

application/json
jwtToken
string
required

JWT token for authentication.

questId
string
required

The ID of the quest.

invitedId
string
required

The ID of the user being invited.

Response

User invited.

message
string
Example:

"User invited"

I