Skip to main content
PATCH
/
v2
/
account-offers
/
{account}
Update an account offer
curl --request PATCH \
  --url https://api.gameboost.com/v2/account-offers/{account} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "game_id": 123,
  "game": "<string>",
  "title": "<string>",
  "slug": "<string>",
  "description": "<string>",
  "dump": "<string>",
  "private_note": "<string>",
  "price": 10.99,
  "is_manual": false,
  "login": "<string>",
  "password": "<string>",
  "email_login": "<string>",
  "email_password": "<string>",
  "email_provider": "proton.me/mail",
  "delivery_instructions": "<string>",
  "delivery_time": {
    "duration": 10,
    "unit": "hours"
  },
  "game_items": {
    "champions": [
      "lol-aatrox",
      "lol-zed"
    ],
    "skins": [
      "lol-academy-ahri"
    ]
  },
  "image_urls": [
    "https://example.com/image1.jpg",
    "https://example.com/image2.jpg"
  ],
  "account_data": {}
}
'
{
  "data": {
    "id": 123,
    "game": {
      "id": 123,
      "name": "<string>",
      "slug": "<string>"
    },
    "account_order_ids": [
      123
    ],
    "title": "<string>",
    "slug": "<string>",
    "description": "<string>",
    "parameters": {},
    "dump": "<string>",
    "status": "draft",
    "delivery_time": {
      "duration": 123,
      "unit": "minutes",
      "format": "<string>",
      "format_long": "<string>",
      "seconds": 123
    },
    "is_manual_delivery": true,
    "credentials": {
      "login": "<string>",
      "password": "<string>",
      "email_login": "<string>",
      "email_password": "<string>",
      "email_provider": "<string>"
    },
    "delivery_instructions": "<string>",
    "price": "<string>",
    "price_usd": "<string>",
    "views": 123,
    "image_urls": [
      "<string>"
    ],
    "created_at": 123,
    "updated_at": 123,
    "listed_at": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account
string
required

The ID of the account offer. Can be retrieved from the list of account offers.

Body

application/json

Update account offer - all fields are optional, only provide fields you want to update

game_id
integer

Unique identifier for the game (required if game slug not provided)

game
string

Slug of the game (required if game_id not provided)

title
string

Display title for the account offer

Maximum string length: 255
slug
string

Custom URL-friendly identifier (auto-generated if not provided)

Maximum string length: 255
description
string

Detailed description of the account and its features

Maximum string length: 2048
dump
string

Searchable metadata including keywords, tags, and categorization terms

Maximum string length: 2048
private_note
string

Private note only visible to you

Maximum string length: 2048
price
number

Account price in EUR currency, up to 2 decimal places

Required range: x >= 0.99
Example:

10.99

is_manual
boolean
default:false

Indicates if account requires manual delivery by seller

login
string

Account login username (required if not manual delivery)

Maximum string length: 255
password
string

Account password (required if not manual delivery)

Maximum string length: 255
email_login
string

Email address associated with the account

Maximum string length: 255
email_password
string

Password for the associated email account

Maximum string length: 255
email_provider
string

Email service provider domain

Maximum string length: 255
Example:

"proton.me/mail"

delivery_instructions
string

Special instructions for account delivery, provided to buyer after purchase, this field is not encrypted

Maximum string length: 2048
delivery_time
object

Expected delivery time object (required if manual delivery)

Example:
{ "duration": 10, "unit": "hours" }
game_items
object

Object containing game item type slugs as keys with arrays of item names/slugs as values

Example:
{
"champions": ["lol-aatrox", "lol-zed"],
"skins": ["lol-academy-ahri"]
}
image_urls
string[]

Array of image URLs showcasing the account, imgur not supported

Minimum array length: 1

Image URL

Example:
[
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
]
account_data
object

Specifics available via the template endpoint. Game-specific account attributes such as level, rank, champions unlocked, etc.

Response

Successfully retrieved account offer details

data
object

Account offer object