Get Data on Current Tasks of the Element rpa.item.getTasks
If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the MCP server so that the assistant can utilize the official REST documentation.
Scope:
rpaWho can execute the method: any user
DEPRECATED
The development of this method has been halted. Use Smart processes as an alternative to this functionality.
This method retrieves data on the current tasks of the element with the identifier id for the process with the identifier typeId.
Method Parameters
|
Name |
Description |
|
typeId |
Identifier of the process |
|
id |
Identifier of the element |
Response Handling
HTTP Status: 200
{
"tasks": [
{
"id": "93",
"title": "asdf",
"description": "",
"userId": 1,
"data": {
"participantJoint": "or",
"isMine": true,
"controls": {
"BUTTONS": [
{
"TYPE": "submit",
"TARGET_USER_STATUS": 3,
"NAME": "complete",
"VALUE": "Y",
"TEXT": "Save",
"COLOR": "3bc8f5"
}
]
},
"type": "RpaRequestActivity",
"url": "/rpa/task/id/93/",
"fieldsToShow": null,
"fieldsToSet": [
"Title"
],
"users": [
{
"id": 1,
"status": 0
}
]
},
"itemClassName": "BX.Rpa.Timeline.Task",
"users": {
"1": {
"id": "1",
"name": "Anton",
"secondName": "",
"lastName": "Gorbylev",
"title": null,
"workPosition": "",
"fullName": "Anton Gorbylev",
"link": "/company/personal/user/1/"
}
}
}
]
}
Continue Your Exploration
- Elements: Overview of Methods
- Add Process Element rpa.item.add
- Update Process Element rpa.item.update
- Get Information About the rpa.item.get Element
- Retrieve an Array of Process Elements rpa.item.list
- Delete Element rpa.item.delete
Copied
Previous
Next