Stripe

Seamlessly integrate Stripe with your favorite APIs, databases, and programming languages, using WayScript.
Online payments service.

​➕ Add Your Stripe Account

Under "Select an API Key," select "Add an Account..."

Input your Stripe account name and API Key into the dialog.

​Click here for information on Stripe API Keys.

​⚙ Modes

​⚖ View Account Balance

Outputs available account balances.

Account_Balance = {
available : [
{
amount : Float,
currency : String
}
],
connect_reserved : [
],
livemode : Bool,
object : String,
pending : [
{
amount : Float,
currency : String
}
]
}

​🔢 View SKUs

Outputs product SKUs.

Account_SKUs = {
data : [
{
id : String,
object : String,
active : Bool,
attribute_size : String,
attribute_gender : String,
created : Int,
currency : String,
inventory_quantity : Float,
inventory_type : String,
inventory_value : String,
livemode : Bool,
package_dimensions : String,
price : Float,
product : String,
updated : String
}
]
}

​💵 View Charges

Outputs a list of charges.

Account_Charges = {
data : [
{
id : String,
object : String,
amount : Float,
amount_refunded : Float,
application : String,
application_fee : String,
application_fee_amount : Float,
balance_transaction : String,
captured : Bool,
created : Int,
currency : String,
customer : String,
description : String,
disputed : Bool,
failure_code : String,
failure_message : String,
invoice : String,
livemode : Bool,
paid : Bool,
payment_intent : String
}
]
}

​👓 View Events

Outputs a list of events.

Account_Events = {
data : [
{
id : String,
object : String,
api_version : Float,
created : String,
object_id : String,
object_object : String,
object_amount : Float,
object_client_secret : String,
object_created : String,
object_currency : String,
object_flow : String,
object_livemode : Bool
}
]
}

​💵 View Payouts

Account_Payouts = [
{
id : String,
object : String,
amount : Float,
arrival_date : Int,
automatic : Bool,
balance_transaction : String,
created : Int,
currency : String,
description : String,
destination : String,
failure_balance_transaction : String,
failure_code : String,
failure_message : String,
livemode : Bool,
method : String,
original_payout : String,
reversed_by : String,
source_type : String,
statement_descriptor : String,
status : String,
type : String
}
]
​

​🎓 Tutorial