Importing a Batch of CRM Records: crm.item.batchImport

Choose a tool for developing with an AI agent:

  • use Alaio Vibecode to build an app for Bitrix24 from a task description without knowing any programming language. The agent writes the code and deploys the app to a server, with no manual hosting setup
  • use the MCP server to develop a REST API integration in your own project. The agent refers to the official REST documentation

Scope: crm

Who can execute the method: any user with the "import" access permission for the CRM object

This is a universal method for importing objects into CRM. The differences from adding an object are described in more detail here.

The logic for adding entities is similar to the crm.item.import method.

Attention!

A maximum of 20 entities can be imported in a single request.

Method Parameters

Required parameters are marked with *

Name
type

Description

entityTypeId*
integer

Identifier of the system or custom type for which the entity needs to be created.

Numerical values for system types (Lead — 1, Deal — 2, Contact — 3, Company — 4, Invoice — 31, etc.) are provided in the CRM object types reference. The identifier for the SPA can be obtained using the crm.type.list method.

data*
array

An array of field values for the entities. It can be viewed as an array where each element contains a set of fields, as described in the crm.item.import method.

useOriginalUfNames
boolean

Parameter to control the format of custom field names in the request and response.
Possible values:

  • Y — original names of custom fields, e.g., UF_CRM_2_1639669411830
  • N — custom field names in camelCase, e.g., ufCrm2_1639669411830

Default is N.

Code Examples

