action peoplefinderspro_post_address_autocomplete { label: "Search" description: "###### *Click on the grey search box above, to view sample request/response objects for Address Autocomplete 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: DevAPIAddressAutoComplete\n\n2. Add search criteria to your request.\n ~~~html\n {\n \"Input\":\"1821 Q\"\n }\n ~~~\n\n3. Submit your search\n\nThe JSON request should have parts of the address.\n\n+ Input = null (optional, string) ... address." provider: peoplefinderspro method: POST path: "/address/autocomplete" encoding: json input: { type: "object" properties: { Input: { type: "string" } "galaxy-ap-name": { type: "string" } "galaxy-ap-password": { type: "string" } "galaxy-search-type": { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }