Get 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 - equals
  • neq - not equals
  • in - in list (comma-separated values)
  • contains - find if an element or a sublist are contained in a list. This also handles substring match
  • lt - less than
  • gt - greater than
  • lte - less than or equal
  • gte - greater than or equal

Special values:

  • Use null for null values
  • For in operator, 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_level
  • assignee_user_id, collect_status, campaign_id, workspace_id, waiting_on_actor_id
  • external_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
Language
Credentials
Header