POST /learntech/{player_identifier}
Endpoint: POST /v1/pdapi/learntech/<player_identifier>
Auth: Bearer token
Permission: REST.Techs.Learn
Purpose
Learns one, many, or all technologies for a player.
Path parameters
player_identifier:UserIdorPlayerUIDfor the target player.
Query parameters
None.
Request body
Technology can be a single TechID, the string "All", or an array of TechID strings. Do not put "All" inside an array.
Response schema
200 response schema
| Field | Type | Description |
|---|---|---|
UnlockedCount |
integer | Number of technologies unlocked by this request. |
Unlocked |
string[] | Technology IDs that were unlocked. |
Skipped |
string[] | Technology IDs skipped because they were already unlocked. |
Error responses
Error bodies use this shape:
| HTTP | Error code | When it happens |
|---|---|---|
401 |
INVALID_TOKEN |
The Authorization header is missing, malformed, or does not match a configured bearer token. |
403 |
MISSING_PERMISSION |
The token is valid, but it does not include this endpoint permission. |
400 |
INVALID_JSON |
A request body was supplied, but it could not be parsed as JSON. |
400 |
REQUEST_FAILED |
The game-thread callback threw an exception, or a shared player/resource resolver failed. |
500 |
REQUEST_TIMEOUT |
The internal game-thread callback did not complete within 5 seconds. |
400 |
INVALID_REQUEST |
Technology is missing, or it is not a string/array in the expected format. |
400 |
VALIDATION_FAILED |
The Technology array contains a non-string, All, or an invalid technology identifier. |
Examples
Learn one technology for a Steam player
Learn several technologies for a PS5 player
Learn every technology by PlayerUID
Scenarios
- Unlock a missing recipe for support.
- Unlock all technologies for test accounts.
- Validate technology IDs at paldeck.cc/technology before sending the request.