Skip to content
Snippets Groups Projects
Commit 8f0fc979 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

You really need a payment link, not a product.

parent 131f4e43
No related branches found
No related tags found
2 merge requests!369update production,!368Support the new Stripe payment workflow
#!/usr/bin/env bash
set -x
set -euo pipefail
KEY=$1
shift
PRODUCT_ID=$(
curl https://api.stripe.com/v1/products \
-u "${KEY}:" \
-d "name=30 GiB-months" \
-d "description=30 GiB-months of Private.Storage storage × time" \
-d "statement_descriptor=PRIVATE STORAGE" \
-d "url=https://private.storage/" |
jp --unquoted id
)
echo "Product: $PRODUCT_ID"
PRICE_ID=$(
curl https://api.stripe.com/v1/prices \
-u "${KEY}:" \
-d "currency=USD" \
-d "unit_amount=650" \
-d "tax_behavior=exclusive" \
-d "product=${PRODUCT_ID}" |
jp --unquoted id
)
echo "Price: $PRICE_ID"
LINK_URL=$(
curl https://api.stripe.com/v1/payment_links \
-u "${KEY}:" \
-d "line_items[0][price]=${PRICE_ID}" \
-d "line_items[0][quantity]=1" |
jp --unquoted url
)
echo "Payment link: $LINK_URL"
#!/usr/bin/env bash
set -euo pipefail
KEY=$1
shift
curl https://api.stripe.com/v1/products \
-u "${KEY}:" \
-d "name=30 GiB-months" \
-d "description=30 GiB-months of Private.Storage storage × time" \
-d "default_price_data[currency]=USD" \
-d "default_price_data[unit_amount]=650" \
-d "default_price_data[tax_behavior]=exclusive" \
-d "statement_descriptor=PRIVATE STORAGE" \
-d "url=https://private.storage/"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment