Skip to content

Latest commit

 

History

History
571 lines (504 loc) · 19 KB

File metadata and controls

571 lines (504 loc) · 19 KB

Add Task tasks.task.add

{% note tip "" %}

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

{% endnote %}

Scope: task

Who can execute the method: any user

The method tasks.task.add adds a new task.

Method Parameters

{% include Note on required parameters %}

#| || Name type | Description || || fields* object | Values of task fields. Required fields for creating a task:

  • TITLE — task title
  • RESPONSIBLE_ID — responsible person's ID

{% note warning "" %}

Check which required custom fields are set for tasks in your Bitrix24. All required fields must be passed to the method.

{% endnote %}

You can pass the parameter SE_PARAMETER to the method — a list of objects with additional task parameters. Possible values for CODE:

  • 1 — deadlines are determined by the deadlines of subtasks
  • 2 — automatically complete the task when subtasks are completed (and vice versa)
  • 3 — do not complete the task without a result
SE_PARAMETER: [
    {
        VALUE: 'Y',
        CODE: 3
    },
    {
        VALUE: 'Y',
        CODE: 2
    }
]

|| |#

Code Examples

{% include Note on Examples %}

Let's add a task with files and CRM object bindings. To attach a file to the task, you need to add the character n before the file ID.

{% list tabs %}

  • cURL (Webhook)

    curl -X POST \
    -H "Content-Type: application/json" \
    -H "Accept: application/json" \
    -d '{"fields":{"TITLE":"Task Title","DEADLINE":"2025-12-31T23:59:59","CREATED_BY":456,"RESPONSIBLE_ID":123,"UF_CRM_TASK":["L_4","C_7","CO_5","D_10"],"UF_TASK_WEBDAV_FILES":["n12345","n67890"]}}' \
    https://**put_your_bitrix24_address**/rest/**put_your_user_id_here**/**put_your_webhook_here**/tasks.task.add
  • cURL (OAuth)

    curl -X POST \
    -H "Content-Type: application/json" \
    -H "Accept: application/json" \
    -d '{"fields":{"TITLE":"Task Title","DEADLINE":"2025-12-31T23:59:59","CREATED_BY":456,"RESPONSIBLE_ID":123,"UF_CRM_TASK":["L_4","C_7","CO_5","D_10"],"UF_TASK_WEBDAV_FILES":["n12345","n67890"]},"auth":"**put_access_token_here**"}' \
    https://**put_your_bitrix24_address**/rest/tasks.task.add
  • JS (TS)

    // 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
    
    // Minimal shape of result.task; the API returns the full task object
    // Shape of the payload returned in result (match the "response handling" section of the page)
    type TaskAddResult = {
      task: { id: string }
    }
    
    try {
      const response = await $b24.actions.v2.call.make<TaskAddResult>({
        method: 'tasks.task.add',
        params: {
          fields: {
            TITLE: 'Task title', // Task title (required)
            DEADLINE: '2025-12-31T23:59:59', // Deadline, ISO 8601
            CREATED_BY: 456, // Creator ID
            RESPONSIBLE_ID: 123, // Responsible person ID (required)
            // Bind the task to several CRM entities via UF_CRM_TASK
            UF_CRM_TASK: ['L_4', 'C_7', 'CO_5', 'D_10'], // Lead 4 / Contact 7 / Company 5 / Deal 10
            // Attach several Drive files via UF_TASK_WEBDAV_FILES (prefix IDs with "n")
            UF_TASK_WEBDAV_FILES: ['n12345', 'n67890']
          }
        },
        requestId: Text.getUuidRfc4122() // optional unique tracking id for this request
      })
    
      // 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(`Task created with ID ${result.task.id}`)
      }
    } catch (error) {
      // Thrown on transport or SDK failures (AjaxError, SdkError, etc.)
      console.error(error)
    }
  • JS (UMD)

    <!-- 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 createTask() {
        try {
          // Initialize the SDK inside a Bitrix24 frame
          const $b24 = await B24Js.initializeB24Frame()
    
          const response = await $b24.actions.v2.call.make({
            method: 'tasks.task.add',
            params: {
              fields: {
                TITLE: 'Task title', // Task title (required)
                DEADLINE: '2025-12-31T23:59:59', // Deadline, ISO 8601
                CREATED_BY: 456, // Creator ID
                RESPONSIBLE_ID: 123, // Responsible person ID (required)
                // Bind the task to several CRM entities via UF_CRM_TASK
                UF_CRM_TASK: ['L_4', 'C_7', 'CO_5', 'D_10'], // Lead 4 / Contact 7 / Company 5 / Deal 10
                // Attach several Drive files via UF_TASK_WEBDAV_FILES (prefix IDs with "n")
                UF_TASK_WEBDAV_FILES: ['n12345', 'n67890']
              }
            },
            requestId: B24Js.Text.getUuidRfc4122() // optional unique tracking id for this request
          })
    
          // 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(`Task created with ID ${result.task.id}`)
        } catch (error) {
          // Thrown on transport or SDK failures (AjaxError, SdkError, etc.)
          console.error(error)
        }
      }
    
      document.addEventListener('DOMContentLoaded', createTask)
    </script>
  • Python

    from b24pysdk.errors import BitrixAPIError, BitrixSDKException
    
    fields = {
        "TITLE": "Task title",
        "DEADLINE": "2025-12-31T23:59:59",
        "CREATED_BY": 456,
        "RESPONSIBLE_ID": 123,
        "UF_CRM_TASK": [
            "L_4",
            "C_7",
            "CO_5",
            "D_10",
        ],
        "UF_TASK_WEBDAV_FILES": [
            "n12345",
            "n67890",
        ],
    }
    
    try:
        bitrix_response = client.tasks.task.add(
            fields=fields,
        ).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}")
  • PHP

    try {
        $response = $b24Service
            ->core
            ->call(
                'tasks.task.add',
                [
                    'fields' => [
                        'TITLE'         => 'Task Title',
                        'DEADLINE'      => '2025-12-31T23:59:59',
                        'CREATED_BY'    => 456,
                        'RESPONSIBLE_ID' => 123,
                        'UF_CRM_TASK'   => [
                            'L_4',
                            'C_7',
                            'CO_5',
                            'D_10',
                        ],
                        'UF_TASK_WEBDAV_FILES' => [
                            'n12345',
                            'n67890',
                        ],
                    ],
                ]
            );
    
        $result = $response
            ->getResponseData()
            ->getResult();
    
        echo 'Task successfully created with ID ' . $result['task']['id'];
    
    } catch (Throwable $e) {
        error_log($e->getMessage());
        echo 'Error creating task: ' . $e->getMessage();
    }
  • BX24.js

    BX24.callMethod(
        "tasks.task.add",
        {
            fields: {               
                TITLE: "Task Title", // Task title
                DEADLINE: "2025-12-31T23:59:59", // Deadline
                CREATED_BY: 456, // Creator ID
                RESPONSIBLE_ID: 123, // Responsible person ID
                // Example of passing multiple values in the UF_CRM_TASK field
                UF_CRM_TASK: [
                    "L_4", // Binding to lead
                    "C_7", // Binding to contact
                    "CO_5", // Binding to company
                    "D_10" // Binding to deal
                ],
                // Example of passing multiple files in the UF_TASK_WEBDAV_FILES field
                UF_TASK_WEBDAV_FILES: [
                    "n12345", // ID of the first Drive file
                    "n67890" // ID of the second Drive file
                ]
            }
        },
        function(result) {
            if (result.error()) {
                console.error(result.error());
            } else {
                console.info("Task successfully created with ID " + result.data().task.id);
            }
        }
    );
  • PHP CRest

    require_once('crest.php');
    
    $result = CRest::call(
        'tasks.task.add',
        [
            'fields' => [
                'TITLE' => 'Task Title', // Task title
                'DEADLINE' => '2025-12-31T23:59:59', // Deadline
                'CREATED_BY' => 456, // Creator ID
                'RESPONSIBLE_ID' => 123, // Responsible person ID
                // Example of passing multiple values in the UF_CRM_TASK field
                'UF_CRM_TASK' => [
                    'L_4', // Binding to lead
                    'C_7', // Binding to contact
                    'CO_5', // Binding to company
                    'D_10' // Binding to deal
                ],
                // Example of passing multiple files in the UF_TASK_WEBDAV_FILES field
                'UF_TASK_WEBDAV_FILES' => [
                    'n12345', // ID of the first Drive file
                    'n67890' // ID of the second Drive file
                ]
            ]
        }
    );
    
    if (isset($result['error'])) {
        echo 'Error: ' . $result['error_description'];
    } else {
        echo 'Task successfully created with ID ' . $result['result']['task']['id'];
    }
  • Go

    // client and ctx are already created — see the Go SDK section
    res, err := client.Core().Call(ctx, "tasks.task.add", b24.Params{
    	"fields": b24.Params{
    		"TITLE":                "Task Title",
    		"DEADLINE":             "2025-12-31T23:59:59",
    		"CREATED_BY":           456,
    		"RESPONSIBLE_ID":       123,
    		"UF_CRM_TASK":          []string{"L_4", "C_7", "CO_5", "D_10"},
    		"UF_TASK_WEBDAV_FILES": []string{"n12345", "n67890"},
    	},
    })
    if err != nil {
    	return fmt.Errorf("tasks.task.add: %w", err)
    }
    
    // The method wraps the response in an object with the "task" key.
    raw, ok := b24.Unwrap(res.Result, "task")
    if !ok {
    	return fmt.Errorf("no task key in the response")
    }
    
    var item struct {
    	ID          b24.ID `json:"id"`
    	Title       string `json:"title"`
    	Description string `json:"description"`
    	Priority    string `json:"priority"`
    	Multitask   string `json:"multitask"`
    	NotViewed   string `json:"notViewed"`
    }
    if err := json.Unmarshal(raw, &item); err != nil {
    	return fmt.Errorf("parse response: %w", err)
    }
    fmt.Println(item.ID, item.Title)

