Accounts
Create Account
Accounts
Item Offers
Currency Offers
Currency Orders
Accounts
Create Account
Create a new account using the provided JSON schema. To get the schema, use the /accounts/template/{gameSlug}
endpoint.
POST
/
accounts
curl --request POST \
--url https://api.gameboost.com/v1/accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"game": "<string>",
"title": "<string>",
"slug": "<string>",
"price": 123,
"ign": "<string>",
"login": "<string>",
"password": "<string>",
"email_login": "<string>",
"email_password": "<string>",
"is_manual": true,
"delivery_time": {
"duration": 123,
"unit": "minutes"
},
"has_2fa": true,
"server": "<string>",
"level_up_method": "by_hand",
"description": "<string>",
"dump": "<string>",
"delivery_instructions": "<string>",
"image_urls": [
"<string>"
],
"account_data": {},
"game_items": {}
}'
{
"data": {
"id": "<string>",
"type": "accounts",
"attributes": {
"title": "<string>",
"slug": "<string>",
"description": "<string>",
"game_slug": "<string>",
"status": "Draft",
"server": "<string>",
"level_up_method": "Handmade",
"ign": "<string>",
"login": "<string>",
"password": "<string>",
"email_login": "<string>",
"email_password": "<string>",
"price": 123,
"data": {},
"trend_score": 123,
"is_featured": true,
"is_rare": true,
"is_discounted": true,
"images": [
"<string>"
],
"created_at": 123,
"sold_at": 123,
"updated_at": 123
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
201 - application/json
Successfully created the account.
The response is of type object
.
curl --request POST \
--url https://api.gameboost.com/v1/accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"game": "<string>",
"title": "<string>",
"slug": "<string>",
"price": 123,
"ign": "<string>",
"login": "<string>",
"password": "<string>",
"email_login": "<string>",
"email_password": "<string>",
"is_manual": true,
"delivery_time": {
"duration": 123,
"unit": "minutes"
},
"has_2fa": true,
"server": "<string>",
"level_up_method": "by_hand",
"description": "<string>",
"dump": "<string>",
"delivery_instructions": "<string>",
"image_urls": [
"<string>"
],
"account_data": {},
"game_items": {}
}'
{
"data": {
"id": "<string>",
"type": "accounts",
"attributes": {
"title": "<string>",
"slug": "<string>",
"description": "<string>",
"game_slug": "<string>",
"status": "Draft",
"server": "<string>",
"level_up_method": "Handmade",
"ign": "<string>",
"login": "<string>",
"password": "<string>",
"email_login": "<string>",
"email_password": "<string>",
"price": 123,
"data": {},
"trend_score": 123,
"is_featured": true,
"is_rare": true,
"is_discounted": true,
"images": [
"<string>"
],
"created_at": 123,
"sold_at": 123,
"updated_at": 123
}
}
}