Get all pipelines

GET {{baseUrl}}/pipelines?sort_by=id&sort_direction=asc&limit=<integer>&cursor=<string>

Returns data about all pipelines.

Request Params

KeyDatatypeRequiredDescription
sort_bystringThe field to sort by. Supported fields: id, update_time, add_time.
sort_directionstringThe sorting direction. Supported values: asc, desc.
limitstringFor pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed.
cursorstringFor pagination, the marker (an opaque string value) representing the first item on the next page

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;success&quot;:true,&quot;data&quot;:[{&quot;id&quot;:1,&quot;name&quot;:&quot;Pipeline Name&quot;,&quot;order_nr&quot;:1,&quot;is_deleted&quot;:false,&quot;is_deal_probability_enabled&quot;:true,&quot;add_time&quot;:&quot;2024-01-01T00:00:00Z&quot;,&quot;update_time&quot;:&quot;2024-01-01T00:00:00Z&quot;,&quot;is_selected&quot;:true}],&quot;additional_data&quot;:{&quot;next_cursor&quot;:&quot;eyJmaWVsZCI6ImlkIiwiZmllbGRWYWx1ZSI6Nywic29ydERpcmVjdGlvbiI6ImFzYyIsImlkIjo3fQ&quot;}}