{% endlist %}

Response Handling

HTTP Status: 200

{
    "result": {
        "task": {
            "id": "3711",
            "parentId": null,
            "title": "task for test",
            "description": "",
            "mark": null,
            "priority": "1",
            "multitask": "N",
            "notViewed": "N",
            "replicate": "N",
            "stageId": "0",
            "createdBy": "1",
            "createdDate": "2024-11-02T10:06:08+02:00",
            "responsibleId": "1",
            "changedBy": "1",
            "changedDate": "2024-11-02T10:06:08+02:00",
            "statusChangedBy": null,
            "closedBy": null,
            "closedDate": null,
            "activityDate": "2024-11-02T10:06:08+02:00",
            "dateStart": null,
            "deadline": null,
            "startDatePlan": null,
            "endDatePlan": null,
            "guid": "{c2794da9-c7fe-404d-a709-ddab4578717a}",
            "xmlId": null,
            "commentsCount": null,
            "serviceCommentsCount": null,
            "allowChangeDeadline": "N",
            "allowTimeTracking": "N",
            "taskControl": "N",
            "addInReport": "N",
            "forkedByTemplateId": null,
            "timeEstimate": "0",
            "timeSpentInLogs": null,
            "matchWorkTime": "N",
            "forumTopicId": null,
            "forumId": null,
            "siteId": "s1",
            "subordinate": "Y",
            "exchangeModified": null,
            "exchangeId": null,
            "outlookVersion": "1",
            "viewedDate": null,
            "sorting": null,
            "durationFact": null,
            "isMuted": "N",
            "isPinned": "N",
            "isPinnedInGroup": "N",
            "flowId": null,
            "descriptionInBbcode": "Y",
            "status": "2",
            "statusChangedDate": "2024-11-02T10:06:08+02:00",
            "durationPlan": null,
            "durationType": "days",
            "favorite": "N",
            "groupId": "0",
            "auditors": [],
            "accomplices": [],
            "checklist": [],
            "group": [],
            "creator": {
                "id": "1",
                "name": "Viola",
                "link": "/company/personal/user/1/",
                "icon": "https://your-domain.bitrix24.com/b13743910/resize_cache/2267/c0120a8d7c10d63c83e32398d1ec4d9e/main/c7b/c7bd44b1babaa5448125dd97d038ce1b/d5fb56b94dc2c3cd8c006a2c595a4895.jpg",
                "workPosition": ""
            },
            "responsible": {
                "id": "1",
                "name": "Viola",
                "link": "/company/personal/user/1/",
                "icon": "https://your-domain.bitrix24.com/b13743910/resize_cache/2267/c0120a8d7c10d63c83e32398d1ec4d9e/main/c7b/c7bd44b1babaa5448125dd97d038ce1b/d5fb56b94dc2c3cd8c006a2c595a4895.jpg",
                "workPosition": ""
            },
            "accomplicesData": [],
            "auditorsData": [],
            "newCommentsCount": 0,
            "action": {
                "accept": false,
                "decline": false,
                "complete": true,
                "approve": false,
                "disapprove": false,
                "start": true,
                "pause": false,
                "delegate": true,
                "remove": true,
                "edit": true,
                "defer": true,
                "renew": false,
                "create": true,
                "changeDeadline": true,
                "checklistAddItems": true,
                "addFavorite": true,
                "deleteFavorite": false,
                "rate": true,
                "edit.originator": false,
                "checklist.reorder": true,
                "elapsedtime.add": true,
                "dayplan.timer.toggle": false,
                "edit.plan": true,
                "checklist.add": true,
                "favorite.add": true,
                "favorite.delete": false
            },
            "checkListTree": {
                "nodeId": 0,
                "fields": {
                    "id": null,
                    "copiedId": null,
                    "entityId": null,
                    "userId": 1,
                    "createdBy": null,
                    "parentId": null,
                    "title": "",
                    "sortIndex": null,
                    "displaySortIndex": "",
                    "isComplete": false,
                    "isImportant": false,
                    "completedCount": 0,
                    "members": [],
                    "attachments": []
                },
                "action": [],
                "descendants": []
            },
            "checkListCanAdd": true
        }
    },
    "time": {
        "start": 1758188171.142611,
        "finish": 1758188172.101309,
        "duration": 0.958698034286499,
        "processing": 0.9341180324554443,
        "date_start": "2025-09-18T12:36:11+03:00",
        "date_finish": "2025-09-18T12:36:12+03:00",
        "operating_reset_at": 1758188771,
        "operating": 0.9340989589691162
    }
}

Returned Data

#| || Name type | Description || || result object | Object with response data || || task object | Object with task description after the operation is performed || || time time | Information about the request execution time || |#

Error Handling

HTTP Status: 400

{
    "error": "ERROR_CORE",
    "error_description": "Task title is not specified\u003Cbr\u003E"
}

{% include notitle Error Handling %}

Possible Error Codes

#| || Code | Description | Value || || 100 | Could not find value for parameter {fields} (internal error) | Parameter fields is not passed or is empty || || ERROR_CORE | User specified in the "Responsible" field not found | The ID specified in RESPONSIBLE_ID does not correspond to an existing user || || ERROR_CORE | Responsible person not specified | The RESPONSIBLE_ID field is not filled || || ERROR_CORE | Task title not specified | The TITLE field is not filled || || ERROR_CORE | Required field {field_name} value not entered | A required custom field with the specified name is not filled || || ERROR_CORE | Incorrect status | An incorrect value is specified in the STATUS field || || ERROR_CORE | Task specified in the "Parent Task" field not found | The ID specified in PARENT_ID does not correspond to an existing task || || ERROR_CORE | The end date in scheduling is earlier than the start date | The date and time in the END_DATE_PLAN field is earlier than in START_DATE_PLAN || || ERROR_CORE | The specified task duration is too long | The date in the END_DATE_PLAN field is too far in the future || |#

{% include System Errors %}

Continue Learning