Game Endpoints
Playtime
POST
/
player
/
playtime
Copy
curl --request POST \
--url https://partners-api.forge.gg/player/playtime \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <x-api-key>' \
--data '{
"last_time_played": "2024-07-16 19:20:30",
"total_hours": 5,
"user_email": "user@example.com",
"wallet_address": "0x1234567890abcdef",
"blockchain": "ethereum"
}'
Copy
{
"records_processed": 10
}
Headers
Body
application/json
Response
200
application/json
Successful response
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://partners-api.forge.gg/player/playtime \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <x-api-key>' \
--data '{
"last_time_played": "2024-07-16 19:20:30",
"total_hours": 5,
"user_email": "user@example.com",
"wallet_address": "0x1234567890abcdef",
"blockchain": "ethereum"
}'
Copy
{
"records_processed": 10
}
Assistant
Responses are generated using AI and may contain mistakes.