Get Process Information by ID rpa.type.get
Scope:
rpaWho can execute the method: any user
This method retrieves information about a process by its id.
Method Parameters
Required parameters are marked with *
|
Name |
Description |
|
id* |
Identifier of the process |
Response Handling
HTTP status: 200
{
"type": {
"id": 1,
"title": "Process Name",
"image": "list",
"createdBy": 1,
"settings": [],
"permissions": [
{
"id": "1",
"entity": "TYPE",
"entityId": "1",
"accessCode": "UA",
"action": "ITEMS_CREATE",
"permission": "X"
}
]
}
}
Returned Data
|
Name |
Description |
|
id |
Identifier of the process |
|
title |
Name of the process |
|
image |
Icon identifier from the list |
|
createdBy |
Identifier of the user who created the process |
|
settings |
Set of process settings |
|
permissions |
Set of access permission settings for this process |
Continue Exploring
- Processes: Overview of Methods
- Create process rpa.type.add
- Update the process rpa.type.update
- Get a List of Processes with Their Fields rpa.type.list
- Delete process rpa.type.delete
Copied
Previous