Sometimes, zipcode and postal code lists may be very large (>10,000 codes), causing issues in API performance. You may pass in an alternate query string parameter in the GET calls, "&postcoderef=1" which will substitute the "condition_codes" array of zipcodes, with a key called "post_code_ref"an array of postcode list reference id's.
Usage
Code Block |
---|
Targeting Criteria Snippet Without Query String Parameter: GET /suppliers/v2/surveys/:survey_id { "qualification_code":229, "condition_code":[ "01234", "01235", "01236" ] } Targeting Criteria Snippet With Query String Parameter: GET /suppliers/v2/surveys/:survey_id?post_code_ref=1 { "qualification_code":229, "postcondition_code_ref":[ "a1bc0a0aa322ca" ] } GET /suppliers/v2/postcodes/a1bc0a0aa322ca { "01234", "01235", "01236" } |
...