✨ New Gift Cards API Live Now - Beta!
curl --request PATCH \
--url https://api.gameboost.com/v2/account-offers/{account}/credentials/{credential} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"credentials": "Login: updateduser\nPassword: newpass123"
}
'{
"data": {
"id": 123,
"credentials": "<string>",
"account_offer_id": 123,
"account_order_id": 123,
"is_sold": true,
"created_at": 123,
"updated_at": 123
}
}Update the content of a single credential on an account offer. Sold credentials cannot be updated. Only available for non-legacy accounts.
curl --request PATCH \
--url https://api.gameboost.com/v2/account-offers/{account}/credentials/{credential} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"credentials": "Login: updateduser\nPassword: newpass123"
}
'{
"data": {
"id": 123,
"credentials": "<string>",
"account_offer_id": 123,
"account_order_id": 123,
"is_sold": true,
"created_at": 123,
"updated_at": 123
}
}Documentation Index
Fetch the complete documentation index at: https://docs.gameboost.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the account offer
The ID of the credential
The updated credential string
10000"Login: updateduser\nPassword: newpass123"
Credential updated successfully
A single credential entry for an account offer (new format)
Show child attributes
Was this page helpful?