Klaviyo Fetch Profile By Email
This action retrieves a Klaviyo profile ID for a specified customer email by querying the Klaviyo Profiles API.
See also the Klaviyo Profiles API reference
Inputs
Name | Type | Description |
---|---|---|
Klaviyo API Key | Credentials | Your Klaviyo Private API Key. |
Customer Email | String | Email address of the profile to fetch. |
Outputs
Name | Type | Description |
---|---|---|
Success | Boolean | true if a matching profile was found; otherwise false . |
Profile ID | String | The identifier of the fetched profile (present if Success is true ). |
Error Message | String | Error reason when lookup fails or no profile is found. |
Notes
- Returns an error when the API key or email input is missing.
- Retries up to three times on rate limits or server errors with exponential backoff.
- A missing profile yields
Success: false
and an appropriate error message.
Updated about 20 hours ago