package main
import(
"context"
"os"
polargo "github.com/polarsource/polar-go"
"github.com/polarsource/polar-go/models/components"
"log"
)
func main() {
ctx := context.Background()
s := polargo.New(
polargo.WithSecurity(os.Getenv("POLAR_ACCESS_TOKEN")),
)
res, err := s.Refunds.Create(ctx, components.RefundCreate{
OrderID: "<value>",
Reason: components.RefundReasonCustomerRequest,
Amount: 90,
})
if err != nil {
log.Fatal(err)
}
if res.Refund != nil {
// handle response
}
}
{
"created_at": "2023-11-07T05:31:56Z",
"modified_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"metadata": {},
"status": "pending",
"reason": "duplicate",
"amount": 123,
"tax_amount": 123,
"currency": "<string>",
"organization_id": "<string>",
"order_id": "<string>",
"subscription_id": "<string>",
"customer_id": "<string>",
"revoke_benefits": true
}
Create a refund.
Scopes: refunds:write
package main
import(
"context"
"os"
polargo "github.com/polarsource/polar-go"
"github.com/polarsource/polar-go/models/components"
"log"
)
func main() {
ctx := context.Background()
s := polargo.New(
polargo.WithSecurity(os.Getenv("POLAR_ACCESS_TOKEN")),
)
res, err := s.Refunds.Create(ctx, components.RefundCreate{
OrderID: "<value>",
Reason: components.RefundReasonCustomerRequest,
Amount: 90,
})
if err != nil {
log.Fatal(err)
}
if res.Refund != nil {
// handle response
}
}
{
"created_at": "2023-11-07T05:31:56Z",
"modified_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"metadata": {},
"status": "pending",
"reason": "duplicate",
"amount": 123,
"tax_amount": 123,
"currency": "<string>",
"organization_id": "<string>",
"order_id": "<string>",
"subscription_id": "<string>",
"customer_id": "<string>",
"revoke_benefits": true
}
You can generate an Organization Access Token from your organization's settings.
Successful Response
The response is of type object
.
Was this page helpful?