I can fill out the Business::Stripe description field for one fare using the code below:
use Business::Stripe;
But when I create a client by the client and assign him to the subscription plan, I donβt see how to fill in the description of the charge made for each billing period.
# Create Customer and subscribe to a plan my $customer = $stripe->api('post', 'customers', card => $stripeToken, description => 'description here is for the customer not the monthly charge', plan => $plan );
I want to be able to add a description to the board that occurs in each billing period.
The API does not seem to show the way, but the field is editable through the strie toolbar.
source share