How to Use Examples in Documentation

  1. How to Import Deals

    curl -X POST \
            -H "Content-Type: application/json" \
            -H "Accept: application/json" \
            -d '{"entityTypeId":2,"data":[{"title":"New deal (specifically for REST method examples)","typeId":"SERVICE","categoryId":9,"stageId":"C9:UC_KN8KFI","isReccurring":"Y","probability":50,"currencyId":"USD","isManualOpportunity":"Y","opportunity":999.99,"taxValue":99.9,"companyId":5,"contactId":4,"contactIds":[4,5],"quoteId":7,"begindate":"formatDate(monthAgo)","closedate":"formatDate(twelveDaysInAdvance)","opened":"N","comments":"commentsExample","assignedById":6,"sourceId":"WEB","sourceDescription":"There should be an additional description about the source","leadId":102,"additionalInfo":"There should be additional information","observers":[2,3],"utmSource":"google","utmMedium":"CPC","ufCrm_1721244707107":1111.1,"parentId1220":2},{"title":"New deal (specifically for REST method examples)","typeId":"SERVICE","categoryId":4,"stageId":"C9:UC_KN8KFI","isReccurring":"Y","probability":50,"currencyId":"USD","isManualOpportunity":"Y","opportunity":999.99,"taxValue":99.9,"companyId":5,"contactId":4,"contactIds":[4,5],"quoteId":7,"begindate":"formatDate(monthAgo)","closedate":"formatDate(twelveDaysInAdvance)","opened":"N","comments":"commentsExample","assignedById":6,"sourceId":"WEB","sourceDescription":"There should be an additional description about the source","leadId":102,"additionalInfo":"There should be additional information","observers":[2,3],"utmSource":"google","utmMedium":"CPC","ufCrm_1721244707107":1111.1,"parentId1220":2}]}' \
            https://**put_your_bitrix24_address**/rest/**put_your_user_id_here**/**put_your_webhook_here**/crm.item.batchImport
            
    curl -X POST \
            -H "Content-Type: application/json" \
            -H "Accept: application/json" \
            -d '{"entityTypeId":2,"data":[{"title":"New deal (specifically for REST method examples)","typeId":"SERVICE","categoryId":9,"stageId":"C9:UC_KN8KFI","isReccurring":"Y","probability":50,"currencyId":"USD","isManualOpportunity":"Y","opportunity":999.99,"taxValue":99.9,"companyId":5,"contactId":4,"contactIds":[4,5],"quoteId":7,"begindate":"formatDate(monthAgo)","closedate":"formatDate(twelveDaysInAdvance)","opened":"N","comments":"commentsExample","assignedById":6,"sourceId":"WEB","sourceDescription":"There should be an additional description about the source","leadId":102,"additionalInfo":"There should be additional information","observers":[2,3],"utmSource":"google","utmMedium":"CPC","ufCrm_1721244707107":1111.1,"parentId1220":2},{"title":"New deal (specifically for REST method examples)","typeId":"SERVICE","categoryId":4,"stageId":"C9:UC_KN8KFI","isReccurring":"Y","probability":50,"currencyId":"USD","isManualOpportunity":"Y","opportunity":999.99,"taxValue":99.9,"companyId":5,"contactId":4,"contactIds":[4,5],"quoteId":7,"begindate":"formatDate(monthAgo)","closedate":"formatDate(twelveDaysInAdvance)","opened":"N","comments":"commentsExample","assignedById":6,"sourceId":"WEB","sourceDescription":"There should be an additional description about the source","leadId":102,"additionalInfo":"There should be additional information","observers":[2,3],"utmSource":"google","utmMedium":"CPC","ufCrm_1721244707107":1111.1,"parentId1220":2}],"auth":"**put_access_token_here**"}' \
            https://**put_your_bitrix24_address**/rest/crm.item.batchImport
            
    
            from b24pysdk.errors import BitrixAPIError, BitrixSDKException
            
            try:
                bitrix_response = client.crm.item.batch_import(
                    entity_type_id=2,
                    data=[
                        {
                            "title": "New deal (specifically for REST method examples)",
                            "typeId": "SERVICE",
                            "categoryId": 9,
                            "stageId": "C9:UC_KN8KFI",
                            "isReccurring": "Y",
                            "probability": 50,
                            "currencyId": "USD",
                            "isManualOpportunity": "Y",
                            "opportunity": 999.99,
                            "taxValue": 99.9,
                            "companyId": 5,
                            "contactId": 4,
                            "contactIds": [4, 5],
                            "quoteId": 7,
                            "begindate": "formatDate(monthAgo)",
                            "closedate": "formatDate(twelveDaysInAdvance)",
                            "opened": "N",
                            "comments": "commentsExample",
                            "assignedById": 6,
                            "sourceId": "WEB",
                            "sourceDescription": "There should be an additional description about the source",
                            "leadId": 102,
                            "additionalInfo": "There should be additional information",
                            "observers": [2, 3],
                            "utmSource": "google",
                            "utmMedium": "CPC",
                            "ufCrm_1721244707107": 1111.1,
                            "parentId1220": 2,
                        },
                        {
                            "title": "New deal (specifically for REST method examples)",
                            "typeId": "SERVICE",
                            "categoryId": 4,
                            "stageId": "C9:UC_KN8KFI",
                            "isReccurring": "Y",
                            "probability": 50,
                            "currencyId": "USD",
                            "isManualOpportunity": "Y",
                            "opportunity": 999.99,
                            "taxValue": 99.9,
                            "companyId": 5,
                            "contactId": 4,
                            "contactIds": [4, 5],
                            "quoteId": 7,
                            "begindate": "formatDate(monthAgo)",
                            "closedate": "formatDate(twelveDaysInAdvance)",
                            "opened": "N",
                            "comments": "commentsExample",
                            "assignedById": 6,
                            "sourceId": "WEB",
                            "sourceDescription": "There should be an additional description about the source",
                            "leadId": 102,
                            "additionalInfo": "There should be additional information",
                            "observers": [2, 3],
                            "utmSource": "google",
                            "utmMedium": "CPC",
                            "ufCrm_1721244707107": 1111.1,
                            "parentId1220": 2,
                        },
                    ],
                ).response
                result = bitrix_response.result
                print(result)
            except BitrixAPIError as error:
                print(
                    "Bitrix API error",
                    f"error: {error.error}",
                    f"error_description: {error.error_description}",
                    sep="\n",
                )
            except BitrixSDKException as error:
                print(f"Bitrix SDK error: {error.message}")
            except Exception as error:
                print(f"Unexpected error: {error}")
            
    const formatDate = (date) => {
                return date.toISOString().slice(0, 10);
            };
            
            const day = 60 * 60 * 24 * 1000;
            
            const now = new Date();
            const twelveDaysInAdvance = new Date(now.getTime() + 12 * day);
            const monthAgo = new Date(now.getTime() - 30 * day);
            
            const commentsExample = `
            Example comment within the deal
            
            [B]Bold text[/B]
            [I]Italic[/I]
            [U]Underlined[/U]
            [S]Strikethrough[/S]
            [B][I][U][S]Mix[/S][/U][/I][/B]
            
            [LIST]
            [*]List item #1
            [*]List item #2
            [*]List item #3
            [/LIST]
            
            [LIST=1]
            [*]Numbered list item #1
            [*]Numbered list item #2
            [*]Numbered list item #3
            [/LIST]
            `;
            
            const deal = {
                title: "New deal (specifically for REST method examples)",
                typeId: "SERVICE",
                categoryId: 9,
                stageId: "C9:UC_KN8KFI",
                isReccurring: "Y",
                probability: 50,
                currencyId: "USD",
                isManualOpportunity: "Y",
                opportunity: 999.99,
                taxValue: 99.9,
                companyId: 5,
                contactId: 4,
                contactIds: [4, 5],
                quoteId: 7,
                begindate: formatDate(monthAgo),
                closedate: formatDate(twelveDaysInAdvance),
                opened: "N",
                comments: commentsExample,
                assignedById: 6,
                sourceId: "WEB",
                sourceDescription: "There should be an additional description about the source",
                leadId: 102,
                additionalInfo: "There should be additional information",
                observers: [2, 3],
                utmSource: "google",
                utmMedium: "CPC",
                ufCrm_1721244707107: 1111.1,
                parentId1220: 2,
            };
            
            const secondDeal = {
                title: "New deal (specifically for REST method examples)",
                typeId: "SERVICE",
                categoryId: 4,
                stageId: "C9:UC_KN8KFI",
                isReccurring: "Y",
                probability: 50,
                currencyId: "USD",
                isManualOpportunity: "Y",
                opportunity: 999.99,
                taxValue: 99.9,
                companyId: 5,
                contactId: 4,
                contactIds: [4, 5],
                quoteId: 7,
                begindate: formatDate(monthAgo),
                closedate: formatDate(twelveDaysInAdvance),
                opened: "N",
                comments: commentsExample,
                assignedById: 6,
                sourceId: "WEB",
                sourceDescription: "There should be an additional description about the source",
                leadId: 102,
                additionalInfo: "There should be additional information",
                observers: [2, 3],
                utmSource: "google",
                utmMedium: "CPC",
                ufCrm_1721244707107: 1111.1,
                parentId1220: 2,
            };
            
            BX24.callMethod(
                'crm.item.batchImport', 
                {
                    entityTypeId: 2,
                    data: [
                        deal,
                        secondDeal
                    ]
                },
                (result) => 
                {
                    result.error() 
                        ? console.error(result.error()) 
                        : console.info(result.data())
                    ;
                }
            );
            
    require_once('crest.php');
            
            $deal = [
                'title' => "New deal (specifically for REST method examples)",
                'typeId' => "SERVICE",
                'categoryId' => 9,
                'stageId' => "C9:UC_KN8KFI",
                'isReccurring' => "Y",
                'probability' => 50,
                'currencyId' => "USD",
                'isManualOpportunity' => "Y",
                'opportunity' => 999.99,
                'taxValue' => 99.9,
                'companyId' => 5,
                'contactId' => 4,
                'contactIds' => [4, 5],
                'quoteId' => 7,
                'begindate' => formatDate(monthAgo),
                'closedate' => formatDate(twelveDaysInAdvance),
                'opened' => "N",
                'comments' => $commentsExample,
                'assignedById' => 6,
                'sourceId' => "WEB",
                'sourceDescription' => "There should be an additional description about the source",
                'leadId' => 102,
                'additionalInfo' => "There should be additional information",
                'observers' => [2, 3],
                'utmSource' => "google",
                'utmMedium' => "CPC",
                'ufCrm_1721244707107' => 1111.1,
                'parentId1220' => 2
            ]
            
            $secondDeal = [
                'title' => "New deal (specifically for REST method examples)",
                'typeId' => "SERVICE",
                'categoryId' => 4,
                'stageId' => "C9:UC_KN8KFI",
                'isReccurring' => "Y",
                'probability' => 50,
                'currencyId' => "USD",
                'isManualOpportunity' => "Y",
                'opportunity' => 999.99,
                'taxValue' => 99.9,
                'companyId' => 5,
                'contactId' => 4,
                'contactIds' => [4, 5],
                'quoteId' => 7,
                'begindate' => formatDate(monthAgo),
                'closedate' => formatDate(twelveDaysInAdvance),
                'opened' => "N",
                'comments' => $commentsExample,
                'assignedById' => 6,
                'sourceId' => "WEB",
                'sourceDescription' => "There should be an additional description about the source",
                'leadId' => 102,
                'additionalInfo' => "There should be additional information",
                'observers' => [2, 3],
                'utmSource' => "google",
                'utmMedium' => "CPC",
                'ufCrm_1721244707107' => 1111.1,
                'parentId1220' => 2
            ]
            $result = CRest::call(
                'crm.item.batchImport',
                [
                    'entityTypeId' => 2,
                    'data' => [
                            $deal,
                            $secondDeal,
                        ],
                ],
            );
            
            echo '<PRE>';
            print_r($result);
            echo '</PRE>';
            
    // client and ctx are already created — see the Go SDK section
            res, err := client.Core().Call(ctx, "crm.item.batchImport", b24.Params{
            	"entityTypeId": 2,
            	"data": []b24.Params{
            		{
            			"title":               "New deal (specifically for REST method examples)",
            			"typeId":              "SERVICE",
            			"categoryId":          9,
            			"stageId":             "C9:UC_KN8KFI",
            			"isReccurring":        "Y",
            			"probability":         50,
            			"currencyId":          "EUR",
            			"isManualOpportunity": "Y",
            			"opportunity":         999.99,
            			"taxValue":            99.9,
            			"companyId":           5,
            			"contactId":           4,
            			"contactIds":          []int{4, 5},
            			"quoteId":             7,
            			"begindate":           "formatDate(monthAgo)",
            			"closedate":           "formatDate(twelveDaysInAdvance)",
            			"opened":              "N",
            			"comments":            "commentsExample",
            			"assignedById":        6,
            			"sourceId":            "WEB",
            			"sourceDescription":   "There should be an additional description about the source",
            			"leadId":              102,
            			"additionalInfo":      "There should be additional information",
            			"observers":           []int{2, 3},
            			"utmSource":           "google",
            			"utmMedium":           "CPC",
            			"ufCrm_1721244707107": 1111.1,
            			"parentId1220":        2,
            		},
            		{
            			"title":               "New deal (specifically for REST method examples)",
            			"typeId":              "SERVICE",
            			"categoryId":          4,
            			"stageId":             "C9:UC_KN8KFI",
            			"isReccurring":        "Y",
            			"probability":         50,
            			"currencyId":          "EUR",
            			"isManualOpportunity": "Y",
            			"opportunity":         999.99,
            			"taxValue":            99.9,
            			"companyId":           5,
            			"contactId":           4,
            			"contactIds":          []int{4, 5},
            			"quoteId":             7,
            			"begindate":           "formatDate(monthAgo)",
            			"closedate":           "formatDate(twelveDaysInAdvance)",
            			"opened":              "N",
            			"comments":            "commentsExample",
            			"assignedById":        6,
            			"sourceId":            "WEB",
            			"sourceDescription":   "There should be an additional description about the source",
            			"leadId":              102,
            			"additionalInfo":      "There should be additional information",
            			"observers":           []int{2, 3},
            			"utmSource":           "google",
            			"utmMedium":           "CPC",
            			"ufCrm_1721244707107": 1111.1,
            			"parentId1220":        2,
            		},
            	},
            })
            if err != nil {
            	return fmt.Errorf("crm.item.batchImport: %w", err)
            }
            
            // The method wraps the response in an object with the "items" key.
            raw, ok := b24.Unwrap(res.Result, "items")
            if !ok {
            	return fmt.Errorf("no items key in the response")
            }
            
            fmt.Printf("%s\n", raw)
            
  2. How to Create an SPA Element with a Set of Custom Fields

    Custom fields involved in the example
    {
                "ufCrm44_1721812760630": {
                    "type": "string",
                    "isRequired": false,
                    "isReadOnly": false,
                    "isImmutable": false,
                    "isMultiple": false,
                    "isDynamic": true,
                    "title": "Custom field (string)",
                    "listLabel": "Custom field (string)",
                    "formLabel": "Custom field (string)",
                    "filterLabel": "Custom field (string)",
                    "settings": {
                        "SIZE": 20,
                        "ROWS": 1,
                        "REGEXP": "",
                        "MIN_LENGTH": 0,
                        "MAX_LENGTH": 0,
                        "DEFAULT_VALUE": ""
                    },
                    "upperName": "UF_CRM_44_1721812760630"
                },
                "ufCrm44_1721812814433": {
                    "type": "enumeration",
                    "isRequired": false,
                    "isReadOnly": false,
                    "isImmutable": false,
                    "isMultiple": false,
                    "isDynamic": true,
                    "items": [
                        {
                            "ID": "79",
                            "VALUE": "List item #1"
                        },
                        {
                            "ID": "80",
                            "VALUE": "List item #2"
                        },
                        {
                            "ID": "81",
                            "VALUE": "List item #3"
                        },
                        {
                            "ID": "82",
                            "VALUE": "List item #4"
                        }
                    ],
                    "title": "Custom field (list)",
                    "listLabel": "Custom field (list)",
                    "formLabel": "Custom field (list)",
                    "filterLabel": "Custom field (list)",
                    "settings": {
                        "DISPLAY": "LIST",
                        "LIST_HEIGHT": 1,
                        "CAPTION_NO_VALUE": "",
                        "SHOW_NO_VALUE": "Y"
                    },
                    "upperName": "UF_CRM_44_1721812814433"
                },
                "ufCrm44_1721812853419": {
                    "type": "date",
                    "isRequired": false,
                    "isReadOnly": false,
                    "isImmutable": false,
                    "isMultiple": false,
                    "isDynamic": true,
                    "title": "Custom field (date)",
                    "listLabel": "Custom field (date)",
                    "formLabel": "Custom field (date)",
                    "filterLabel": "Custom field (date)",
                    "settings": {
                        "DEFAULT_VALUE": {
                            "TYPE": "NONE",
                            "VALUE": ""
                        }
                    },
                    "upperName": "UF_CRM_44_1721812853419"
                },
                "ufCrm44_1721812885588": {
                    "type": "url",
                    "isRequired": false,
                    "isReadOnly": false,
                    "isImmutable": false,
                    "isMultiple": true,
                    "isDynamic": true,
                    "title": "Multiple custom field (link)",
                    "listLabel": "Multiple custom field (link)",
                    "formLabel": "Multiple custom field (link)",
                    "filterLabel": "Multiple custom field (link)",
                    "settings": {
                        "POPUP": "Y",
                        "SIZE": 20,
                        "MIN_LENGTH": 0,
                        "MAX_LENGTH": 0,
                        "DEFAULT_VALUE": "",
                        "ROWS": 1
                    },
                    "upperName": "UF_CRM_44_1721812885588"
                },
                "ufCrm44_1721812898903": {
                    "type": "file",
                    "isRequired": false,
                    "isReadOnly": false,
                    "isImmutable": false,
                    "isMultiple": false,
                    "isDynamic": true,
                    "title": "Custom field (file)",
                    "listLabel": "Custom field (file)",
                    "formLabel": "Custom field (file)",
                    "filterLabel": "Custom field (file)",
                    "settings": {
                        "SIZE": 20,
                        "LIST_WIDTH": 0,
                        "LIST_HEIGHT": 0,
                        "MAX_SHOW_SIZE": 0,
                        "MAX_ALLOWED_SIZE": 0,
                        "EXTENSIONS": [],
                        "TARGET_BLANK": "Y"
                    },
                    "upperName": "UF_CRM_44_1721812898903"
                },
                "ufCrm44_1721812915476": {
                    "type": "money",
                    "isRequired": false,
                    "isReadOnly": false,
                    "isImmutable": false,
                    "isMultiple": false,
                    "isDynamic": true,
                    "title": "Custom field (money)",
                    "listLabel": "Custom field (money)",
                    "formLabel": "Custom field (money)",
                    "filterLabel": "Custom field (money)",
                    "settings": {
                        "DEFAULT_VALUE": ""
                    },
                    "upperName": "UF_CRM_44_1721812915476"
                },
                "ufCrm44_1721812935209": {
                    "type": "boolean",
                    "isRequired": false,
                    "isReadOnly": false,
                    "isImmutable": false,
                    "isMultiple": false,
                    "isDynamic": true,
                    "title": "Custom field (Yes/No)",
                    "listLabel": "Custom field (Yes/No)",
                    "formLabel": "Custom field (Yes/No)",
                    "filterLabel": "Custom field (Yes/No)",
                    "settings": {
                        "DEFAULT_VALUE": 0,
                        "DISPLAY": "CHECKBOX",
                        "LABEL": [
                            "",
                            ""
                        ],
                        "LABEL_CHECKBOX": {
                            "en": "Custom field (Yes/No)",
                            "ru": "Custom field (Yes/No)",
                            "th": "Custom field (Yes/No)",
                            "la": "Custom field (Yes/No)",
                            "tc": "Custom field (Yes/No)",
                            "sc": "Custom field (Yes/No)",
                            "br": "Custom field (Yes/No)",
                            "ar": "Custom field (Yes/No)",
                            "fr": "Custom field (Yes/No)",
                            "vn": "Custom field (Yes/No)",
                            "pl": "Custom field (Yes/No)",
                            "tr": "Custom field (Yes/No)",
                            "ja": "Custom field (Yes/No)",
                            "it": "Custom field (Yes/No)",
                            "ms": "Custom field (Yes/No)",
                            "id": "Custom field (Yes/No)"
                        }
                    },
                    "upperName": "UF_CRM_44_1721812935209"
                },
                "ufCrm44_1721812948498": {
                    "type": "double",
                    "isRequired": false,
                    "isReadOnly": false,
                    "isImmutable": false,
                    "isMultiple": false,
                    "isDynamic": true,
                    "title": "Custom field (number)",
                    "listLabel": "Custom field (number)",
                    "formLabel": "Custom field (number)",
                    "filterLabel": "Custom field (number)",
                    "settings": {
                        "PRECISION": 2,
                        "SIZE": 20,
                        "MIN_VALUE": 0,
                        "MAX_VALUE": 0,
                        "DEFAULT_VALUE": null
                    },
                    "upperName": "UF_CRM_44_1721812948498"
                }
            }
            
    curl -X POST \
            -H "Content-Type: application/json" \
            -H "Accept: application/json" \
            -d '{
                "entityTypeId": 1302,
                "data": [{
                    "ufCrm44_1721812760630": "String for a string-type custom field",
                    "ufCrm44_1721812814433": 81,
                    "ufCrm44_1721812853419": "'"$(date '+%Y-%m-%d')"'",
                    "ufCrm44_1721812885588": [
                        "example.com",
                        "second-example.com"
                    ],
                    "ufCrm44_1721812898903": [
                        "green_pixel.png",
                        "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg=="
                    ],
                    "ufCrm44_1721812915476": "300|USD",
                    "ufCrm44_1721812935209": "Y",
                    "ufCrm44_1721812948498": 9999.9
                },{
                    "ufCrm44_1721812760630": "String for a string-type custom field",
                    "ufCrm44_1721812814433": 45,
                    "ufCrm44_1721812853419": "'"$(date '+%Y-%m-%d')"'",
                    "ufCrm44_1721812885588": [
                        "example.com",
                        "second-example.com"
                    ],
                    "ufCrm44_1721812898903": [
                        "green_pixel2.png",
                        "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg=="
                    ],
                    "ufCrm44_1721812915476": "600|USD",
                    "ufCrm44_1721812935209": "N",
                    "ufCrm44_1721812948498": 9999.9
                }]
            }' \
            https://**put_your_bitrix24_address**/rest/**put_your_user_id_here**/**put_your_webhook_here**/crm.item.batchImport
            
    curl -X POST \
            -H "Content-Type: application/json" \
            -H "Accept: application/json" \
            -d '{
                "entityTypeId": 1302,
                "data": [{
                    "ufCrm44_1721812760630": "String for a string-type custom field",
                    "ufCrm44_1721812814433": 81,
                    "ufCrm44_1721812853419": "'"$(date '+%Y-%m-%d')"'",
                    "ufCrm44_1721812885588": [
                        "example.com",
                        "second-example.com"
                    ],
                    "ufCrm44_1721812898903": [
                        "green_pixel.png",
                        "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg=="
                    ],
                    "ufCrm44_1721812915476": "300|USD",
                    "ufCrm44_1721812935209": "Y",
                    "ufCrm44_1721812948498": 9999.9
                },{
                    "ufCrm44_1721812760630": "String for a string-type custom field",
                    "ufCrm44_1721812814433": 45,
                    "ufCrm44_1721812853419": "'"$(date '+%Y-%m-%d')"'",
                    "ufCrm44_1721812885588": [
                        "example.com",
                        "second-example.com"
                    ],
                    "ufCrm44_1721812898903": [
                        "green_pixel2.png",
                        "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg=="
                    ],
                    "ufCrm44_1721812915476": "600|USD",
                    "ufCrm44_1721812935209": "N",
                    "ufCrm44_1721812948498": 9999.9
                }],
                "auth": "**put_access_token_here**"
            }' \
            https://**put_your_bitrix24_address**/rest/crm.item.batchImport
            
    // This snippet is an ES module: top-level await requires type="module" or a bundler.
            // $b24 is an already-initialized SDK instance (see the SDK "Get started" guide).
            import { Text } from '@bitrix24/b24jssdk'
            import type { B24Frame } from '@bitrix24/b24jssdk'
            
            declare const $b24: B24Frame
            
            // Shape of the payload returned in result (match the "response handling" section of the page)
            type BatchImportResult = {
              items: Array<
                | { item: { id: number } }
                | { error: string; error_description: string }
              >
            }
            
            const greenPixelInBase64 = "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg=="
            
            try {
              const response = await $b24.actions.v2.call.make<BatchImportResult>({
                method: 'crm.item.batchImport',
                params: {
                  entityTypeId: 1302,
                  data: [
                    {
                      ufCrm44_1721812760630: "String for custom field of type String",
                      ufCrm44_1721812814433: 81,
                      ufCrm44_1721812853419: new Date().toISOString().slice(0, 10),
                      ufCrm44_1721812885588: [
                        "example.com",
                        "second-example.com",
                      ],
                      ufCrm44_1721812898903: [
                        "green_pixel.png",
                        greenPixelInBase64,
                      ],
                      ufCrm44_1721812915476: "300|USD",
                      ufCrm44_1721812935209: "Y",
                      ufCrm44_1721812948498: 9999.9,
                    },
                    {
                      ufCrm44_1721812760630: "String for custom field of type String",
                      ufCrm44_1721812814433: 45,
                      ufCrm44_1721812853419: new Date().toISOString().slice(0, 10),
                      ufCrm44_1721812885588: [
                        "example.com",
                        "second-example.com",
                      ],
                      ufCrm44_1721812898903: [
                        "green_pixel2.png",
                        greenPixelInBase64,
                      ],
                      ufCrm44_1721812915476: "600|USD",
                      ufCrm44_1721812935209: "N",
                      ufCrm44_1721812948498: 9999.9,
                    },
                  ],
                },
                requestId: Text.getUuidRfc4122()
              })
            
              // The payload is available only on a successful response
              if (!response.isSuccess) {
                console.error(response.getErrorMessages().join('; '))
              } else {
                const result = response.getData()!.result
                console.info('Imported items:', result.items)
              }
            } catch (error) {
              // Thrown on transport or SDK failures (AjaxError, SdkError, etc.)
              console.error(error)
            }
            
    <!-- Load the SDK (UMD build); it is exposed as the global B24Js -->
            <script src="https://unpkg.com/@bitrix24/b24jssdk@1/dist/umd/index.min.js"></script>
            <script>
              async function batchImportItems() {
                try {
                  // Initialize the SDK inside a Bitrix24 frame
                  const $b24 = await B24Js.initializeB24Frame()
            
                  const greenPixelInBase64 = "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg=="
            
                  const response = await $b24.actions.v2.call.make({
                    method: 'crm.item.batchImport',
                    params: {
                      entityTypeId: 1302,
                      data: [
                        {
                          ufCrm44_1721812760630: "String for custom field of type String",
                          ufCrm44_1721812814433: 81,
                          ufCrm44_1721812853419: new Date().toISOString().slice(0, 10),
                          ufCrm44_1721812885588: [
                            "example.com",
                            "second-example.com",
                          ],
                          ufCrm44_1721812898903: [
                            "green_pixel.png",
                            greenPixelInBase64,
                          ],
                          ufCrm44_1721812915476: "300|USD",
                          ufCrm44_1721812935209: "Y",
                          ufCrm44_1721812948498: 9999.9,
                        },
                        {
                          ufCrm44_1721812760630: "String for custom field of type String",
                          ufCrm44_1721812814433: 45,
                          ufCrm44_1721812853419: new Date().toISOString().slice(0, 10),
                          ufCrm44_1721812885588: [
                            "example.com",
                            "second-example.com",
                          ],
                          ufCrm44_1721812898903: [
                            "green_pixel2.png",
                            greenPixelInBase64,
                          ],
                          ufCrm44_1721812915476: "600|USD",
                          ufCrm44_1721812935209: "N",
                          ufCrm44_1721812948498: 9999.9,
                        },
                      ],
                    },
                    requestId: B24Js.Text.getUuidRfc4122()
                  })
            
                  // The payload is available only on a successful response
                  if (!response.isSuccess) {
                    console.error(response.getErrorMessages().join('; '))
                    return
                  }
            
                  const result = response.getData().result
                  console.info('Imported items:', result.items)
                } catch (error) {
                  // Thrown on transport or SDK failures (AjaxError, SdkError, etc.)
                  console.error(error)
                }
              }
            
              document.addEventListener('DOMContentLoaded', batchImportItems)
            </script>
            
    
            from b24pysdk.errors import BitrixAPIError, BitrixSDKException
            
            try:
                bitrix_response = client.crm.item.batch_import(
                    entity_type_id=1302,
                    data=[
                        {
                        "ufCrm44_1721812760630": "String for a custom field of the String type",
                        "ufCrm44_1721812814433": 81,
                        "ufCrm44_1721812853419": "2024-08-21",
                        "ufCrm44_1721812885588": [
                            "example.com",
                            "second-example.com",
                        ],
                        "ufCrm44_1721812898903": [
                            "green_pixel.png",
                            "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg==",
                        ],
                        "ufCrm44_1721812915476": "300|EUR",
                        "ufCrm44_1721812935209": "Y",
                        "ufCrm44_1721812948498": 9999.9,
                    },
                        {
                        "ufCrm44_1721812760630": "String for a custom field of the String type",
                        "ufCrm44_1721812814433": 45,
                        "ufCrm44_1721812853419": "2024-08-21",
                        "ufCrm44_1721812885588": [
                            "example.com",
                            "second-example.com",
                        ],
                        "ufCrm44_1721812898903": [
                            "green_pixel2.png",
                            "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg==",
                        ],
                        "ufCrm44_1721812915476": "300|EUR",
                        "ufCrm44_1721812935209": "Y",
                        "ufCrm44_1721812948498": 9999.9,
                    },
                    ],
                ).response
                result = bitrix_response.result
                print(result)
            except BitrixAPIError as error:
                print(
                    "Bitrix API error",
                    f"error: {error.error}",
                    f"error_description: {error.error_description}",
                    sep="\n",
                )
            except BitrixSDKException as error:
                print(f"Bitrix SDK error: {error.message}")
            except Exception as error:
                print(f"Unexpected error: {error}")
            
    require_once('crest.php');
            
            $result = CRest::call(
                'crm.item.batchImport',
                [
                    'entityTypeId' => 1302,
                    'data' => [
                        [
                            'ufCrm44_1721812760630' => "String for a string-type custom field",
                            'ufCrm44_1721812814433' => 81,
                            'ufCrm44_1721812853419' => date('Y-m-d'),
                            'ufCrm44_1721812885588' => [
                                "example.com",
                                "second-example.com",
                            ],
                            'ufCrm44_1721812898903' => [
                                "green_pixel.png",
                                "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg==",
                            ],
                            'ufCrm44_1721812915476' => "300|USD",
                            'ufCrm44_1721812935209' => "Y",
                            'ufCrm44_1721812948498' => 9999.9,
                        ],
                        [
                            'ufCrm44_1721812760630' => "String for a string-type custom field",
                            'ufCrm44_1721812814433' => 45,
                            'ufCrm44_1721812853419' => date('Y-m-d'),
                            'ufCrm44_1721812885588' => [
                                "example.com",
                                "second-example.com",
                            ],
                            'ufCrm44_1721812898903' => [
                                "green_pixel2.png",
                                "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg==",
                            ],
                            'ufCrm44_1721812915476' => "600|USD",
                            'ufCrm44_1721812935209' => "N",
                            'ufCrm44_1721812948498' => 9999.9,
                        ],
                    ],
                ]
            );
            
            echo '<PRE>';
            print_r($result);
            echo '</PRE>';
            
    // client and ctx are already created — see the Go SDK section
            res, err := client.Core().Call(ctx, "crm.item.batchImport", b24.Params{
            	"entityTypeId": 1302,
            	"data": []b24.Params{
            		{
            			"ufCrm44_1721812760630": "String for a string-type custom field",
            			"ufCrm44_1721812814433": 81,
            			"ufCrm44_1721812853419": time.Now().Format(time.RFC3339),
            			"ufCrm44_1721812885588": []string{"example.com", "second-example.com"},
            			"ufCrm44_1721812898903": []string{"green_pixel.png", "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg=="},
            			"ufCrm44_1721812915476": "300|EUR",
            			"ufCrm44_1721812935209": "Y",
            			"ufCrm44_1721812948498": 9999.9,
            		},
            		{
            			"ufCrm44_1721812760630": "String for a string-type custom field",
            			"ufCrm44_1721812814433": 45,
            			"ufCrm44_1721812853419": time.Now().Format(time.RFC3339),
            			"ufCrm44_1721812885588": []string{"example.com", "second-example.com"},
            			"ufCrm44_1721812898903": []string{"green_pixel2.png", "iVBORw0KGgoAAAANSUhEUgAAAIAAAAAMCAYAAACqTLVoAAAALklEQVR42u3SAQEAAAQDsEsuOj3YMqwy6fBWCSCAAAIgAAIgAAIgAAIgAAJw3QLOrRH1U/gU4gAAAABJRU5ErkJggg=="},
            			"ufCrm44_1721812915476": "600|EUR",
            			"ufCrm44_1721812935209": "N",
            			"ufCrm44_1721812948498": 9999.9,
            		},
            	},
            })
            if err != nil {
            	return fmt.Errorf("crm.item.batchImport: %w", err)
            }
            
            // The method wraps the response in an object with the "items" key.
            raw, ok := b24.Unwrap(res.Result, "items")
            if !ok {
            	return fmt.Errorf("no items key in the response")
            }
            
            fmt.Printf("%s\n", raw)
            

Response Handling

The method will return an array items, containing objects where each object in this array will either contain the identifier of the created entity in case of success, or an error message object.

HTTP status: 200

{
            "result": {
                "items": [
                    {
                        "item": {
                            "id": 15
                        }
                    },
                    {
                        "error": "CRM_FIELD_ERROR_REQUIRED",
                        "error_description": "The \"Name\" field is required"
                    }
                ]
            },
            "time": {
                "start": 1723414961.913589,
                "finish": 1723414964.652124,
                "duration": 2.738534927368164,
                "processing": 2.376383066177368,
                "date_start": "2024-08-11T22:22:41+00:00",
                "date_finish": "2024-08-11T22:22:44+00:00",
                "operating": 2.3762991428375244
            }
        }
        

Returned Data

Name
type

Description

result
object

The root element of the response.

Contains a single key item

items
array

An array containing item objects or errors

item
object

Information about the created entity.

Contains a single key id

id
integer

Identifier of the created entity

time
time

Information about the request execution time

By default, custom field names are passed and returned in camelCase, for example ufCrm2_1639669411830.
When passing the parameter useOriginalUfNames with the value Y, custom fields will be returned with their original names, for example UF_CRM_2_1639669411830.

Error Handling

HTTP status: 401, 400, 403

{
            "error": "NOT_FOUND",
            "error_description": "Smart process not found"
        }
        

