✨ New Gift Cards API Live Now - Beta!
curl --request POST \
--url https://api.gameboost.com/v2/account-offers/{account}/credentials/bulk-delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"credentials_ids": [
1,
2,
3
]
}
'{
"message": "3 credentials deleted successfully.",
"deleted_count": 3
}Delete multiple credentials from an account offer at once. Sold credentials (already assigned to an order) are skipped. Only available for non-legacy accounts.
curl --request POST \
--url https://api.gameboost.com/v2/account-offers/{account}/credentials/bulk-delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"credentials_ids": [
1,
2,
3
]
}
'{
"message": "3 credentials deleted successfully.",
"deleted_count": 3
}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
Array of credential IDs to delete
[1, 2, 3]Was this page helpful?