Skip to main content
PATCH
/
accounts
/
{bookmaker}
/
{username}
Update account
curl --request PATCH \
  --url https://v2.55-tech.com/accounts/{bookmaker}/{username} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "balance": 2000,
  "active": true,
  "priority": 15,
  "maxStake": 750
}
'
import requests

url = "https://v2.55-tech.com/accounts/{bookmaker}/{username}"

payload = {
"balance": 2000,
"active": True,
"priority": 15,
"maxStake": 750
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}

response = requests.patch(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'PATCH',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({balance: 2000, active: true, priority: 15, maxStake: 750})
};

fetch('https://v2.55-tech.com/accounts/{bookmaker}/{username}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://v2.55-tech.com/accounts/{bookmaker}/{username}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'balance' => 2000,
'active' => true,
'priority' => 15,
'maxStake' => 750
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://v2.55-tech.com/accounts/{bookmaker}/{username}"

payload := strings.NewReader("{\n \"balance\": 2000,\n \"active\": true,\n \"priority\": 15,\n \"maxStake\": 750\n}")

req, _ := http.NewRequest("PATCH", url, payload)

req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.patch("https://v2.55-tech.com/accounts/{bookmaker}/{username}")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"balance\": 2000,\n \"active\": true,\n \"priority\": 15,\n \"maxStake\": 750\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://v2.55-tech.com/accounts/{bookmaker}/{username}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Patch.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"balance\": 2000,\n \"active\": true,\n \"priority\": 15,\n \"maxStake\": 750\n}"

response = http.request(request)
puts response.read_body
{
  "bookmaker": "<string>",
  "username": "<string>",
  "client": "<string>",
  "password": "<string>",
  "balance": 123,
  "active": true,
  "priority": 123,
  "maxStake": 123,
  "minStake": 123,
  "currencyId": "<string>",
  "verifyBetslip": true,
  "meta": {},
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "multiLimitAllowed": true,
  "currencyInfo": {
    "currency": "<string>",
    "currencyValue": 123,
    "updatedAt": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication. Contact contact@55-tech.com to obtain a key.

Path Parameters

bookmaker
string
required

Bookmaker slug

username
string
required

Account username

Body

application/json
password
string | null

New account password

balance
number | null

Updated balance

active
boolean | null

Enable or disable the account

priority
integer | null

Priority for account selection (higher = preferred)

maxStake
number | null

Maximum stake override

minStake
number | null

Minimum stake override

currencyId
string | null

Account's trading currency (e.g., 'USD', 'EUR')

meta
object | null

Additional metadata (replaces existing meta)

Response

Account updated successfully

bookmaker
string

Bookmaker slug

username
string

Account username

client
string

Client name that owns this account

password
string | null

Always masked as '***'

balance
number

Current balance

active
boolean

Whether account is active

priority
integer

Priority for account selection (higher = preferred)

maxStake
number | null

Maximum stake override

minStake
number | null

Minimum stake override

currencyId
string

Account's trading currency

verifyBetslip
boolean

Force live odds fetch from bookmaker API

meta
object

Additional metadata

createdAt
string | null

Creation timestamp (ISO 8601)

updatedAt
string | null

Last update timestamp (ISO 8601)

multiLimitAllowed
boolean

Whether the account permits splitting a stake across multiple bets

currencyInfo
object | null

Exchange rate snapshot for currencyId: { currency, currencyValue, updatedAt }. Null when no rate is available.