action peoplefinderspro_post_phone_enrich { label: "Search" description: "###### *Click on the grey search box above, to view sample request/response objects for Phone Enrichment Search*\n\nPerform a search:\n\n1. Add your key and key secret to the request headers.\n + galaxy-ap-name: [Key]\n + galaxy-ap-password: [Secret]\n + galaxy-search-type: DevAPICallerID\n\n2. Add search criteria to your request.\n ~~~html\n {\n \"Phone\":\"(123) 456-7890\"\n }\n ~~~\n\n3. Submit your search\n\nThe JSON request should have a phone number.\n\n+ Phone = null (optional, string) ... Phone number (formats: ###-###-####, (###) ###-####)." provider: peoplefinderspro method: POST path: "/phone/enrich" encoding: json input: { type: "object" properties: { Phone: { type: "string" } "galaxy-ap-name": { type: "string" } "galaxy-ap-password": { type: "string" } "galaxy-search-type": { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }