Skip to main content
GET
/
v1
/
customer-seats
/
claim
/
{invitation_token}
PHP (SDK)
declare(strict_types=1);

require 'vendor/autoload.php';

use Polar;

$sdk = Polar\Polar::builder()->build();



$response = $sdk->customerSeats->getClaimInfo(
    invitationToken: '<value>'
);

if ($response->seatClaimInfo !== null) {
    // 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