Skip to main content
PATCH
/
v2
/
account-orders
/
{accountOrder}
/
credentials
Update account order credentials
curl --request PATCH \
  --url https://api.gameboost.com/v2/account-orders/{accountOrder}/credentials \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "credentials": "Login: example, Password: password, Email Login: example@example.com, Email Password: password, Email Provider: proton.me/mail"
}'
{
  "data": {
    "id": 123,
    "account_offer_id": 123,
    "game": {
      "id": 123,
      "name": "<string>",
      "slug": "<string>"
    },
    "buyer": {
      "id": 123,
      "username": "<string>"
    },
    "rating": {
      "id": 123,
      "labels": [
        "<string>"
      ],
      "rating": 123,
      "comment": "<string>",
      "created_at": 123,
      "updated_at": 123
    },
    "title": "<string>",
    "description": "<string>",
    "parameters": {},
    "status": "pending",
    "delivery_time": {
      "duration": 123,
      "unit": "minutes",
      "format": "<string>",
      "format_long": "<string>",
      "seconds": 123
    },
    "is_manual_delivery": true,
    "credentials": "<string>",
    "delivery_instructions": "<string>",
    "price": "<string>",
    "price_usd": "<string>",
    "image_urls": [
      "<string>"
    ],
    "created_at": 123,
    "updated_at": 123,
    "purchased_at": 123,
    "completed_at": 123,
    "refunded_at": 123
  },
  "message": "<string>",
  "warning": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

accountOrder
string
required

The ID of the account order. Can be retrieved from the list of account orders, or from the parent account offer, or from webhooks.

Body

application/json
credentials
string
required

Account credentials in plain text format. Supports multi-line input with line breaks. Content is automatically encrypted using AES-256 encryption for secure storage.

Maximum length: 10000
Example:

"Login: example, Password: password, Email Login: example@example.com, Email Password: password, Email Provider: proton.me/mail"

Response

Account order credentials updated successfully

data
object

Account order object

message
string

Success message

warning
string

Warning message

I