Skip to main content
PATCH
/
update-invite-status
Update Invite Status
curl --request PATCH \
  --url http://dolphinflashcards.com/api/update-invite-status \
  --header 'Content-Type: application/json' \
  --data '{
  "jwtToken": "<string>",
  "questId": "<string>",
  "status": "accepted"
}'
{
  "message": "User status updated"
}

Body

application/json
jwtToken
string
required

JWT token for authentication.

questId
string
required

The ID of the quest.

status
enum<string>
required

The new status for the invite.

Available options:
accepted,
pending,
declined

Response

User status updated.

message
string
Example:

"User status updated"

I