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