Stay organized with collections
Save and categorize content based on your preferences.
Version 4.0.25.14 (latest)
Search email credentials
Returns all credentials_email records that match the given search criteria.
If multiple search params are given and filter_or is FALSE or not specified,
search params are combined in a logical AND operation.
Only rows that match all search param criteria will be returned.
If filter_or is TRUE, multiple search params are combined in a logical OR operation.
Results will include rows that match any of the search criteria.
String search params use case-insensitive matching.
String search params can contain % and '_' as SQL LIKE pattern match wildcard expressions.
example="dan%" will match "danger" and "Danzig" but not "David"
example="D_m%" will match "Damage" and "dump"
Integer search params can accept a single value or a comma separated list of values. The multiple
values will be combined under a logical OR operation - results will match at least one of
the given values.
Most search params can accept "IS NULL" and "NOT NULL" as special expressions to match
or exclude (respectively) rows where the column is null.
Boolean search params accept only "true" and "false" as values.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],[],null,["# Search CredentialsEmail\n\nVersion 4.0.25.14 (latest)\n\n### Search email credentials\n\nReturns all credentials_email records that match the given search criteria.\n\nIf multiple search params are given and `filter_or` is FALSE or not specified,\nsearch params are combined in a logical AND operation.\nOnly rows that match *all* search param criteria will be returned.\n\nIf `filter_or` is TRUE, multiple search params are combined in a logical OR operation.\nResults will include rows that match **any** of the search criteria.\n\nString search params use case-insensitive matching.\nString search params can contain `%` and '_' as SQL LIKE pattern match wildcard expressions.\nexample=\"dan%\" will match \"danger\" and \"Danzig\" but not \"David\"\nexample=\"D_m%\" will match \"Damage\" and \"dump\"\n\nInteger search params can accept a single value or a comma separated list of values. The multiple\nvalues will be combined under a logical OR operation - results will match at least one of\nthe given values.\n\nMost search params can accept \"IS NULL\" and \"NOT NULL\" as special expressions to match\nor exclude (respectively) rows where the column is null.\n\nBoolean search params accept only \"true\" and \"false\" as values.\n\nCalls to this endpoint may be denied by [Looker (Google Cloud core)](https://cloud.google.com/looker/docs/r/looker-core/overview).\n\nRequest\n-------\n\nGET /credentials_email/search \nDatatype \nDescription \nRequest \nHTTP Request \nquery \nHTTP Query \nExpand HTTP Query definition... \nfields \nstring \nRequested fields. \nlimit \ninteger \nNumber of results to return (used with \\`offset\\`). \noffset \ninteger \nNumber of results to skip before returning any (used with \\`limit\\`). \nsorts \nstring \nFields to sort by. \nid \nstring \nMatch credentials_email id. \nemail \nstring \nMatch credentials_email email. \nemails \nstring \nFind credentials_email that match given emails. \nfilter_or \nboolean \nCombine given search criteria in a boolean OR expression.\n\nResponse\n--------\n\n### 200: Credentials Email\n\nDatatype \nDescription \n(array) \n[CredentialsEmailSearch](/looker/docs/reference/looker-api/latest/types/CredentialsEmailSearch)\\[\\] \ncan \n*lock* \nobject \nOperations the current user is able to perform on this object \ncreated_at \n*lock* \nstring \nTimestamp for the creation of this credential \nemail \nstring \nEMail address used for user login \nforced_password_reset_at_next_login \nboolean \nForce the user to change their password upon their next login \nuser_id \n*lock* \nstring \nUnique Id of the user \nis_disabled \n*lock* \nboolean \nHas this credential been disabled? \nlogged_in_at \n*lock* \nstring \nTimestamp for most recent login using credential \npassword_reset_url \n*lock* \nstring \nUrl with one-time use secret token that the user can use to reset password \naccount_setup_url \n*lock* \nstring \nUrl with one-time use secret token that the user can use to setup account \npassword_reset_url_expired \n*lock* \nboolean \nIs password_reset_url expired or not present? \naccount_setup_url_expired \n*lock* \nboolean \nIs account_setup_url expired or not present? \ntype \n*lock* \nstring \nShort name for the type of this kind of credential \nurl \n*lock* \nstring \nLink to get this item \nuser_url \n*lock* \nstring \nLink to get this user\n\n### 400: Bad Request\n\nDatatype \nDescription \n(object) \n[Error](/looker/docs/reference/looker-api/latest/types/Error) \nmessage \n*lock* \nstring \nError details \ndocumentation_url \n*lock* \nstring \nDocumentation link\n\n### 403: Permission Denied\n\nDatatype \nDescription \n(object) \n[Error](/looker/docs/reference/looker-api/latest/types/Error) \nmessage \n*lock* \nstring \nError details \ndocumentation_url \n*lock* \nstring \nDocumentation link\n\n### 404: Not Found\n\nDatatype \nDescription \n(object) \n[Error](/looker/docs/reference/looker-api/latest/types/Error) \nmessage \n*lock* \nstring \nError details \ndocumentation_url \n*lock* \nstring \nDocumentation link\n\n### 429: Too Many Requests\n\nDatatype \nDescription \n(object) \n[Error](/looker/docs/reference/looker-api/latest/types/Error) \nmessage \n*lock* \nstring \nError details \ndocumentation_url \n*lock* \nstring \nDocumentation link"]]