Deposit Offline

POST /wallet/deposit/offline
application/json

Body

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
  • 400 application/json

    Request could not be processed

    Hide response attributes Show response attributes object
    • code string

      Values are ERROR_UNKNOWN_ERROR or ERROR_BAD_REQUEST.

    • Message describing the error

    • traceId string

      Internal ID to trace the request when debugging

  • 401 application/json

    Request public key or signature is missing or invalid

    Hide response attributes Show response attributes object
    • code string

      Value is ERROR_INVALID_SIGNATURE.

    • Message describing the error

    • traceId string

      Internal ID to trace the request when debugging

  • 500 application/json

    Internal error / Unknown error

    Hide response attributes Show response attributes object
    • code string

      Values are ERROR_UNKNOWN_ERROR or ERROR_TIMEOUT.

    • Message describing the error

    • traceId string

      Internal ID to trace the request when debugging

POST /wallet/deposit/offline
curl \
 -X POST BASE_URL/wallet/deposit/offline \
 -H "Content-Type: application/json" \
 -d '{"amount":42.0,"currency":"string","metadata":"string","playerId":"string","referenceId":"string","transactionId":"string"}'
Request example
{
  "amount": 42.0,
  "currency": "string",
  "metadata": "string",
  "playerId": "string",
  "referenceId": "string",
  "transactionId": "string"
}
Response examples (200)
{
  "balance": 42.0,
  "currency": "string"
}
Response examples (400)
{
  "code": "ERROR_UNKNOWN_ERROR",
  "description": "string",
  "traceId": "string"
}
Response examples (401)
{
  "code": "ERROR_INVALID_SIGNATURE",
  "description": "string",
  "traceId": "string"
}
Response examples (500)
{
  "code": "ERROR_UNKNOWN_ERROR",
  "description": "string",
  "traceId": "string"
}