Run in Apidog
Creates of the player transaction in our database and returns link to form with confirmation of data There is a rule : one player can place a deposit no more than once every 5 minutes.
Request Body Params multipart/form-data
Request Code Samples
curl --location --request POST 'https://clientapi.spaystage.com/api/v1/deposit/start' \
--header 'X-Customer-Authorization: {{hash}}' \
--header 'X-Customer-Language: tr' \
--header 'X-Customer-Id: 1' \
--form 'player_username="playlser_user_name"' \
--form 'player_fullname="player full name"' \
--form 'player_id="999"' \
--form 'bet_provider_txid="9999912321xx452211"' \
--form 'amount="100"' Responses application/json Generate Code
{
"error" : {
"player_username" : [
"The player username field is required."
] ,
"amount" : [
"The amount field must be a number."
]
}
}
Modified at 2025-11-10 14:34:35