-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74fa97c
commit 490bed5
Showing
1 changed file
with
177 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
--- | ||
title: "Stripe" | ||
description: "Stripe is a payment processing platform that allows businesses to accept online payments and manage transactions securely." | ||
--- | ||
## Reference | ||
<hr /> | ||
|
||
Stripe is a payment processing platform that allows businesses to accept online payments and manage transactions securely. | ||
|
||
|
||
Categories: [payment-processing] | ||
|
||
|
||
Version: 1 | ||
|
||
<hr /> | ||
|
||
|
||
|
||
## Connections | ||
|
||
Version: 1 | ||
|
||
|
||
### Bearer Token | ||
|
||
#### Properties | ||
|
||
| Name | Type | Control Type | Description | | ||
|:--------------:|:------------:|:--------------------:|:-------------------:| | ||
| Token | STRING | TEXT | | | ||
|
||
|
||
|
||
|
||
|
||
<hr /> | ||
|
||
|
||
|
||
## Triggers | ||
|
||
|
||
### New Customer | ||
Triggers when a new customer is created. | ||
|
||
#### Type: DYNAMIC_WEBHOOK | ||
#### Properties | ||
|
||
| Name | Type | Control Type | Description | | ||
|:--------------:|:------------:|:--------------------:|:-------------------:| | ||
null | ||
|
||
|
||
### Output | ||
|
||
|
||
|
||
Type: OBJECT | ||
|
||
|
||
#### Properties | ||
|
||
| Type | Control Type | | ||
|:------------:|:--------------------:| | ||
| STRING | TEXT | | ||
| STRING | TEXT | | ||
| STRING | TEXT | | ||
| STRING | TEXT | | ||
| STRING | TEXT | | ||
| STRING | TEXT | | ||
| {STRING\(city), STRING\(country), STRING\(line1), STRING\(line2), STRING\(postal_code), STRING\(state)} | OBJECT_BUILDER | | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
### New Invoice | ||
Triggers on a new invoice. | ||
|
||
#### Type: DYNAMIC_WEBHOOK | ||
#### Properties | ||
|
||
| Name | Type | Control Type | Description | | ||
|:--------------:|:------------:|:--------------------:|:-------------------:| | ||
null | ||
|
||
|
||
### Output | ||
|
||
|
||
|
||
Type: OBJECT | ||
|
||
|
||
#### Properties | ||
|
||
| Type | Control Type | | ||
|:------------:|:--------------------:| | ||
| STRING | TEXT | | ||
| STRING | TEXT | | ||
| STRING | TEXT | | ||
| STRING | TEXT | | ||
| STRING | TEXT | | ||
| STRING | TEXT | | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<hr /> | ||
|
||
|
||
|
||
## Actions | ||
|
||
|
||
### Create Customer | ||
Creates a new customer. | ||
|
||
#### Properties | ||
|
||
| Name | Type | Control Type | Description | | ||
|:--------------:|:------------:|:--------------------:|:-------------------:| | ||
| Customer | {STRING\(email), STRING\(name), STRING\(description), STRING\(phone), {STRING\(city), STRING\(country), STRING\(line1), STRING\(line2), STRING\(postal_code), STRING\(state)}\(address)} | OBJECT_BUILDER | | | ||
|
||
|
||
### Output | ||
|
||
|
||
|
||
Type: OBJECT | ||
|
||
|
||
#### Properties | ||
|
||
| Type | Control Type | | ||
|:------------:|:--------------------:| | ||
| {STRING\(id), STRING\(description), STRING\(email), STRING\(name), STRING\(phone), {STRING\(city), STRING\(country), STRING\(line1), STRING\(line2), STRING\(postal_code), STRING\(state)}\(address)} | OBJECT_BUILDER | | ||
|
||
|
||
|
||
|
||
|
||
|
||
### Create Invoice | ||
Creates a new invoice. | ||
|
||
#### Properties | ||
|
||
| Name | Type | Control Type | Description | | ||
|:--------------:|:------------:|:--------------------:|:-------------------:| | ||
| Invoice | {STRING\(customer), STRING\(currency), STRING\(description)} | OBJECT_BUILDER | | | ||
|
||
|
||
### Output | ||
|
||
|
||
|
||
Type: OBJECT | ||
|
||
|
||
#### Properties | ||
|
||
| Type | Control Type | | ||
|:------------:|:--------------------:| | ||
| {STRING\(id), STRING\(customer), STRING\(currency), STRING\(description)} | OBJECT_BUILDER | | ||
|
||
|
||
|
||
|
||
|
||
|