Name
type

Description

error
string

String error code. It consists of digits, Latin letters, and underscores. It may arrive empty — in that case only error_description shows the reason

error_description
string

Error message for the developer. Do not show it to the end user without processing

Possible Error Codes

Status

Code

Description

Value

400

NOT_FOUND

SPA not found

Occurs when an invalid entityTypeId is passed

400

ACCESS_DENIED

Access denied

User does not have permission to add items of type entityTypeId

400

CRM_FIELD_ERROR_VALUE_NOT_VALID

Invalid value for field "field"

An incorrect value for the field was passed.

For system fields of type createdTime, if the request is not from an administrator.

400

100

Expected iterable value for multiple field, but got type instead

One of the multiple fields received a value of type type, while an iterable type was expected. This can also occur with an incorrect request (invalid JSON or request headers).

400

CREATE_DYNAMIC_ITEM_RESTRICTED

You cannot create a new item due to your plan restrictions

Plan restrictions do not allow creating SPA items

400

MAX_IMPORT_BATCH_SIZE_EXCEEDED

You cannot import more than 20 items

Occurs when more than 20 entities are passed during import.

401

INVALID_CREDENTIALS

Invalid authorization data for the request

Incorrect ID and/or code in the request path.

403

allowed_only_intranet_user

This action is allowed only for intranet users

