Automate Stripe + YouTube
Payments, subscriptions and the events behind revenue. Long-form content worth repurposing everywhere else. Put an agent between them and the hand-off stops being manual: it reads, decides, acts, and shows its work.
Report Assembler is a ready-made agent built around Stripe; point its last step at YouTube to finish this hand-off.
Automations teams run
These are not field mappings. An agent reads the Stripe side, works out what it means, and only then decides what — if anything — should happen in YouTube.
When a payment succeeds or fails in Stripe…
…an agent can pull transcripts and stats in YouTube — after reading the context and deciding it should.
When a subscription changes in Stripe…
…an agent can draft descriptions and chapters in YouTube — after reading the context and deciding it should.
When a dispute opens in Stripe…
…an agent can summarise comments in YouTube — after reading the context and deciding it should.
When a video is published in YouTube…
…an agent can look up customers and charges in Stripe — with the reasoning recorded in the run’s receipt.
When a comment arrives in YouTube…
…an agent can summarise revenue activity in Stripe — with the reasoning recorded in the run’s receipt.
Copy this Stripe → YouTube workflow
Start with the stripe-invoice node and the youtube-api node. Configure the Stripe source payload, the agent input, and the YouTube operation. The sequential template does not implement conditional writes or approval by itself.
This is a schema-checked starting point, not an end-to-end tested automation. Replace every CONFIGURE_ value, choose the operations you intend, connect credentials and map source outputs into later inputs. An edge orders steps; it does not supply a condition, an approval gate or a field mapping. Add and test those controls explicitly before any write. Cloud APIs and model providers may receive data. Keep the workflow inactive until tested with fixtures.
{
"id": "b339dba9-ac1a-4c89-a4fe-b24807f9e586",
"name": "Stripe → YouTube",
"nodes": [
{
"id": "7eacc97e-9fa5-4de3-a193-bac5e65c82ba",
"text": "Run on a schedule",
"x": 512,
"y": 144,
"isEditing": false,
"type": "trigger-timer",
"icon": "connect",
"category": "trigger",
"isSelected": false,
"parameters": {
"fireOnStart": "No",
"scheduleType": "Interval",
"schedule": "Every 15 Minutes"
},
"description": "Setup template for Timer Trigger. This trigger node fires the workflow at specified intervals or at a specific time. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "0ec2536a-70cd-441a-a8ae-f9a698c9d698",
"text": "Read Stripe",
"x": 512,
"y": 336,
"isEditing": false,
"type": "stripe-invoice",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"customerEmail": "CONFIGURE_CUSTOMEREMAIL",
"dueDate": "CONFIGURE_DUEDATE",
"currency": "USD",
"amount": 1,
"description": "CONFIGURE_DESCRIPTION",
"lineItems": []
},
"description": "Setup template for Stripe API. Create and send a Stripe invoice with support for single or multiple line items Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "548b7320-43cc-4acd-a5fe-423f5e11b3f6",
"text": "Review source and draft",
"x": 512,
"y": 528,
"isEditing": false,
"type": "agnt-agent",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"agentId": "CONFIGURE_AGENTID",
"message": "Read the Stripe item. Decide whether it warrants action in YouTube, and explain why.\nSource input: CONFIGURE_SOURCE_INPUT. Produce a reviewable draft only; do not take external actions."
},
"description": "Setup template for Agent Chat. Chat with an AI agent from your agent library. Select an agent and send messages to interact with it within your workflow. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "eb175617-83bc-4ee8-af13-3a53a5d03c6c",
"text": "Configure destination in YouTube",
"x": 512,
"y": 720,
"isEditing": false,
"type": "youtube-api",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"action": "ADD_VIDEO_TO_PLAYLIST",
"playlistId": "CONFIGURE_PLAYLISTID"
},
"description": "Setup template for YouTube API. Interact with the YouTube API to manage videos, comments, playlists, and more. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
}
],
"edges": [
{
"id": "8c2d4499-9cf9-428e-aaa7-c8d15e93366c",
"start": {
"id": "7eacc97e-9fa5-4de3-a193-bac5e65c82ba",
"type": "output"
},
"end": {
"id": "0ec2536a-70cd-441a-a8ae-f9a698c9d698",
"type": "input"
},
"startX": 800,
"startY": 168,
"endX": 512,
"endY": 360
},
{
"id": "f1ce3068-8a80-4bff-acb5-0f339d77bace",
"start": {
"id": "0ec2536a-70cd-441a-a8ae-f9a698c9d698",
"type": "output"
},
"end": {
"id": "548b7320-43cc-4acd-a5fe-423f5e11b3f6",
"type": "input"
},
"startX": 800,
"startY": 360,
"endX": 512,
"endY": 552
},
{
"id": "6105e5cb-d19a-4096-a1c7-83a7d1720c54",
"start": {
"id": "548b7320-43cc-4acd-a5fe-423f5e11b3f6",
"type": "output"
},
"end": {
"id": "eb175617-83bc-4ee8-af13-3a53a5d03c6c",
"type": "input"
},
"startX": 800,
"startY": 552,
"endX": 512,
"endY": 744
}
],
"zoomLevel": 1,
"canvasOffsetX": 0,
"canvasOffsetY": 0,
"isTinyNodeMode": false
}
Configure Stripe API
Create and send a Stripe invoice with support for single or multiple line items
- customerEmail — Email address of the customer to bill Current example:
CONFIGURE_CUSTOMEREMAIL. - dueDate — Due date for the invoice (YYYY-MM-DD) Current example:
CONFIGURE_DUEDATE. - currency — Currency for the invoice Current example:
USD. - amount — Amount in cents for single item (e.g., 1000 for $10.00) Current example:
1. - description — Description for single item invoice Current example:
CONFIGURE_DESCRIPTION. - lineItems — Array of line items for the invoice. Each item must have 'description' and 'amount' (in cents). Example: [{"description": "Consulting", "amount": 5000, "quantity": 2}] Current example:
[].
Configure YouTube API
Interact with the YouTube API to manage videos, comments, playlists, and more.
- action — The action to perform on YouTube Current example:
ADD_VIDEO_TO_PLAYLIST. - playlistId — The ID of the playlist Current example:
CONFIGURE_PLAYLISTID.
Install Report Assembler
Report Assembler is a working agent built around Stripe. Install it, point its last step at YouTube, and you have this hand-off without building it from an empty canvas.
Runs on your own machine · See what it does
What building this looks like
- Get AGNT Community Core. Free, local, no sign-up needed to run a workflow.
- Add both connections to the vault — Stripe takes an API key pasted into the vault, YouTube takes one OAuth sign-in.
- Configure the nodes above, or start from a marketplace workflow and edit it. The agent in the middle is the part worth spending time on.
- Run it once with an approval gate in place. The receipt tells you what it read, what it concluded, and what it changed in YouTube.
Stripe and YouTube — common questions
Can I connect Stripe to YouTube without writing code?
No code is required. Add both connections in the vault (Stripe uses an API key pasted into the vault, YouTube uses one OAuth sign-in), then either install a marketplace workflow for this pair or drag the two nodes onto the canvas and put an agent between them.
How is this different from a field-mapping Stripe to YouTube automation?
Mapping tools move data; this reasons about it. Rather than copying a field into YouTube, the agent can weigh what arrived from Stripe, classify it against criteria you wrote in prose, draft something new, and act only when it is warranted.
Does my Stripe and YouTube data leave my machine?
Your credentials stay in a vault on your own disk rather than in someone else’s cloud. The only calls made are the ones the workflow needs: Stripe, YouTube, and your chosen model provider — which can be a local one.
What does a Stripe and YouTube run leave behind?
You get an auditable trail rather than a success flag. It shows the Stripe context the agent worked from, the judgment it made about videos become posts, threads and newsletters, and the exact change applied in YouTube, with approvals attached where you required them.