✨ New Gift Cards API Live Now - Beta!
curl --request PATCH \
--url https://api.gameboost.com/v1/accounts/status/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"accounts": [
"{{accountId1}}",
"{{accountId2}}"
],
"status": "listed"
}
'List or unlist multiple accounts by updating their status in bulk.
curl --request PATCH \
--url https://api.gameboost.com/v1/accounts/status/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"accounts": [
"{{accountId1}}",
"{{accountId2}}"
],
"status": "listed"
}
'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.
Successfully updated the status of multiple accounts.
Was this page helpful?