$created = $onlyform->forms()->create(
name: 'Product feedback',
workspaceId: '507f1f77bcf86cd799439012',
type: 'MULTI',
definition: [
'blocks' => [[
'id' => 'rating',
'type' => 'rating',
'label' => 'How would you rate the product?',
'description' => '',
'required' => true,
'properties' => ['max' => 5, 'icon' => 'star'],
]],
'settings' => ['progressBar' => true],
'theme' => [
'font' => 'Inter',
'colors' => ['primary' => '#3969D9'],
],
'variables' => ['score' => 0, 'price' => 0, 'segment' => 'new-customer'],
'hidden_fields' => ['campaign_id', 'account_id'],
],
);
echo $created['id'];