Aurora Get Customer By Email
Looks up a customer in the Aurora ERP system using their email address. Use it when a flow needs a customer's Aurora record before continuing.
Looks up a customer in the Aurora ERP system using their email address. Use it when a flow needs a customer's Aurora record before continuing.
What it does
- Sends a customer lookup request to your Aurora ERP endpoint, authenticated with your Aurora auth token.
- Searches by the email address you provide and returns the matching customer record.
- Reports whether a customer was found through the "Customer Found?" output.
- If Aurora returns an error, it is passed back so the flow can handle it.
Requires an Aurora auth token and the Aurora API URL.
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| Auth Token | String | Yes | Aurora authentication token |
| API URL | String | Yes | Aurora API URL |
| Customer Email | String | Yes | Email address of the customer to look up |
Outputs
| Name | Type | Description |
|---|---|---|
| Customer Found? | Boolean | Whether a matching customer was found |
| Customer | Object | The matching customer record from Aurora |
Notes
- Returns the first matching customer only.
- If no customer matches the email, "Customer Found?" is false and no customer is returned.