<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/atom.xsl" type="text/xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Posts tagged: stripe</title>
  <id>https://waylonwalker.com/tags/stripe/atom.xml</id>
  <updated>2023-12-10T04:28:33Z</updated>
  <subtitle>All posts with the tag &#34;stripe&#34;</subtitle>
  <link href="https://waylonwalker.com/tags/stripe/" rel="alternate" type="text/html"></link>
  <link href="https://waylonwalker.com/tags/stripe/atom.xml" rel="self" type="application/atom+xml"></link>
  <author>
    <name>Waylon Walker</name>
  </author>
  <generator uri="https://github.com/WaylonWalker/markata-go">markata-go</generator>
  <entry>
    <title>💭 Cancel subscriptions | Stripe Documentation</title>
    <id>https://waylonwalker.com/thought-175/</id>
    <updated>2023-12-10T04:28:33Z</updated>
    <published>2023-12-10T04:28:33Z</published>
    <link href="https://waylonwalker.com/thought-175/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://stripe.com/docs/billing/subscriptions/cancel#canceling</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external&#34;&gt;&#xA;  &lt;a href=&#34;https://stripe.com/docs/billing/subscriptions/cancel#canceling&#34; class=&#34;embed-card-link&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;&#xA;    &lt;div class=&#34;embed-card-image&#34;&gt;&#xA;      &lt;img class=&#34;glightbox&#34; src=&#34;https://d37ugbyn3rpeym.cloudfront.net/docs/og-image/billing.subscriptions.cancel.ogimage.png&#34; alt=&#34;Cancel subscriptions — Cancel subscriptions immediately or at the end of the subscription period with proration options, invoice handling, and automatic cancellation after failed payment attempts.&#34; loading=&#34;lazy&#34;/ data-glightbox=&#34;description: Cancel subscriptions — Cancel subscriptions immediately or at the end of the subscription period with proration options, invoice handling, and automatic cancellation after failed payment attempts.&#34;&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;embed-card-content&#34;&gt;&#xA;      &lt;div class=&#34;embed-card-title&#34;&gt;Cancel subscriptions&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-description&#34;&gt;Cancel subscriptions immediately or at the end of the subscription period with proration options, invoice handling, and automatic cancellation after failed payment attempts.&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-meta&#34;&gt;stripe.com&lt;/div&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;This is a handy guide to cancelling stripe subscriptions.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Set your secret key. Remember to switch to your live secret key in production.&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# See your keys here: https://dashboard.stripe.com/apikeys&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;stripe&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;stripe&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;api_key&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;sk_test_51ODvHtB26msLKqCAPBAo1qkBBuIfT5tQBX6YFWCLMsPixIExxITCRVa9tNCIqkdQS8olhR79NYXsFWBPKsM3LbGO00zEcNQfNI&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;stripe&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Subscription&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;modify&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;s2&#34;&gt;&amp;#34;sub_49ty4767H20z6a&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;n&#34;&gt;cancel_at_period_end&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;True&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;You can even inverse it by flipping &lt;code&gt;True&lt;/code&gt; to &lt;code&gt;False&lt;/code&gt; and re activate the subscription.&lt;/p&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 Retrieve an upcoming invoice | Stripe API Reference</title>
    <id>https://waylonwalker.com/thought-174/</id>
    <updated>2023-12-07T14:49:51Z</updated>
    <published>2023-12-07T14:49:51Z</published>
    <link href="https://waylonwalker.com/thought-174/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://stripe.com/docs/api/invoices/upcoming</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external&#34;&gt;&#xA;  &lt;a href=&#34;https://stripe.com/docs/api/invoices/upcoming&#34; class=&#34;embed-card-link  has-avatar has-avatar-before&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34; style=&#34;--favicon-url: url(&amp;#39;/assets/markata/link-avatars/stripe.com.ico&amp;#39;);&#34; data-favicon=&#34;/assets/markata/link-avatars/stripe.com.ico&#34;&gt;&#xA;    &lt;div class=&#34;embed-card-content&#34;&gt;&#xA;      &lt;div class=&#34;embed-card-title&#34;&gt;External Link&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-meta&#34;&gt;stripe.com&lt;/div&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;You can find your customers next billing date through the stripe api by using &lt;code&gt;Invoice&lt;/code&gt;. and passing in customer, customer_details, subscription, or schedule.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;stripe&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;stripe&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;api_key&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;sk_test_51ODvHtB26msLKqCAPBAo1qkBBuIfT5tQBX6YFWCLMsPixIExxITCRVa9tNCIqkdQS8olhR79NYXsFWBPKsM3LbGO00zEcNQfNI&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;invoice&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;stripe&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Invoice&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;upcoming&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;customer&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;cus_NeZwdNtLEOXuvB&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Within the invoice, you can find the next_payment_attempt as a epoch.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;date&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;datetime&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;fromtimestamp&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;invoice&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;next_payment_attempt&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;amount&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;invoice&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;amount_due&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;currency&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;invoice&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;currency&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 Search | Stripe Documentation</title>
    <id>https://waylonwalker.com/thought-173/</id>
    <updated>2023-12-06T21:54:17Z</updated>
    <published>2023-12-06T21:54:17Z</published>
    <link href="https://waylonwalker.com/thought-173/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://stripe.com/docs/search#search-query-language</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external&#34;&gt;&#xA;  &lt;a href=&#34;https://stripe.com/docs/search#search-query-language&#34; class=&#34;embed-card-link&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;&#xA;    &lt;div class=&#34;embed-card-image&#34;&gt;&#xA;      &lt;img class=&#34;glightbox&#34; src=&#34;https://d37ugbyn3rpeym.cloudfront.net/docs/og-image/search.ogimage.png&#34; alt=&#34;Search — Use the search APIs to look up and retrieve objects in your Stripe data. Using search is a faster alternative to paginating through all resources.&#34; loading=&#34;lazy&#34;/ data-glightbox=&#34;description: Search — Use the search APIs to look up and retrieve objects in your Stripe data. Using search is a faster alternative to paginating through all resources.&#34;&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;embed-card-content&#34;&gt;&#xA;      &lt;div class=&#34;embed-card-title&#34;&gt;Search&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-description&#34;&gt;Use the search APIs to look up and retrieve objects in your Stripe data. Using search is a faster alternative to paginating through all resources.&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-meta&#34;&gt;stripe.com&lt;/div&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Stripe has it’s own query language for querying data.  I’m just getting into using it and it seems pretty good so far.  I needed to lookup the price for products.  I was able to find prices for my product using the python api as shown below.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;stripe&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Price&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;search&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;query&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;active: &amp;#39;true&amp;#39; and product: &amp;#39;prod_P8SfwtxJ45cWE2&amp;#39;&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 Stripe keys and IDs</title>
    <id>https://waylonwalker.com/thought-172/</id>
    <updated>2023-12-06T13:46:44Z</updated>
    <published>2023-12-06T13:46:44Z</published>
    <link href="https://waylonwalker.com/thought-172/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://gist.github.com/fnky/76f533366f75cf75802c8052b577e2a5</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external embed-card-provider-github&#34; data-needs-code-css=&#34;true&#34;&gt;&#xA;  &lt;div class=&#34;embed-card-rich&#34;&gt;&#xA;&lt;div data-needs-code-css=&#34;true&#34;&gt;&lt;div class=&#34;embed-gist&#34;&gt;&#xA;  &lt;div class=&#34;embed-gist-header&#34;&gt;&#xA;    &lt;a href=&#34;https://gist.github.com/fnky/76f533366f75cf75802c8052b577e2a5&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34; style=&#34;--favicon-url: url(&amp;#39;/assets/markata/link-avatars/gist.github.com.ico&amp;#39;);&#34; data-favicon=&#34;/assets/markata/link-avatars/gist.github.com.ico&#34; class=&#34;has-avatar  has-avatar-before&#34;&gt;stripe-keys-and-ids.tsv&lt;/a&gt;&#xA;    &lt;span class=&#34;embed-gist-language&#34;&gt;tsv&lt;/span&gt;&#xA;  &lt;/div&gt;&#xA;&lt;pre&gt;&lt;code class=&#34;language-TSV&#34;&gt;Prefix&#x9;Description&#x9;Notes&#xA;ac_&#x9;Platform Client ID&#x9;Identifier for an auth code/client id.&#xA;acct_&#x9;Account ID&#x9;Identifier for an Account object.&#xA;aliacc_&#x9;Alipay Account ID&#x9;Identifier for an Alipay account.&#xA;ba_&#x9;Bank Account ID&#x9;Identifier for a Bank Account object.&#xA;btok_&#x9;Bank Token ID&#x9;Identifier for a Bank Token object.&#xA;card_&#x9;Card ID&#x9;Identifier for a Card object.&#xA;cbtxn_&#x9;Customer Balance Transaction ID&#x9;Identifier for a Customer Balance Transaction object.&#xA;ch_&#x9;Charge ID&#x9;Identifier for a Charge object.&#xA;cn_&#x9;Credit Note ID&#x9;Identifier for a Credit Note object.&#xA;cs_live_&#x9;Live Checkout Session ID&#x9;Identifier for a checkout Session object in live mode.&#xA;cs_test_&#x9;Test Checkout Session ID&#x9;Identifier for a checkout Session object in test mode.&#xA;cus_&#x9;Customer ID&#x9;Identifier for a Customer object.&#xA;dp_&#x9;Dispute ID&#x9;Identifier for a Dispute object.&#xA;evt_&#x9;Event ID&#x9;Identifier for an Event object.&#xA;fee_&#x9;Application Fee ID&#x9;Identifier for an Application Fee object.&#xA;file_&#x9;File ID&#x9;Identifier for a File object.&#xA;fr_&#x9;Application Fee Refund ID&#x9;Identifier for an Application Fee Refund object.&#xA;iauth_&#x9;Issuing Authorization ID&#x9;Identifier for an Issuing Authorization object.&#xA;ic_&#x9;Issuing Card ID&#x9;Identifier for an Issuing Card object.&#xA;ich_&#x9;Issuing Card Holder ID&#x9;Identifier for an Issuing Card Holder object.&#xA;idp_&#x9;Issuing Dispute ID&#x9;Identifier for an Issuing Dispute object.&#xA;ii_&#x9;Invoice Item ID&#x9;Identifier for an Invoice Item object.&#xA;il_&#x9;Invoice Line Item ID&#x9;Identifier for a Invoice Line Item object.&#xA;in_&#x9;Invoice ID&#x9;Identifier for an Invoice object.&#xA;ipi_&#x9;Issuing Transaction ID&#x9;Identifier for an Issuing Transaction object.&#xA;link_&#x9;File Link ID&#x9;Identifier for a File Link object.&#xA;or_&#x9;Order ID&#x9;Identifier for an Order object.&#xA;orret_&#x9;Order Return ID&#x9;Identifier for an Order Return object.&#xA;person_&#x9;Person ID&#x9;Identifier for a Person object.&#xA;pi_&#x9;Payment Intent ID&#x9;Identifier for a Payment Intent object.&#xA;pk_live_&#x9;Live public key&#x9;Public key in a live environment.&#xA;pk_test_&#x9;Test public key&#x9;Public key in a test environment.&#xA;pm_&#x9;Payment Method ID&#x9;Identifier for a Payment Method object.&#xA;po_&#x9;Payout ID&#x9;Identifier for a Payout object.&#xA;price_&#x9;Price ID&#x9;Identifier for a Price object.&#xA;prod_&#x9;Product ID&#x9;Identifier for a Product object.&#xA;prv_&#x9;Review ID&#x9;Identifier for a Review object.&#xA;pst_live_&#x9;Live Connection token&#x9;Connection token in a live environment.&#xA;pst_test_&#x9;Test Connection token&#x9;Connection token in a test environment.&#xA;py_&#x9;Payment ID&#x9;Identifier for a Payment object.&#xA;pyr_&#x9;Payment Refund ID&#x9;Identifier for a psuedo Refund object of a payment.&#xA;qt_&#x9;Quote ID&#x9;Identifier for a Quote object.&#xA;rcpt_&#x9;Receipt ID&#x9;Identifier for a receipt.&#xA;re_&#x9;Refund ID&#x9;Identifier for a Refund object.&#xA;req_&#x9;Request ID&#x9;Identifier for a HTTP Request&#xA;rk_live_&#x9;Live restricted key&#x9;Restricted key for live environment eg. stripe-cli&#xA;rk_test_&#x9;Test restricted key&#x9;Restricted key for test environment eg. stripe-cli&#xA;seti_&#x9;Setup Intent ID&#x9;Identifier for a Setup Intent object.&#xA;si_&#x9;Subscription Item ID&#x9;Identifier for a Subscription Item object.&#xA;sk_live_&#x9;Live secret key&#x9;Secret key in a live environment.&#xA;sk_test_&#x9;Test secret key&#x9;Pecret key in a test environment.&#xA;sku_&#x9;SKU ID&#x9;Identifier for a SKU object.&#xA;sli_&#x9;Subscription Line Item ID&#x9;Identifier for a Subscription Line Item object.&#xA;sqr_&#x9;Scheduled Query Run ID&#x9;Identifier for a Scheduled Query Run object.&#xA;src_&#x9;Source ID&#x9;Identifier for a Source object.&#xA;src_&#x9;Source ID&#x9;Identifier for a Source object.&#xA;sub_&#x9;Subscription ID&#x9;Identifier for a Subscription object.&#xA;tml_&#x9;Terminal Location ID&#x9;Identifier for a Terminal Location object.&#xA;tmr_&#x9;Terminal Reader ID&#x9;Identifier for a Terminal Reader object.&#xA;tok_&#x9;Token ID&#x9;Identifier for a Token object.&#xA;trr_&#x9;Transfer ID&#x9;Identifier a Transfer object.&#xA;tu_&#x9;Topup ID&#x9;Identifier for a Topup object.&#xA;txi_&#x9;Tax ID&#x9;Identifier for a customer Tax object.&#xA;txn_&#x9;Transaction ID&#x9;Identifier for a Transaction object.&#xA;txr_&#x9;Tax Rate ID&#x9;Identifier for a Tax Rate object.&#xA;we_&#x9;Webhook Endpoint ID&#x9;Identifier for a webhook endpoint.&#xA;whsec_&#x9;Webhook Secret&#x9;Secret key for signing a web hook.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Stripe has so many keys and ids this is a very helpful list to decode what exactly an id is for.&lt;/p&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
</feed>