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

Accept

POST
{base_url}/mis-api/api/v2/cashback-payments/accept

Overview#

The /cashback-payments/accept is used to send the result of cashback transaction processing
After the data token in the payload has been successfully verified, the partner on its side needs to extract a claim from it with the data type, which will contain JSON of the transaction data. The partner needs to check the received data and add the corresponding transaction on his side.
It is recommended to implement a mechanism for resending requests in case of a network error occurred during a request or in case of receiving a response with an error.
The/cashback-payments/acceptrequest must be sent within 30 seconds after receiving the/cashback-payments/makerequest from BETCORE.

Possible values for ErrorCode parameter sent in the body#

Error CodeDescription
200Success
102145User not found
103801Incorrect amount
102823Error adding transaction
103779User blocked
103804Transaction already exists
103753Request data error
📌
In case error 103804 was received, please pass the contents of Value.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

⚪103752Incorrect request parameters
⚪102823Error accepting transaction
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://tvbetapiproxy.top/mis-api/api/v2/cashback-payments/accept' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '/*Example of a request when a transaction was processed successfully*/
{
  "ErrorCode": 200,
  "Message": "Success",
  "Value": {
    "CashbackId": 480,
    "PartnerUserId": "188509"
    "PartnerTransactionId": "480-120730817",
    "TransactionType": 1,
    "Amount": 1000,
    "TaxAmount": 0
  }
}'
Response Response Example
200 - Successful response
{
    "ErrorCode": 200,
    "Message": "Success"
}
Previous
Accept
Next
PARTNER API
Built with