Skip to main content

Returns

Returns a list of Endpoint Connection objects matching the given filters.

Example

endpoint_connections = galtea.endpoint_connections.list(
    product_ids=[product_id],
    sort_by_created_at="desc",
    limit=10,
)

Parameters

product_ids
list[string]
Filter by product IDs.
names
list[string]
Filter by exact endpoint connection names.
name
string
Filter by partial name match.
url
string
Filter by partial URL match.
types
list[string]
Filter by endpoint connection types. Valid values: INITIALIZATION, CONVERSATION, FINALIZATION.
http_methods
list[string]
Filter by HTTP methods. Valid values: GET, POST, PUT, PATCH, DELETE.
auth_types
list[string]
Filter by authentication types. Valid values: NONE, BEARER, API_KEY, BASIC.
from_created_at
str | int
Filter connections created at or after this timestamp. Accepts ISO 8601 string (e.g., '2024-01-01T00:00:00Z') or Unix timestamp in seconds.
to_created_at
str | int
Filter connections created at or before this timestamp. Accepts ISO 8601 string (e.g., '2024-12-31T23:59:59Z') or Unix timestamp in seconds.
sort_by_created_at
string
Sort by creation date. Valid values: asc, desc.
offset
int
Number of results to skip before starting to collect. Use for pagination.
limit
int
Maximum number of results to return in a single request.