User is not an intranet user

Statuses and System Error Codes

HTTP Status: 4xx, 5xx

The errors described below are returned by the REST API itself, not by the logic of a specific method. They can arrive in response to any method.

Status

Code
Error Message

Description

500

INTERNAL_SERVER_ERROR
Internal server error

An internal server error has occurred. Retry the call, and if the error persists, contact the server administrator or Bitrix24 technical support

500

ERROR_UNEXPECTED_ANSWER
Server returned an unexpected response

The server returned an unexpected response. Retry the call, and if the error persists, contact the server administrator or Bitrix24 technical support

503

QUERY_LIMIT_EXCEEDED
Too many requests

The request intensity limit has been exceeded

429

OPERATION_TIME_LIMIT
Method is blocked due to operation time limit

The method is blocked because the request resource intensity limit has been exceeded. The block is lifted automatically once the accumulated execution time of the method no longer exceeds the limit

401

NO_AUTH_FOUND
Wrong authorization data

The request contains no authorization data: neither an access token nor a webhook code was passed

401

INVALID_REQUEST
Https required

Methods are called over the HTTPS protocol only

401

OVERLOAD_LIMIT
REST API is blocked due to overload

The REST API is blocked due to overload. This is a manual individual block. To have it lifted, contact Bitrix24 technical support

401

ACCESS_DENIED
REST is available only on commercial plans

REST API access is not active for this account. In Bitrix24 Cloud, check the current plan or trial status: Vibe+ plans include REST API access, while Essentials plans do not. A webhook receives a different error message — REST is available only by subscription

401

INVALID_CREDENTIALS
Invalid request credentials

No active webhook with the specified user identifier and secret code was found

404

ERROR_METHOD_NOT_FOUND
Method not found!

No method with this name was found. The name is misspelled, the method does not exist in the REST API, or it is unavailable without the required scope

401

insufficient_scope
The request requires higher privileges than provided by the webhook token

The request requires broader permissions than the token has: for a webhook these are the permissions granted to it, for an application it is the scope. For an application, the error message ends with provided by the access token

401

expired_token
The access token provided has expired

The access token has expired

401

user_access_error
The user does not have access to the application

The application is installed, but the Bitrix24 administrator has granted access to it only to specific users

403

PORTAL_DELETED
Portal was deleted

The public part of the site is closed. To open it on an on-premise installation, disable the "Temporary closure of the public part of the site" option. Path to the setting: Desktop > Settings > Product Settings > Module Settings > Main Module > Temporary closure of the public part of the site

How to Use Examples in Documentation

Continue Learning