DepositResponse
Response for wallet deposit initiation
Properties
| Property | Type | Required | Description |
|---|---|---|---|
amount_atomic |
integer | Yes | Base deposit amount in atomic units |
amount_usd |
string | Yes | |
bonus_atomic |
integer | Yes | Tier bonus in atomic units (if applicable) |
bonus_usd |
string | Yes | |
checkout_url |
string | Yes | URL to the Stripe hosted checkout page - open this in a browser to complete payment |
deposit_id |
string | Yes | |
total_atomic |
integer | Yes | Total to be credited in atomic units |
total_usd |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "Response for wallet deposit initiation",
"required": [
"deposit_id",
"checkout_url",
"amount_atomic",
"bonus_atomic",
"total_atomic",
"amount_usd",
"bonus_usd",
"total_usd"
],
"properties": {
"amount_atomic": {
"type": "integer",
"format": "int64",
"description": "Base deposit amount in atomic units"
},
"amount_usd": {
"type": "string"
},
"bonus_atomic": {
"type": "integer",
"format": "int64",
"description": "Tier bonus in atomic units (if applicable)"
},
"bonus_usd": {
"type": "string"
},
"checkout_url": {
"type": "string",
"description": "URL to the Stripe hosted checkout page - open this in a browser to complete payment"
},
"deposit_id": {
"type": "string",
"format": "uuid"
},
"total_atomic": {
"type": "integer",
"format": "int64",
"description": "Total to be credited in atomic units"
},
"total_usd": {
"type": "string"
}
}
}