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"
}

Documentation Index

Fetch the complete documentation index at: https://docs.dolphinflashcards.com/llms.txt

Use this file to discover all available pages before exploring further.

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"