POST
/
currency-offers
curl --request POST \
  --url https://api.gameboost.com/v1/currency-offers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "<string>",
  "price": 123,
  "game": "<string>",
  "stock": 500000000,
  "min_quantity": 500000000,
  "currency_data": [
    "<any>"
  ],
  "delivery_instructions": "<string>",
  "delivery_time": {
    "duration": 123,
    "unit": "minutes"
  }
}'
{
  "data": {
    "id": "<string>",
    "type": "currencyOffers",
    "attributes": {
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "<string>",
      "game_slug": "<string>",
      "currency_unit": {
        "currency_name": "<string>",
        "name": "<string>",
        "symbol": "<string>",
        "multiplier": 123
      },
      "description": "<string>",
      "price": 123,
      "stock": 123,
      "min_quantity": 123,
      "data": {},
      "delivery_time": {
        "duration": 123,
        "unit": "minutes",
        "format": "<string>",
        "formatLong": "<string>",
        "seconds": 123
      },
      "status": "listed",
      "created_at": "2023-11-07T05:31:56Z",
      "listed_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

201 - application/json
Successfully created the currency offer.

The response is of type object.