Skip to main content

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

PropertyTypeDescription
playerIdStringPlayer Id that need to increase numbers of spin.
spinNumberNumberNumbers 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
}