Skip to content

Winlose by Provider

GET
/api/reports/organization/wl-provider

Win/Loss report grouped by game provider for the caller's organisation.

Authorizations

Parameters

Query Parameters

currency*
Typestring
Required
createdAt
Typestring
orgIds
Typestring
publisherIds
Typestring

Responses

Win/Loss by Provider
JSON
{
"data": {
},
"status": null,
"timeStamp": "string"
}

Samples

cURL
curl -X GET https://api-game.kkapi.co/api/reports/organization/wl-provider
JavaScript
fetch("https://api-game.kkapi.co/api/reports/organization/wl-provider")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("https://api-game.kkapi.co/api/reports/organization/wl-provider");
Python
import requests
response = requests.get("https://api-game.kkapi.co/api/reports/organization/wl-provider")
print(response.json())