Get a List of Processes with Their Fields rpa.type.list

Scope: rpa

Who can execute the method: any user

The method will return an array of processes with their fields.

Method Parameters

Name
type

Description

select
array

Array of fields to output. By default, all fields are outputted.

order
object

List for sorting, where the key is the field and the value is ASC or DESC

filter
object

List for filtering

start
integer

This parameter is used for pagination.

The page size of results is always static — 50 records.

To select the second page of results, you need to pass the value 50. To select the third page of results — the value 100, and so on.

The formula for calculating the start parameter value:

start = (N - 1) * 50, where N is the desired page number

Response Handling

HTTP Status: 200

{
            "types": [
                {},
                {}
            ]
        }
        

Continue Exploring