Update a quest
PUThttps://api.playmakers.co/quest/:questId
Update a quest
Request
Path Parameters
The questId to update
- application/json
Body
Quest data
Possible values: <= 3000 characters
Possible values: >= 2 characters
Possible values: <= 1000000
Possible values: <= 64 characters
Name of the quest
Responses
- 200
- 401
- 403
- 404
- 500
- default
Quest successfully updated
- application/json
- Schema
- Example (from schema)
Schema
Number of times this quest has been completed.
Maximum allowed number of times for the quest to be completed by a single user
Possible values: <= 64 characters
Name of the quest
Unique identifier for Quest
Unique identifier for Project
Expiration date for the quest
Unique identifier for the referrer quest
URL to the quest's thumbnail image
Detailed descriptions of the different stages/applications of the quest
Possible values: <= 1000000
The amount of points you gain after finishing the quest
Possible values: [open
, closed
]
Possible values: [daily
, weekly
, monthly
, hourly
]
Unique identifier for the referee quest
Quest-specific data in JSON format
Time representation of entity creation
List of prerequisite quests that must be completed before starting this quest
Number of times this quest has been completed by the current user
Unique identifier for the QuestType
The order in which the quest should be displayed
{
"userQuestCount": 1,
"userQuestsLimit": 3,
"name": "Game referral",
"id": "q3b19Z1n",
"projectId": "p2Duhf5N6",
"expiresAt": "2025-01-01T09:00:00.00Z",
"referrerQuestId": "Q3b19Z1n",
"thumbnail": "https://file.playmakers.co/p2Duhf5N6/aUv0OhmsR.jpg",
"descriptions": "{\"short\":\"wishlist BF4 in order to obtain your points\",\"pre\":[\"stage 1 desc\",\"stage 2 desc\"]}",
"points": 50,
"state": "open",
"periodic": "daily",
"refereeQuestId": "Q3b19Z1n",
"data": "string",
"createdAt": "2024-01-01T09:00:00.00Z",
"prerequisites": [
"q3b19Z1n"
],
"myUserQuestCount": 2,
"questTypeId": "Q3b19Z1n",
"rankOrder": 1
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Unauthorized access"
}
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Forbidden access"
}
NotFound
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "A mandatory item was not found"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Internal Server Error"
}
Unexpected error
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "An unexpected error occured"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT 'https://api.playmakers.co/quest/:questId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"prerequisites": [
"q3b19Z1n"
],
"description": "string",
"data": "string",
"periodic": "string",
"refereeQuestId": "string",
"thumbnail": "https://file.playmakers.co/q2Duhf5N6/thumbnail.jpg",
"state": "string",
"points": 0,
"name": "Game referral",
"userQuestsLimit": 0
}'