List product configurations
Retrieve a paginated list of product configurations for the specified organization. Returns an array of product configuration objects containing configuration details, including environment, status, product information, and region. Supports pagination, sorting, and filtering via a JSON filter string.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The unique identifier of the organization
24^[0-9a-f]{24}$Query Parameters
Page number (default: 1)
x >= 1Items per page (default: 100, max: 100)
1 <= x <= 100Sorting field with optional suffix order (:asc or :desc). Use response property names. Valid fields: id, environment, created_at, active, product_id, region. Example: "product_id:asc" or "created_at:desc"
Comma-separated list of fields to include in each product configuration item. Selectable fields: id, environment, created_at, active, product_id, region. The field id is always included.
2048Filter product configurations by one or more criteria. Provide a JSON object with filter conditions. You can filter by any field returned in the response. Use comparison operators (eq, ne, gt, gte, lt, lte, in, nin, contains, startsWith, endsWith, between) and combine multiple conditions with logical operators (and, or). Maximum length: 5120 characters.
5120