Method
lookupFeatures POST
Copy POST

Returns the feature group deployed in the feature store project.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
Yes deploymentToken str A deployment token used to authenticate access to created deployments. This token only authorizes predictions on deployments in this project, so it can be safely embedded inside an application or website.
Yes deploymentId str A unique identifier for a deployment created under the project.
Yes queryData dict A dictionary where the key is the column name (e.g. a column with name 'user_id' in your dataset) mapped to the column mapping USER_ID that uniquely identifies the entity against which a prediction is performed and the value is the unique value of the same entity.
No limitResults int If provided, will limit the number of results to the value specified.
No resultColumns list If provided, will limit the columns present in each result to the columns specified in this list.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error
Prediction

Exceptions:

TYPE WHEN
DataNotFoundError

deploymentId is not found.

Language: