Let the platform do the work

/pmse_Inbox/casesList GET

Overview

Returns a list with the processes for Process Management

Summary

This endpoint gets a list of Processes.

Request Arguments

Name Type Description Required
module_list string Identifier used to determine which status to filter against false
order_by string How to sort the returned records, in a comma delimited list with the direction appended to the column name after a colon. false
q string A search expression, will search on this module. Cannot be used at the same time as a filter expression or id. false
filter string The filter expression false
filter_id string Identifier for a preexisting filter. If filter is also set, the two filters are joined with an AND. false
max_num integer A maximum number of records to return. Default is 20. false
offset integer The number of records to skip over before records are returned. Default is 0. false
fields string Comma delimited list of fields to return false
deleted boolean Boolean to show deleted records in the result set. false

Response Arguments

Name Type Description
next_offset Integer Next offset
records <field>/<value> List of process attributes

Response

{
    {
        "next_offset":-1,
        "records":
        [
            {
                "id":"3922976c-284f-11e6-9f40-6c4008960436",
                "name":"ABC2",
                "date_entered":"2016-06-01T16:18:59-07:00",
                "date_modified":"2016-06-01T16:18:59-07:00",
                "modified_user_id":"1",
                "created_by":"1",
                "deleted":"0",
                "cas_id":"2",
                "cas_parent":"0",
                "cas_status":"IN PROGRESS",
		"pro_id":"6e172e2c-2842-11e6-a4bb-6c4008960436",
		"cas_title":"ABC2",
		"cas_custom_status":"",
		"cas_init_user":"1",
		"cas_create_date":"2016-06-01T16:18:59-07:00",
		"cas_update_date":"2016-06-01 23:18:59",
		"cas_finish_date":null,
		"cas_assigned_status":"UNASSIGNED",
		"cas_module":"Accounts",
		"team_id":"1",
		"team_set_id":"1",
		"assigned_user_id":"1",
		"assigned_user_name":"Administrator",
		"prj_id":"6e025038-2842-11e6-b4f7-6c4008960436",
		"prj_created_by":"1",
		"prj_module":"Accounts",
		"cas_sugar_module":"Accounts",
		"cas_sugar_object_id":"38beb03a-284f-11e6-b059-6c4008960436",
		"pro_title":"PD1",
		"prj_deleted":"0",
		"prj_user_id_full_name":"Administrator",
		"cas_user_id_full_name":"Sarah Smith"
            },
    } 
}