CreatePublisherPayoutRequest
Request to create a publisher payout.
Properties
| Property | Type | Required | Description |
|---|---|---|---|
amount_atomic |
integer,null | No | Amount to withdraw in atomic units (defaults to max available) |
asset_id |
string | Yes | Asset to withdraw (must be an asset accepted by the publisher) |
destination_wallet |
any | No |
View JSON Schema
{
"type": "object",
"description": "Request to create a publisher payout.",
"required": [
"asset_id"
],
"properties": {
"amount_atomic": {
"type": [
"integer",
"null"
],
"format": "int64",
"description": "Amount to withdraw in atomic units (defaults to max available)"
},
"asset_id": {
"type": "string",
"format": "uuid",
"description": "Asset to withdraw (must be an asset accepted by the publisher)"
},
"destination_wallet": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/WalletAddress",
"description": "Destination wallet override (defaults to the publisher's configured wallet)"
}
]
}
}
}