Increase the Number of Spin
Merchant able to increase numbers of spin available for player.
API Endpoint
POST https://api.thegamify.club/api/player/increaseSpin
HEADERS
Content-Type: application/json
Authorization: [Gamify Token]
Request Body
| Property | Type | Description |
|---|---|---|
playerId | String | Player Id that need to increase numbers of spin. |
spinNumber | Number | Numbers of spin. It's a positive integer. |
Example
POST /api/player/increaseSpin
curl -X 'POST' \
'https://api.thegamify.club/api/player/increaseSpin' \
-H 'Accept: application/json' \
-H 'Authorization: 656561c45088c7df0d07f779:317ed89517d075943b2907efca4476c7a824faf74429c5c267d3248737116ef4' \
-H 'Content-Type: application/json' \
-d '{
"playerId": "groot-0002",
"spinNumber": 2
}'
RESPONSE
Type: any
{
"playerId": "groot-0002",
"spinCount": 87
}