POST
/
api
/
v1
/
realms
/
{realmId}
/
quests
/
{questId}
/
tasks
/
{taskId}
/
triggers
/
{triggerId}
/
fire
curl --request POST \
  --url https://api.drip.re/api/v1/realms/{realmId}/quests/{questId}/tasks/{taskId}/triggers/{triggerId}/fire \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "proof": "<string>",
  "data": {},
  "secret": "<string>"
}'
{
  "data": {
    "success": true,
    "message": "<string>",
    "newProgress": {
      "id": "<string>",
      "userId": "<string>",
      "questId": "<string>",
      "progress": null,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  }
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

realmId
string
required

Body

application/json
proof
string
data
object
secret
string

Response

200
application/json
Default Response
data
object