Create Remote Setting
curl --request POST \
--url https://app.papelship.com/api/qpapel/v1/remote-settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"product_id": "cs2_cheat",
"config": {
"hwid_method": "full_system",
"detection_response": "crash",
"blacklisted_windows": [
"x64dbg",
"Cheat Engine"
]
}
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
product_id: 'cs2_cheat',
config: {
hwid_method: 'full_system',
detection_response: 'crash',
blacklisted_windows: ['x64dbg', 'Cheat Engine']
}
})
};
fetch('https://app.papelship.com/api/qpapel/v1/remote-settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.papelship.com/api/qpapel/v1/remote-settings"
payload = {
"product_id": "cs2_cheat",
"config": {
"hwid_method": "full_system",
"detection_response": "crash",
"blacklisted_windows": ["x64dbg", "Cheat Engine"]
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.papelship.com/api/qpapel/v1/remote-settings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'product_id' => 'cs2_cheat',
'config' => [
'hwid_method' => 'full_system',
'detection_response' => 'crash',
'blacklisted_windows' => [
'x64dbg',
'Cheat Engine'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.papelship.com/api/qpapel/v1/remote-settings"
payload := strings.NewReader("{\n \"product_id\": \"cs2_cheat\",\n \"config\": {\n \"hwid_method\": \"full_system\",\n \"detection_response\": \"crash\",\n \"blacklisted_windows\": [\n \"x64dbg\",\n \"Cheat Engine\"\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": {
"id": 45,
"user_id": 1,
"product_id": "cs2_cheat",
"product_name": "Counter Strike 2 Loader",
"access_id": "389204859012",
"config": "{\"hwid_method\":\"full_system\"}",
"status": "active",
"created_at": "2026-06-12T06:00:00.000Z"
}
}{
"success": false,
"error": "Missing required field or invalid value"
}{
"success": false,
"error": "Unauthorized access. Valid API key required."
}Remote Settings
Create Remote Setting
Register a new remote configuration payload bound to a product.
POST
/
remote-settings
Create Remote Setting
curl --request POST \
--url https://app.papelship.com/api/qpapel/v1/remote-settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"product_id": "cs2_cheat",
"config": {
"hwid_method": "full_system",
"detection_response": "crash",
"blacklisted_windows": [
"x64dbg",
"Cheat Engine"
]
}
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
product_id: 'cs2_cheat',
config: {
hwid_method: 'full_system',
detection_response: 'crash',
blacklisted_windows: ['x64dbg', 'Cheat Engine']
}
})
};
fetch('https://app.papelship.com/api/qpapel/v1/remote-settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.papelship.com/api/qpapel/v1/remote-settings"
payload = {
"product_id": "cs2_cheat",
"config": {
"hwid_method": "full_system",
"detection_response": "crash",
"blacklisted_windows": ["x64dbg", "Cheat Engine"]
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.papelship.com/api/qpapel/v1/remote-settings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'product_id' => 'cs2_cheat',
'config' => [
'hwid_method' => 'full_system',
'detection_response' => 'crash',
'blacklisted_windows' => [
'x64dbg',
'Cheat Engine'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.papelship.com/api/qpapel/v1/remote-settings"
payload := strings.NewReader("{\n \"product_id\": \"cs2_cheat\",\n \"config\": {\n \"hwid_method\": \"full_system\",\n \"detection_response\": \"crash\",\n \"blacklisted_windows\": [\n \"x64dbg\",\n \"Cheat Engine\"\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": {
"id": 45,
"user_id": 1,
"product_id": "cs2_cheat",
"product_name": "Counter Strike 2 Loader",
"access_id": "389204859012",
"config": "{\"hwid_method\":\"full_system\"}",
"status": "active",
"created_at": "2026-06-12T06:00:00.000Z"
}
}{
"success": false,
"error": "Missing required field or invalid value"
}{
"success": false,
"error": "Unauthorized access. Valid API key required."
}Authorizations
BearerAuthApiKeyHeaderApiKeyHeaderLegacy
Standard HTTP Bearer token authentication header (e.g. Authorization: Bearer pk_live_...).
Body
application/json
Product cheat_value identifier.
Example:
"cs2_cheat"
JSON key-value configuration tree.
Example:
{
"hwid_method": "full_system",
"detection_response": "crash",
"blacklisted_windows": ["x64dbg", "Cheat Engine"]
}
Available options:
active, inactive Example:
"active"