We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am running into an error trying to resume a subscription via the api.
resume
subscription
The error that I'm receiving from Lemon Squeezy is this:
{ "jsonapi" : { "version" : "1.0" }, "errors" : [ { "status" : "400", "detail" : "The member data is required.", "source" : { "pointer" : "\/" }, "title" : "Non-Compliant JSON:API Document" } ] }
I don't see any Data parameter that can be set.
Data
This is how I am attempting to cancel the subscription.
ctx := context.Background() params := &lemonsqueezy.SubscriptionUpdateParams{ Type: "subscriptions", ID: "<MY ID HERE>", Cancelled: false, } apiResponseSubscription, response, err = l.Client.Subscriptions.Update(ctx, params)
It's very likely that I'm just doing something stupid. Is this an actual bug, or an ID10T user error?
The text was updated successfully, but these errors were encountered:
Fixed by #10
Sorry, something went wrong.
No branches or pull requests
I am running into an error trying to
resume
asubscription
via the api.The error that I'm receiving from Lemon Squeezy is this:
I don't see any
Data
parameter that can be set.This is how I am attempting to cancel the subscription.
It's very likely that I'm just doing something stupid. Is this an actual bug, or an ID10T user error?
The text was updated successfully, but these errors were encountered: