BETCORE Aggregator
Provider IntegrationCasino Integration
Provider IntegrationCasino Integration
Visit Betcore website
Follow Betcore on Instagram
Follow Betcore on LinkedIn
Follow Betcore on Youtube
  1. Payments
  • Getting Started
  • Integrate BETCORE Games (Casino)
    • Integrate BETCORE Gems (Casino)
    • WebFrame Connection
    • Aggregator API for Casino
      • Authentication
        • Verify
        • Jwks
        • Token
      • Payments
        • Accept
      • Cashback
        • Accept
    • Casino API for Aggregator
      • Users
        • Auth
        • Data
      • Payments
        • Info
          POST
        • Make
          POST
        • Make-list
          POST
        • Close
          POST
      • Cashback
        • Make
  • Integrate as Games Provider
    • Integrate as Games Provider
    • Provider API for Aggregator
      • Games
        • Games
        • Launch
    • Aggregator API for Provider
      • Get Balance
        • Balance
      • Bets
        • PayIn
        • PayOut
        • PayInOut
        • Refund
  • Feed
    • Feed Integration
    • REST API
      • Authorization
        • Token
      • Games
        • Info
        • Translations
      • Jackpot
        • Accumulated
    • Websocket
      • SubOnWholeGamesInfo
  • SubOnWholeGamesInfo
  1. Payments

Info

POST
/payments/info

Overview#

The Info endpoint is used to retrieve a detailed list of transactions associated with a specific bet. This endpoint is essential for obtaining a complete record of all the transactional activities linked to a given bet identifier.
The main objectives of the Info method are:
Detailed Transaction Retrieval: It provides Partners with all the transaction details of a bet, including the timestamp of each transaction, unique identifiers (such as BetId, PartnerTransactionId), transaction type, amounts, and tax details when applicable.
Record Synchronization: By fetching an up-to-date list of transactions for a bet, it ensures that both the Partner and BETCORE have consistent and synchronized records of all actions performed. This supports accurate tracking and auditing purposes.
Status Verification and Reconciliation: The endpoint helps in confirming the status of each transaction linked to a bet. This includes verifying that transactions have been processed correctly, identifying any discrepancies, and facilitating necessary error handling or reprocessing.
In summary, the Info method is critical for retrieving a complete transaction log for a specific bet, thereby supporting accurate record-keeping, verification, and troubleshooting within the BETCORE Partners API integration.

Request Parameters#

ParameterData typeDescriptionRequired
JWT payload
datajson stringRequest data.Yes
 BetIdnumberBet ID.Yes

Request

Authorization
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://mock.apidog.com/m1/820627-0-default/payments/info'

Responses

🟢200Success
application/json
Body
ErrorCode
number 
required
Error code of the response.
Message
string 
required
Code description.
Value
array [object {7}] 
optional
BetId
number 
required
Bet ID.
Created
number 
required
Date and time of transaction. UNIX
PartnerUserID
string 
required
Partner's user ID.
PartnerTransactionId
string 
required
Transaction ID.
TransactionType
number 
required
Transaction type.
Amount
string 
required
Transaction amount in player's currency.
TaxAmount
string 
optional
Tax amount.
Example
{
    "ErrorCode": 200,
    "Message": "Success",
    "Value": [
        {
            "BetId": 120730817,
            "Created": 1606403116,
            "PartnerUserId": "4001",
            "TransactionId": "-1-120730817",
            "TransactionType": -1,
            "Amount": "10"
        },
        {
            "BetId": 120730817,
            "Created": 1606403128,
            "PartnerUserId": "4001",
            "TransactionId": "1-120730817",
            "TransactionType": 1,
            "Amount": "115.5"
        }
    ]
}
⚪103752Invalid request parameters
⚪103811JWT token validation failed
⚪103799General API Error
Previous
Data
Next
Make
Built with