Go
package main import( "context" "os" polargo "github.com/polarsource/polar-go" "log" ) func main() { ctx := context.Background() s := polargo.New( polargo.WithSecurity(os.Getenv("POLAR_ACCESS_TOKEN")), ) res, err := s.CustomFields.Delete(ctx, "<value>") if err != nil { log.Fatal(err) } if res != nil { // handle response } }
This response does not have an example.
Delete a custom field.
Scopes: custom_fields:write
custom_fields:write
You can generate an Organization Access Token from your organization's settings.
The custom field ID.
Custom field deleted.
Was this page helpful?