You can get the status of the deposit using this method.
GET https://skinify.io/api/deposit-status
Parameter | Required | Description |
---|---|---|
deposit_id or transaction_id |
Deposit ID или Transaction ID. |
The response will contain a deposit
object, which contains the following data:
Parameter | Description |
---|---|
status | Status of deposit: success, pending, failed |
transaction_id | Transaction ID in our system |
deposit_id | Deposit ID in your system |
steam_id | User Steam ID 64 |
date | Deposit created time (unix timestamp) |
amount | The amount that the user deposited. (only if status is success)) |
amount_currency | The currency that the user deposited in. (only if status is success)) |
amount_converted | Deposit amount in all available currencies. (only if status is success)) |
multiplied_amount | The amount that the user deposited multiplied by the value from the project settings (only if status is success)) |
multiplied_amount_converted | The amount that the user deposited multiplied by the value from the project settings in all available currencies. (only if status is success)) |
Error | Description |
---|---|
deposit_id_or_transaction_id_missing | deposit_id and transaction_id is missing. |
invalid_deposit_id | Invalid deposit_id |
invalid_transaction_id | Invalid transaction_id |
deposit_not_found | Deposit not found |