Go
package main import( "context" polargo "github.com/polarsource/polar-go" "log" ) func main() { ctx := context.Background() s := polargo.New() res, err := s.CustomerSeats.GetClaimInfo(ctx, "<value>") if err != nil { log.Fatal(err) } if res.SeatClaimInfo != nil { // handle response } }
{ "product_name": "<string>", "product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "organization_name": "<string>", "organization_slug": "<string>", "customer_email": "<string>", "can_claim": true }
Was this page helpful?