Criar URL de inscrição
POST/v1/user_profiles/{user_profile_id}/enrollment_url
Criar URL de inscrição
Parameters
Returns
Criar URL de inscrição
<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
$client = new Client(apiKey: 'my-anthropic-api-key');
$betaUserProfileEnrollmentURL = $client
->beta
->userProfiles
->createEnrollmentURL(
'uprof_011CZkZCu8hGbp5mYRQgUmz9',
betas: [AnthropicBeta::MESSAGE_BATCHES_2024_09_24],
workspaceID: 'wrkspc_011CZkZaBF1tNoB5wlCeusgy',
);
var_dump($betaUserProfileEnrollmentURL);Response 200
{
"expires_at": "2026-03-15T10:15:00Z",
"type": "enrollment_url",
"url": "https://platform.claude.com/user-profiles/enrollment/M3J0bGJxZ2ppMnptbnB1"
}Returns Examples
Response 200
{
"expires_at": "2026-03-15T10:15:00Z",
"type": "enrollment_url",
"url": "https://platform.claude.com/user-profiles/enrollment/M3J0bGJxZ2ppMnptbnB1"
}