get https://app.ondorse.co/api/applications
Get all applications for current user.
Filtering
Filter applications using query parameters with format: field_name__operator=value.
Multiple filters can be combined.
Operators:
eq- equalsneq- not equalsin- in list (comma-separated values)contains- find if an element or a sublist are contained in a list. This also handles substring matchlt- less thangt- greater thanlte- less than or equalgte- greater than or equal
Special values:
- Use
nullfor null values - For
inoperator, use comma-separated values
Custom fields:
- Prefix with
custom_field_, e.g.,custom_field_my_field__eq=value
Filterable fields:
id,application_status,status_execution,status_review,risk_levelassignee_user_id,collect_status,campaign_id,workspace_id,waiting_on_actor_idexternal_reference,organization_name,country,legal_type,local_number, ìs_breaching_sla`- Any custom fields (with
custom_field_prefix)
Examples:
?status_execution__eq=done- Filter by execution status?country__eq=FRA- Filter by country?application_status__in=failed,ready_for_decision- Filter by multiple statuses?risk_level__gt=1- Filter by risk level greater than 1?organization_name__contains=Acme- Filter by organization name containing "Acme"?assignee_user_id__eq=null- Filter by null assignee?is_breaching_sla__eq=true- Filter by SLA breaching status?custom_field_text_field__eq=foobar- Filter by custom field?status_execution__eq=done&country__eq=FRA- Combine multiple filters