Skip to main content

BulkPreviewResponse

Response body for POST /api/v1/geofences/preview (D-19: items field replaces rows).

items object[]required
  • Array [
  • indexIndex (integer)required
    input_addressInput Address (string)required
    statusStatus (string)required

    Possible values: [ok, dedup, error]

    normalized_address object
    anyOf
    string
    lat object
    anyOf
    number
    lng object
    anyOf
    number
    confidence object
    anyOf
    number
    dedup_match object
    anyOf
    object
    error_reason object
    anyOf
    string
    error_code object
    anyOf
    string
    tagsstring[]
  • ]
  • totalTotal (integer)required
    ok_countOk Count (integer)required
    dedup_countDedup Count (integer)required
    error_countError Count (integer)required
    BulkPreviewResponse
    {
    "items": [
    {
    "index": 0,
    "input_address": "string",
    "status": "ok",
    "normalized_address": "string",
    "lat": 0,
    "lng": 0,
    "confidence": 0,
    "dedup_match": {},
    "error_reason": "string",
    "error_code": "string",
    "tags": [
    "string"
    ]
    }
    ],
    "total": 0,
    "ok_count": 0,
    "dedup_count": 0,
    "error_count": 0
    }