Use REST API endpoints generated from deployed quality pipelines. Submit data from external applications, workflows, or business systems to validate addresses, standardize data, geocode records, and match information without opening the pipeline designer. Use service endpoints to automate workflows with pipeline logic, integrate quality functions into portals, CRMs, onboarding systems, or ETL tools, and batch-process multiple records by API instead of manual file uploads.
The Services tab displays all deployed pipelines as service endpoints. Use the Deployed on filter to view services deployed on Cloud or Agent. Each service generates a unique REST API endpoint that you can call from your applications.
The Responses section shows error codes that occur if validation fails or required fields are missing, and the output schema based on the final step of the pipeline.
Submit data to a service endpoint
Each service requires a request body that matches the input schema of the pipeline's first step. The interface displays all required fields, example values, and expected data types.
Example request body:
{
"e2e_us_address_data": [
{
"AddressLine2": "string",
"AddressLine1": "string",
"FirmName": "string",
"StateProvince": "string",
"InputValue": "string",
"Postcode": "string",
"City": "string"
}
]
}
- Field names must match those defined in the pipeline's input step.
- You can submit multiple records in a single request.
- All values should be sent as strings unless otherwise specified in the pipeline schema.