CreatePayoutRequest
Properties
| Property | Type | Required | Description |
amount_atomic |
integer |
Yes |
|
description |
string |
Yes |
|
destination_wallet |
string |
Yes |
|
idempotency_key |
string,null |
No |
|
View JSON Schema
{
"type": "object",
"required": [
"destination_wallet",
"amount_atomic",
"description"
],
"properties": {
"amount_atomic": {
"type": "integer",
"format": "int64"
},
"description": {
"type": "string"
},
"destination_wallet": {
"type": "string"
},
"idempotency_key": {
"type": [
"string",
"null"
],
"format": "uuid"
}
}
}