Python SDK methods for MultivariateCollections operations
Method | HTTP request | Description |
---|---|---|
get_multivariate_event_collection | GET /multivariate_event_collections/ | Get Multivariate Event Collection |
get_multivariate_event_collections | GET /multivariate_event_collections | Get Multivariate Event Collections |
lookup_multivariate_event_collection_bundle | POST /multivariate_event_collections//lookup | Lookup Multivariate Event Collection Bundle |
GetMultivariateEventCollectionResponse get_multivariate_event_collection(collection_ticker)Get Multivariate Event Collection Get a single multivariate event collection by ticker
Name | Type | Description | Notes |
---|---|---|---|
collection_ticker | str | Collection ticker |
Status code | Description |
---|---|
200 | Collection retrieved successfully |
401 | Unauthorized - authentication required |
404 | Resource not found |
500 | Internal server error |
GetMultivariateEventCollectionsResponse get_multivariate_event_collections(status=status)Get Multivariate Event Collections Get all multivariate event collections
Name | Type | Description | Notes |
---|---|---|---|
status | str | Filter by multivariate collection status | [optional] |
Status code | Description |
---|---|
200 | Collections retrieved successfully |
401 | Unauthorized - authentication required |
500 | Internal server error |
LookupBundleResponse lookup_multivariate_event_collection_bundle(collection_ticker, lookup_bundle_request)Lookup Multivariate Event Collection Bundle Lookup a bundle in a multivariate event collection
Name | Type | Description | Notes |
---|---|---|---|
collection_ticker | str | Collection ticker | |
lookup_bundle_request | LookupBundleRequest |
Status code | Description |
---|---|
200 | Bundle lookup successful |
400 | Bad request - invalid input |
401 | Unauthorized - authentication required |
404 | Resource not found |
500 | Internal server error |