curl --request PATCH \
--url https://api.engagefabric.com/projects/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "My Awesome App v2",
"description": "Updated description",
"config": {
"xp": {
"levelCurve": "exponential",
"baseXP": 100,
"growthRate": 1.5,
"maxXPPerDay": 10000
}
},
"metadata": {
"version": "2.0.0",
"buildNumber": 43
}
}
'import requests
url = "https://api.engagefabric.com/projects/{id}"
payload = {
"name": "My Awesome App v2",
"description": "Updated description",
"config": { "xp": {
"levelCurve": "exponential",
"baseXP": 100,
"growthRate": 1.5,
"maxXPPerDay": 10000
} },
"metadata": {
"version": "2.0.0",
"buildNumber": 43
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'My Awesome App v2',
description: 'Updated description',
config: {
xp: {levelCurve: 'exponential', baseXP: 100, growthRate: 1.5, maxXPPerDay: 10000}
},
metadata: {version: '2.0.0', buildNumber: 43}
})
};
fetch('https://api.engagefabric.com/projects/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.engagefabric.com/projects/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'My Awesome App v2',
'description' => 'Updated description',
'config' => [
'xp' => [
'levelCurve' => 'exponential',
'baseXP' => 100,
'growthRate' => 1.5,
'maxXPPerDay' => 10000
]
],
'metadata' => [
'version' => '2.0.0',
'buildNumber' => 43
]
]),
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://api.engagefabric.com/projects/{id}"
payload := strings.NewReader("{\n \"name\": \"My Awesome App v2\",\n \"description\": \"Updated description\",\n \"config\": {\n \"xp\": {\n \"levelCurve\": \"exponential\",\n \"baseXP\": 100,\n \"growthRate\": 1.5,\n \"maxXPPerDay\": 10000\n }\n },\n \"metadata\": {\n \"version\": \"2.0.0\",\n \"buildNumber\": 43\n }\n}")
req, _ := http.NewRequest("PATCH", 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))
}HttpResponse<String> response = Unirest.patch("https://api.engagefabric.com/projects/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"My Awesome App v2\",\n \"description\": \"Updated description\",\n \"config\": {\n \"xp\": {\n \"levelCurve\": \"exponential\",\n \"baseXP\": 100,\n \"growthRate\": 1.5,\n \"maxXPPerDay\": 10000\n }\n },\n \"metadata\": {\n \"version\": \"2.0.0\",\n \"buildNumber\": 43\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.engagefabric.com/projects/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"My Awesome App v2\",\n \"description\": \"Updated description\",\n \"config\": {\n \"xp\": {\n \"levelCurve\": \"exponential\",\n \"baseXP\": 100,\n \"growthRate\": 1.5,\n \"maxXPPerDay\": 10000\n }\n },\n \"metadata\": {\n \"version\": \"2.0.0\",\n \"buildNumber\": 43\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "123e4567-e89b-12d3-a456-426614174000",
"tenantId": "123e4567-e89b-12d3-a456-426614174000",
"name": "My Awesome App",
"slug": "my-awesome-app",
"environment": "PRODUCTION",
"status": "ACTIVE",
"isActive": true,
"tier": "FREE",
"createdAt": "2025-01-15T10:30:00Z",
"updatedAt": "2025-01-15T10:30:00Z",
"description": "Production environment for My Awesome App",
"config": {
"xp": {
"levelCurve": "exponential",
"baseXP": 100
},
"currencies": [
{
"id": "coins",
"name": "Coins"
}
]
},
"metadata": {
"version": "1.0.0"
},
"deletedAt": null,
"_count": {
"players": 150,
"apiKeys": 3
}
}Update a project
curl --request PATCH \
--url https://api.engagefabric.com/projects/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "My Awesome App v2",
"description": "Updated description",
"config": {
"xp": {
"levelCurve": "exponential",
"baseXP": 100,
"growthRate": 1.5,
"maxXPPerDay": 10000
}
},
"metadata": {
"version": "2.0.0",
"buildNumber": 43
}
}
'import requests
url = "https://api.engagefabric.com/projects/{id}"
payload = {
"name": "My Awesome App v2",
"description": "Updated description",
"config": { "xp": {
"levelCurve": "exponential",
"baseXP": 100,
"growthRate": 1.5,
"maxXPPerDay": 10000
} },
"metadata": {
"version": "2.0.0",
"buildNumber": 43
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'My Awesome App v2',
description: 'Updated description',
config: {
xp: {levelCurve: 'exponential', baseXP: 100, growthRate: 1.5, maxXPPerDay: 10000}
},
metadata: {version: '2.0.0', buildNumber: 43}
})
};
fetch('https://api.engagefabric.com/projects/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.engagefabric.com/projects/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'My Awesome App v2',
'description' => 'Updated description',
'config' => [
'xp' => [
'levelCurve' => 'exponential',
'baseXP' => 100,
'growthRate' => 1.5,
'maxXPPerDay' => 10000
]
],
'metadata' => [
'version' => '2.0.0',
'buildNumber' => 43
]
]),
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://api.engagefabric.com/projects/{id}"
payload := strings.NewReader("{\n \"name\": \"My Awesome App v2\",\n \"description\": \"Updated description\",\n \"config\": {\n \"xp\": {\n \"levelCurve\": \"exponential\",\n \"baseXP\": 100,\n \"growthRate\": 1.5,\n \"maxXPPerDay\": 10000\n }\n },\n \"metadata\": {\n \"version\": \"2.0.0\",\n \"buildNumber\": 43\n }\n}")
req, _ := http.NewRequest("PATCH", 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))
}HttpResponse<String> response = Unirest.patch("https://api.engagefabric.com/projects/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"My Awesome App v2\",\n \"description\": \"Updated description\",\n \"config\": {\n \"xp\": {\n \"levelCurve\": \"exponential\",\n \"baseXP\": 100,\n \"growthRate\": 1.5,\n \"maxXPPerDay\": 10000\n }\n },\n \"metadata\": {\n \"version\": \"2.0.0\",\n \"buildNumber\": 43\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.engagefabric.com/projects/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"My Awesome App v2\",\n \"description\": \"Updated description\",\n \"config\": {\n \"xp\": {\n \"levelCurve\": \"exponential\",\n \"baseXP\": 100,\n \"growthRate\": 1.5,\n \"maxXPPerDay\": 10000\n }\n },\n \"metadata\": {\n \"version\": \"2.0.0\",\n \"buildNumber\": 43\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "123e4567-e89b-12d3-a456-426614174000",
"tenantId": "123e4567-e89b-12d3-a456-426614174000",
"name": "My Awesome App",
"slug": "my-awesome-app",
"environment": "PRODUCTION",
"status": "ACTIVE",
"isActive": true,
"tier": "FREE",
"createdAt": "2025-01-15T10:30:00Z",
"updatedAt": "2025-01-15T10:30:00Z",
"description": "Production environment for My Awesome App",
"config": {
"xp": {
"levelCurve": "exponential",
"baseXP": 100
},
"currencies": [
{
"id": "coins",
"name": "Coins"
}
]
},
"metadata": {
"version": "1.0.0"
},
"deletedAt": null,
"_count": {
"players": 150,
"apiKeys": 3
}
}Authorizations
JWT token for admin console authentication
Path Parameters
Project UUID
Body
Project name
2 - 255"My Awesome App v2"
Project description
"Updated description"
Environment type
DEVELOPMENT, STAGING, PRODUCTION Project status
ACTIVE, PAUSED, ARCHIVED Game configuration (XP, currencies, lives, etc.)
{ "xp": { "levelCurve": "exponential", "baseXP": 100, "growthRate": 1.5, "maxXPPerDay": 10000 } }
Additional metadata (JSON object)
{ "version": "2.0.0", "buildNumber": 43 }
Response
Project updated successfully
Unique project identifier
"123e4567-e89b-12d3-a456-426614174000"
Tenant ID that owns this project
"123e4567-e89b-12d3-a456-426614174000"
Project name
"My Awesome App"
URL-friendly slug
"my-awesome-app"
Environment type
DEVELOPMENT, STAGING, PRODUCTION "PRODUCTION"
Project status
ACTIVE, PAUSED, ARCHIVED "ACTIVE"
Whether the project is active (status === ACTIVE)
true
Rate limiting tier
FREE, STARTER, PROFESSIONAL, BUSINESS, ENTERPRISE "FREE"
Creation timestamp
"2025-01-15T10:30:00Z"
Last update timestamp
"2025-01-15T10:30:00Z"
Project description
"Production environment for My Awesome App"
Game configuration (XP, currencies, lives, etc.)
{ "xp": { "levelCurve": "exponential", "baseXP": 100 }, "currencies": [{ "id": "coins", "name": "Coins" }] }
Additional metadata
{ "version": "1.0.0" }
Soft deletion timestamp
null
Related entity counts
Show child attributes
Show child attributes
