Skip to main content

 

I am trying to update an existing Stripe Subscription with a new value for “description” using the Stripe API in Zapier.

 

Here is the request I am making:

 

I get a 404 response from Stripe with this error detail.

 

Trying to figure out what is missing from my request to update the description value for a Stripe Subscription.  If there are any examples of using this Stripe API option with PUT or PATCH requests would also be helpful.

​Hi ​@western592 

Try this JSON:

{
"description": "test"
}

 


I tried that JSON you suggested.  I am still getting the same error message.

FYI - If I change my request to a GET request.  I can pull all of the subscription details, so I know the basic API request is working.  I just can’t figure out what it needs for a PUT request to change the description value.


I was able to figure it out.  I used a POST request wth the “API Request (Beta) in Stripe” action and put the key pair I wanted to change in the query string parameters.  I also removed all of the request headers as well. 

 

 


@western592 

Stripe API Endpoint documentation to update Subscription:
https://docs.stripe.com/api/subscriptions/update