List import configurations
Import Configurations
List import configurations
Retrieve import configurations using GraphQL. Supports filtering by name, parser, and failure strategy.
POST
List import configurations
Query Structure
Filter Argument
All filters are passed inside thefilter argument. Each field accepts an input object with operators.
Available Filters
| Filter | Input Type | Operators | Description |
|---|---|---|---|
name | StringInputType | eq, ilike, like, in, between | Configuration name |
parser | ParserInputType | eq | xml, headless_csv, csv, edi, txt |
failure_strategy | FailureStrategyInputType | eq | skip_resource or abort |
created_at | DatetimeInputType | eq, from, to, between | Creation time |
Authorizations
OAuth 2.0 authentication. Use the client credentials or authorization code flow to obtain an access token.
The subdomain/tenant name identifying which tenant's data to access. Required for all API requests.
Body
application/json
GraphQL query string
Example:
"query($filter: ImportConfigurationFilterType) { import_configurations { all(filter: $filter) { edges { node { id name parser failure_strategy created_at } } } } }"
Query variables including the filter object
Example:
{ "filter": { "parser": { "eq": "csv" } } }
