Skip to main content
GET
/
v1
/
customer-seats
/
claim
/
{invitation_token}
Go (SDK)
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
}

Path Parameters

invitation_token
string
required

Response

Successful Response

Read-only information about a seat claim invitation. Safe for email scanners - no side effects when fetched.

product_name
string
required

Name of the product

product_id
string<uuid>
required

ID of the product

organization_name
string
required

Name of the organization

organization_slug
string
required

Slug of the organization

customer_email
string
required

Email of the customer assigned to this seat

can_claim
boolean
required

Whether the seat can be claimed