Add a Company with Details via Web Form
Scope:
crmWho can execute the method: users with permission to create companies in CRM
If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect the MCP server so that the assistant can utilize the official REST documentation.
You can place a form on the website to collect client data and details. When a client fills out the form, their information will be sent to the CRM, allowing you to process the request.
Setting up the form consists of two steps.
-
We will place the form on a PHP page. In the page code, we will retrieve the list of detail templates and address fields for the form. The form data will be sent to the handler.
-
We will create a file to process the data. The handler will accept and prepare the data, and then create a company with the details.
1. Creating the Web Form
To generate the form fields, we will use data from Bitrix24. To obtain information about the detail settings, we will sequentially execute two methods:
-
crm.address.fields — retrieves the list of address fields. We will save the result in
arAddressFields.$arAddressFields = CRest::call('crm.address.fields', []); -
crm.requisite.preset.list — requests the list of detail templates. Using the
selectparameter, we will choose theIDandNAMEfields for each template. We will save the result inarRequisiteType.$arRequisiteType = CRest::call( 'crm.requisite.preset.list', [ 'select' => ["ID", "NAME"] ] );
We will add a web form to the website with the following fields:
-
REQ_TYPE— a dropdown list with the type of details from thearRequisiteTypearray, -
TITLE— the name of the company, required, -
INN— Tax Identification Number, -
PHONE— phone number, -
${addressFieldsInputs}— address fields, which are dynamically created from thearAddressFieldsarray.
The form sends data using the POST method to the form.php file.
Complete Example of the Page with the Form
How to Use Examples in Documentation
<?php
// Retrieve the list of address fields and detail templates
$arAddressFields = CRest::call('crm.address.fields', []);
$arRequisiteType = CRest::call('crm.requisite.preset.list', [
'select' => ["ID", "NAME"]
]);
if(!empty($arRequisiteType['result'])):
$arRequisiteType = array_column($arRequisiteType['result'], 'NAME', 'ID');
// Remove system and unused address fields
$excludeFields = ['TYPE_ID', 'ENTITY_TYPE_ID', 'ENTITY_ID', 'COUNTRY_CODE', 'ANCHOR_TYPE_ID', 'ANCHOR_ID'];
foreach($excludeFields as $field) {
unset($arAddressFields['result'][$field]);
}
?>
<form id="form_to_crm">
<select name="REQ_TYPE" required>
<option value="" disabled selected>Select a detail type</option>
<?php foreach($arRequisiteType as $id => $name): ?>
<option value="<?=$id?>"><?=$name?></option>
<?php endforeach; ?>
</select>
<input type="text" name="TITLE" placeholder="Organization Name" required>
<input type="text" name="INN" placeholder="Tax Identification Number">
<input type="text" name="PHONE" placeholder="Phone Number">
<?php foreach($arAddressFields['result'] as $key => $arField): ?>
<input type="text" name="ADDRESS[<?=$key?>]"
placeholder="<?=$arField['title']?>"
<?=$arField['isRequired'] ? 'required' : ''?>>
<?php endforeach; ?>
<input type="submit" value="Submit">
</form>
<?php else: ?>
<p>No available detail types.</p>
<?php endif; ?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('#form_to_crm').on('submit', function(el) {
el.preventDefault();
$.ajax({
method: 'POST',
dataType: 'json',
url: 'form.php',
data: $(this).serialize(),
success: function(data) {
alert(data.message);
}
});
});
});
</script>
2. Creating the Form Handler
To process the values from the form fields and add the company to the CRM, we will create the handler form.php.
Preparing the Data
We will retrieve and sanitize the data from the form:
-
REQ_TYPEwill be converted to an integer, -
TITLE,INN,PHONEwill be stripped of HTML tags.
$iRequisitePresetID = intVal($_POST["REQ_TYPE"]);
$sTitle = htmlspecialchars($_POST["TITLE"]);
$sINN = htmlspecialchars($_POST["INN"]);
$sPhone = htmlspecialchars($_POST["PHONE"]);
We will prepare the address fields and collect them into the $arAddress array.
-
The values of the fields from the form will be stripped of HTML tags.
-
We will add the address type
TYPE_ID. The address types can be obtained using the method crm.enum.addresstype. We will specify the value as1, which means the actual address. -
We will add the identifier of the object type
ENTITY_TYPE_ID. The identifiers can be obtained using the method crm.enum.ownertype. We will specify the value as8, which means detail.
$arAddress = [];
foreach($_POST["ADDRESS"] as $key => $val) {
$arAddress[$key] = htmlspecialchars($val);
}
$arAddress['TYPE_ID'] = 1;
$arAddress['ENTITY_TYPE_ID'] = 8;
The system stores the phone as an array of objects crm_multifield, so it needs to be formatted as an array.
-
We will add the phone as the first element
VALUEin the array, and the second value will specify the typeVALUE_TYPE, for example,WORK. -
For an empty value, we will pass an empty array.
$arPhone = !empty($sPhone) ? [['VALUE' => $sPhone, 'VALUE_TYPE' => 'WORK']] : [];
Adding the Company
To create the company, we will execute the method crm.company.add. In the fields object, we will pass the fields:
-
TITLE— the name of the company. -
COMPANY_TYPE— the type of company. The types of companies can be found using the method crm.status.list by applying a filter on theENTITY_IDfield with the valueCOMPANY_TYPE. In this example, we will specify the valueCUSTOMER, as only clients of the company fill out the form. -
PHONE— the phone number.
Check which required fields are configured for companies in your Bitrix24. All required fields must be passed to the method crm.company.add.
CRest::call(
'crm.company.add', [
'fields' => [
'TITLE' => $sTitle,
'COMPANY_TYPE' => 'CUSTOMER', // Company type — client
'PHONE' => $arPhone
]
]
);
As a result, we will receive the identifier of the new company 5.
{
"result": 5
}
Adding Details to the Company
To add details to the company, we will execute the method crm.requisite.add. In the fields object, we will pass the fields:
-
ENTITY_TYPE_ID— the identifier of the object type. The identifiers can be obtained using the method crm.enum.ownertype. In this example, we will specify the value4, which means company, -
ENTITY_ID— the identifier of the company obtained from the previous request, -
PRESET_ID— the identifier of the detail template obtained from the form, -
ACTIVE— the activity of the detailY, -
NAME— the name of the detail, -
RQ_INN— the company's Tax Identification Number.
CRest::call(
'crm.requisite.add',
[
'fields' => [
'ENTITY_TYPE_ID' => 4,
'ENTITY_ID' => $companyId,
'PRESET_ID' => $iRequisitePresetID,
'ACTIVE' => 'Y',
'NAME' => $sTitle,
'RQ_INN' => $sINN
]
]
);
As a result, we will receive the identifier of the details.
{
"result": 27
}
Adding an Address for the Detail
We will add an address for the detail using the method crm.address.add if the detail was created successfully. In $arAddress, we will add ENTITY_ID with the ID of the detail from the response of the previous request. In the fields object, we will pass the $arAddress array with the address fields.
if(!empty($resultRequisite['result'])) {
$arAddress['ENTITY_ID'] = $resultRequisite['result'];
CRest::call(
'crm.address.add',
[
'fields' => $arAddress
]
);
}
Complete Example of the Handler Code
<?php
require_once('crest.php');
// Retrieve and sanitize form data
$iRequisitePresetID = intVal($_POST["REQ_TYPE"]);
$sTitle = htmlspecialchars($_POST["TITLE"]);
$sINN = htmlspecialchars($_POST["INN"]);
$sPhone = htmlspecialchars($_POST["PHONE"]);
// Prepare the address
$arAddress = [];
foreach($_POST["ADDRESS"] as $key => $val) {
$arAddress[$key] = htmlspecialchars($val);
}
$arAddress['TYPE_ID'] = 1; // Value 1 — actual address
$arAddress['ENTITY_TYPE_ID'] = 8; // Object type identifier — 8, which means detail
// Format the phone for Bitrix24 in crm_multifield format
$arPhone = !empty($sPhone) ? [['VALUE' => $sPhone, 'VALUE_TYPE' => 'WORK']] : [];
// Create the company
$result = CRest::call('crm.company.add', [
'fields' => [
'TITLE' => $sTitle,
'COMPANY_TYPE' => 'CUSTOMER', // Type — client
'PHONE' => $arPhone
]
]);
// Get the identifier of the new company from the response of crm.company.add
if(!empty($result['result'])) {
$companyId = $result['result'];
// Add details for the new company
$resultRequisite = CRest::call('crm.requisite.add', [
'fields' => [
'ENTITY_TYPE_ID' => 4, // Object type identifier — 4, which means company
'ENTITY_ID' => $companyId,
'PRESET_ID' => $iRequisitePresetID,
'ACTIVE' => 'Y',
'NAME' => $sTitle,
'RQ_INN' => $sINN
]
]);
// Add the address if the details were created successfully
if(!empty($resultRequisite['result'])) {
$arAddress['ENTITY_ID'] = $resultRequisite['result'];
CRest::call('crm.address.add', ['fields' => $arAddress]);
}
echo json_encode(['message' => 'Company successfully added']);
} else {
$error = !empty($result['error_description']) ? $result['error_description'] : 'Unknown error';
echo json_encode(['message' => 'Error: ' . $error]);
}
?>