action peoplefinderspro_post_email_enrich { label: "Search" description: "###### *Click on the grey search box above, to view sample request/response objects for Email Enrichment Search*\n\nPerform a search:\n\n1. Add your Access Profile username and password to the request headers.\n + galaxy-ap-name: [Key]\n + galaxy-ap-password: [Secret]\n + galaxy-search-type: DevAPIEmailID\n\n2. Add search criteria to your request.\n ~~~html\n {\n \"Email\":\"johnsmith@somedomain\"\n }\n ~~~\n\n3. Submit your search\n\nThe JSON request should have an email.\n\n+ Email = null (optional, string) ... E-mail address." provider: peoplefinderspro method: POST path: "/email/enrich" encoding: json input: { type: "object" properties: { Email: { type: "string" } "galaxy-ap-name": { type: "string" } "galaxy-ap-password": { type: "string" } "galaxy-search-type": { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }