#Aleksandr | KAN | Backend-payout-description
1 messages · Page 1 of 1 (latest)
it is a test env
create it with
stripe.Payout.ceate(..., description='my custom description')
rc_1LVxb1BLmgC51pn4rgBgV5Gh
Sorry, but I'm a little confused as that event doesn't seem to be related to a Payout.
Looking at recent requests to create a Payout for that account though, I'm seeing that the description included in the response does match the value that you're providing in the request.
stripe.Payout.create(amount='100', currency='usd', stripe_account='acct_1LH...', description='my custom description')
{
"amount": 100,
"arrival_date": 1660262400,
"automatic": false,
"balance_transaction": "txn_1LVxmgBLmgC51pn4Jjx5kjRt",
"created": 1660310417,
"currency": "usd",
"description": "my custom description",
"destination": "ba_1LHYEfBLmgC51pn4jy2g3mf3",
"failure_balance_transaction": null,
"failure_code": null,
"failure_message": null,
"id": "po_1LVxmgBLmgC51pn4yYVeo7UU",
"livemode": false,
"metadata": {},
"method": "standard",
"object": "payout",
"original_payout": null,
"reversed_by": null,
"source_type": "card",
"statement_descriptor": null,
"status": "pending",
"type": "bank_account"
}
Where is my description?)
in dashboard description equal TRANSFER
where can I see my description that I send in the request?
We don't know the dashboard side of these flows as well, we primarily focus on the API side, so I'm going to need help in understanding what you're looking at. Is there an object ID in the url of the page that you're currently on?
Also this Payout seems to have been created by your Platform for a Custom Connected Account. Are you logged into the dashboard as your Platform account, or did you access the dashboard as the Custom Connected Account? If the latter, then it's worth noting that Custom accounts won't have access to the Stripe dashboard.
thanks, you helped, I see the description if I log in as a platform account, and not a connected account
Awesome, glad to be able to assist!