Parse Service: Response - geo_addressing_sdk - 5.0

Geo Addressing SDK Developer Guide

Product type
Software
Portfolio
Locate
Product family
Geo Addressing
Product
Geo Addressing SDK
Version
5.0
Language
English
Product name
Geo Addressing SDK
Title
Geo Addressing SDK Developer Guide
Copyright
2023
First publish date
2007
Last updated
2024-09-12
Published on
2024-09-12T14:50:21.470801

Within the Addressing API, the Parse Service returns a list of results.

Addressing: Parse Example

In the Sample application, do the following:

  1. Navigate to Addressing v1 > Parse.
  2. Enter the Address "10 downing street london SW1A 2AA" and "GBR" as the Country.
  3. Click Submit and review the Response.
    {
      "status": "OK",
      "parsed": [
        {
          "classifications": [
            {
              "label": "street",
              "value": "DOWNING"
            },
            {
              "label": "city",
              "value": "LONDON"
            },
            {
              "label": "addressNumber",
              "value": "10"
            },
            {
              "label": "postalCode",
              "value": "SW1A 2AA"
            },
            {
              "label": "country",
              "value": "GBR"
            },
            {
              "label": "streetSuffix",
              "value": "STREET"
            }
          ]
        }
      ]
    }