Get Accounts
This service is needed so you can retrieve all of your account information, including UID, account #, account type
Request Endpoint
To execute this endpoint, you only need to send a get request.
GET /partners-int/accounts/
Account Categories
- Proprietary Account
A deposit or prepaid payment account owned and freely operated by the betting operator. It is used for operational expenses and liquidity management.
- TransactionalAccount
A payment processing account used by operators to receive funds from customers, essential for managing the financial flow of bets.
Account Types
- Proprietary
A deposit or prepaid payment account owned and freely operated by the betting operator. It is used for operational expenses and liquidity management.
- Transaction
A payment processing account used by operators to receive funds from customers, essential for managing the financial flow of bets.
- Integration
A bank provider account also used for transactions, designed to ensure redundancy in the integration.
Responses
{
"statusCode": "Done",
"data": [
{
"uid": "b773c60a-0550-431e-94a7-24a762594e03",
"accountName": "1",
"accountNumber": "52892351",
"accountType": "Transaction",
"category": "TransactionalAccount",
"accountState": "Active"
},
{
"uid": "99b935be-201d-4fad-bbc6-8a48af01eb2e",
"accountName": "2",
"accountNumber": "65090949",
"accountType": "Proprietary",
"category": "ProprietaryAccount",
"accountState": "Active"
},
{
"uid": "99b935be-201d-4fad-bbc6-8a48af01eb2e",
"accountName": "2",
"accountNumber": "65090949",
"accountType": "Integration",
"category": "TransactionalAccount",
"accountState": "Active"
}
]
}
{
"statusCode": "Error",
"error": {
"name": "AuthenticationError",
"message": "The authorization token is invalid",
"details": {
"reason": "AuthenticationTokenInvalid"
}
}
}
Responses
{
"statusCode": "Done",
"data": [
{
"uid": "b773c60a-0550-431e-94a7-24a762594e03",
"accountName": "1",
"accountNumber": "52892351",
"accountType": "Transaction",
"accountState": "Active"
},
{
"uid": "99b935be-201d-4fad-bbc6-8a48af01eb2e",
"accountName": "2",
"accountNumber": "65090949",
"accountType": "Proprietary",
"accountState": "Active"
}
]
}
{
"statusCode": "Error",
"error": {
"name": "AuthenticationError",
"message": "The authorization token is invalid",
"details": {
"reason": "AuthenticationTokenInvalid"
}
}
}
Updated 8 days ago