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. Authorization
  • 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. Authorization

Token

POST
/backend.bcdprod.net/partnersmediator-service/api/v2/auth/token

Overview#

The Token endpoint is used to securely authenticate the Partner within the BETCORE system and obtain an access token. This token grants access to protected resources and functionalities, enabling integration with BETCORE services.The main objectives of this method are:
Authentication: To verify the identity of the Partner using the PartnerClientId and Secret.
Authorization: To determine the specific permissions granted to the Partner, as defined by the scope of the access token.
Access Token Issuance: To provide the Partner with a valid access token for subsequent requests to protected resources.

Request

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

⚪103752Invalid request parameters
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/backend.bcdprod.net/partnersmediator-service/api/v2/auth/token' \
--header 'Content-Type: application/json' \
--data-raw '{
    "PartnerClientId": 1556,
    "Secret": "17aec...2521"
}'
Response Response Example
200 - Example 1
{
    "ErrorCode": 200,
    "Message": "Success",
    "Value": {
        "id_token": null,
        "access_token": "eyJhbGciOiT8a...Hk8-R-HiLVpumYMo",
        "expires_in": 900,
        "token_type": "Bearer",
        "refresh_token": null,
        "scope": "external-client-api feeds-api signalr-feed-api"
    }
}
Previous
REST API
Next
List
Built with