From 3f0b0113431530572a15bbd5e26708d407730b40 Mon Sep 17 00:00:00 2001 From: christopher dartnell Date: Mon, 27 Oct 2025 12:15:19 +0100 Subject: [PATCH 1/9] attempt to clarify types --- specification/parameters/_index.yml | 8 +- .../parameters/localities/geocode_types.yml | 12 +- ...ed_types.yml => nearby_excluded_types.yml} | 2 +- .../{extended_types.yml => nearby_types.yml} | 2 +- specification/parameters/localities/types.yml | 30 +--- .../paths/localities/localitiesNearby.yml | 4 +- ...ities_autocomplete_collection_response.yml | 6 +- ..._localities_nearby_collection_response.yml | 144 +++++++++++++----- .../LocalitiesAutocompleteResponse.yml | 2 +- .../schemas/LocalitiesDetailsResponse.yml | 2 +- .../schemas/LocalitiesNearbyResponse.yml | 5 +- specification/schemas/LocalitiesTypes.yml | 25 ++- specification/schemas/LocalitiesTypesAll.yml | 9 ++ ...xtendedType.yml => LocalitiesTypesPoi.yml} | 2 +- .../schemas/LocalitiesTypesPoiAlias.yml | 14 ++ specification/schemas/_index.yml | 8 +- 16 files changed, 170 insertions(+), 105 deletions(-) rename specification/parameters/localities/{excluded_extended_types.yml => nearby_excluded_types.yml} (87%) rename specification/parameters/localities/{extended_types.yml => nearby_types.yml} (81%) create mode 100644 specification/schemas/LocalitiesTypesAll.yml rename specification/schemas/{LocalitiesNearbyExtendedType.yml => LocalitiesTypesPoi.yml} (98%) create mode 100644 specification/schemas/LocalitiesTypesPoiAlias.yml diff --git a/specification/parameters/_index.yml b/specification/parameters/_index.yml index 229e0606..a2daf5dc 100755 --- a/specification/parameters/_index.yml +++ b/specification/parameters/_index.yml @@ -66,12 +66,8 @@ localities_custom_description: $ref: "./localities/custom_description.yml" localities_data: $ref: "./localities/data.yml" -localities_excluded_extended_types: - $ref: "./localities/excluded_extended_types.yml" localities_excluded_types: $ref: "./localities/excluded_types.yml" -localities_extended_types: - $ref: "./localities/extended_types.yml" localities_extended: $ref: "./localities/extended.yml" localities_fields: @@ -90,6 +86,10 @@ localities_localities_components: $ref: "./localities/localities_components.yml" localities_location: $ref: "./localities/location.yml" +localities_nearby_excluded_types: + $ref: "./localities/nearby_excluded_types.yml" +localities_nearby_types: + $ref: "./localities/nearby_types.yml" localities_page: $ref: "./localities/page.yml" localities_public_id: diff --git a/specification/parameters/localities/geocode_types.yml b/specification/parameters/localities/geocode_types.yml index 7653ca1f..1becc49e 100644 --- a/specification/parameters/localities/geocode_types.yml +++ b/specification/parameters/localities/geocode_types.yml @@ -16,20 +16,10 @@ description: > * `address`: addresses * `admin_level`: most commonly used administrative areas * `country`: countries as whole point of interest - * `airport`: includes all medium sized to international sized airports - * `train_station`: includes all train stations - * `metro_station`: includes all metro stations - * `shopping`: includes shopping malls (or "shopping centers") - *may include private retail brands* - * `museum`: includes museums - * `tourist_attraction`: includes tourist attractions like the Eiffel tower - * `amusement_park`: includes amusement parks like Disneyland Paris - * `art_gallery`: includes art galleries - * `zoo`: includes zoos schema: - type: string default: locality|postal_code|address example: locality|admin_level - + $ref: "../../schemas/LocalitiesTypes.yml" in: query diff --git a/specification/parameters/localities/excluded_extended_types.yml b/specification/parameters/localities/nearby_excluded_types.yml similarity index 87% rename from specification/parameters/localities/excluded_extended_types.yml rename to specification/parameters/localities/nearby_excluded_types.yml index 091c3d8b..3d79aed4 100644 --- a/specification/parameters/localities/excluded_extended_types.yml +++ b/specification/parameters/localities/nearby_excluded_types.yml @@ -5,5 +5,5 @@ description: > Multiple types can be passed using the pipe character (`|`) as a separator. For example: `excluded_types=business.food_and_drinks.fast_food|business.food_and_drinks.pub`. schema: - $ref: "../../schemas/LocalitiesNearbyExtendedType.yml" + $ref: "../../schemas/LocalitiesTypesPoi.yml" in: query diff --git a/specification/parameters/localities/extended_types.yml b/specification/parameters/localities/nearby_types.yml similarity index 81% rename from specification/parameters/localities/extended_types.yml rename to specification/parameters/localities/nearby_types.yml index 1445b88b..7eb3f269 100644 --- a/specification/parameters/localities/extended_types.yml +++ b/specification/parameters/localities/nearby_types.yml @@ -4,5 +4,5 @@ description: > Multiple types can be passed using the pipe character (`|`) as a separator. For example: `types=business.shop|medical.pharmacy|business.finance.bank`. schema: - $ref: "../../schemas/LocalitiesNearbyExtendedType.yml" + $ref: "../../schemas/LocalitiesTypesPoi.yml" in: query diff --git a/specification/parameters/localities/types.yml b/specification/parameters/localities/types.yml index 200ae790..91c35993 100644 --- a/specification/parameters/localities/types.yml +++ b/specification/parameters/localities/types.yml @@ -1,32 +1,16 @@ name: types description: > The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator. - * `city`: includes city localities - * `town`: includes town localities - * `village`: includes village localities - * `hamlet`: includes hamlet localities - * `borough`: includes borough localities - * `suburb`: includes suburb localities - * `quarter`: includes quarter localities - * `neighbourhood`: includes neighbourhood localities - * `locality`: an alias that groups all localities (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`) - * `postal_code`: publicly-used postal codes around the world - * `address`: addresses - * `admin_level`: most commonly used administrative areas - * `country`: countries as whole point of interest - * `airport`: includes all medium sized to international sized airports - * `train_station`: includes all train stations - * `metro_station`: includes all metro stations - * `shopping`: includes shopping malls (or "shopping centers") - *may include private retail brands* - * `museum`: includes museums - * `tourist_attraction`: includes tourist attractions like the Eiffel tower - * `amusement_park`: includes amusement parks like Disneyland Paris - * `art_gallery`: includes art galleries - * `zoo`: includes zoos + For a complete list of types supported, please see [All Types](#/schemas/LocalitiesTypesAll) schema: - type: string default: locality|postal_code example: locality|airport|admin_level + $ref: "../../schemas/LocalitiesTypesAll.yml" + writeOnly: true +# anyOf: +# - $ref: "../../schemas/LocalitiesTypes.yml" +# - $ref: "../../schemas/LocalitiesTypesPoi.yml" + in: query diff --git a/specification/paths/localities/localitiesNearby.yml b/specification/paths/localities/localitiesNearby.yml index 89c3513a..1c3311ba 100644 --- a/specification/paths/localities/localitiesNearby.yml +++ b/specification/paths/localities/localitiesNearby.yml @@ -11,7 +11,7 @@ security: - PrivateApiKeyAuth: [] - PrivateApiKeyHeaderAuth: [] parameters: - - $ref: "../../parameters/localities/extended_types.yml" + - $ref: "../../parameters/localities/nearby_types.yml" - name: location description: > Center of the search circle. @@ -50,7 +50,7 @@ parameters: maximum: 30 in: query example: 15 - - $ref: "../../parameters/localities/excluded_extended_types.yml" + - $ref: "../../parameters/localities/nearby_excluded_types.yml" responses: "200": description: Points of interests surrounding `location` and matching provided `types`, sorted by distance to `location`. diff --git a/specification/responses/woosmap_http_localities_autocomplete_collection_response.yml b/specification/responses/woosmap_http_localities_autocomplete_collection_response.yml index bc123d63..cbceb800 100644 --- a/specification/responses/woosmap_http_localities_autocomplete_collection_response.yml +++ b/specification/responses/woosmap_http_localities_autocomplete_collection_response.yml @@ -24,11 +24,11 @@ "matched_substrings": { "description": [{ "offset": 0, "length": 4 }] }, }, { - "public_id": "4Ew1mvbob3vobGMQ44AdRNY/5xE=", + "public_id": "52MnrbHVWH21CLWH8VY/YWKhqeM=", "type": "locality", "types": ["locality", "village"], - "description": "Little London, Hampshire, United Kingdom", - "matched_substrings": { "description": [{ "offset": 7, "length": 4 }] }, + "description": "London Apprentice, Cornwall, United Kingdom", + "matched_substrings": { "description": [{ "offset": 0, "length": 4 }] }, }, { "public_id": "S/5AkUmMBhX35qVI2jR38+dALwk=", diff --git a/specification/responses/woosmap_http_localities_nearby_collection_response.yml b/specification/responses/woosmap_http_localities_nearby_collection_response.yml index 7a7b8a24..fe1767c7 100644 --- a/specification/responses/woosmap_http_localities_nearby_collection_response.yml +++ b/specification/responses/woosmap_http_localities_nearby_collection_response.yml @@ -3,10 +3,11 @@ "results": [ { - "public_id": "rYahq2MbEXWVnGyH5LU0buEdd80=", - "types": ["point_of_interest"], + "public_id": "cG9pOnVzOmJ1c2luZXNzLmZvb2RfYW5kX2RyaW5rcy5mYXN0X2Zvb2Q6ZTc2ZDA1YzBiM2M0M2NmNmVkNTJjNGQyZDFiZDE3Nzc0OTZkNjlmOA==", + "types": ["point_of_interest", "business.food_and_drinks.fast_food"], "categories": ["business.food_and_drinks.fast_food"], "name": "Pret A Manger", + "formatted_address": "Broadway, New York", "geometry": { "location": @@ -18,16 +19,26 @@ "types": ["country", "administrative_area_level_0", "division_level_0"], "long_name": "United States", - "short_name": "us", + "short_name": "US", + }, + { + "types": ["locality"], + "long_name": "New York", + "short_name": "New York", + }, + { + "types": ["route"], + "long_name": "Broadway", + "short_name": "Broadway", }, ], - "formatted_address": "Broadway, New York", }, { - "public_id": "VBHpz2xLZsm7GQtpO7dvDNbfijY=", - "types": ["point_of_interest"], + "public_id": "cG9pOnVzOmJ1c2luZXNzLmZvb2RfYW5kX2RyaW5rcy5mYXN0X2Zvb2Q6MzBlMGYxMzVhNGUzZDQ4MzRiMmNlNDMzMWJiYjZkOTY0MWJhN2E0Zg==", + "types": ["point_of_interest", "business.food_and_drinks.fast_food"], "categories": ["business.food_and_drinks.fast_food"], "name": "Dunkin'", + "formatted_address": "Broadway, New York", "geometry": { "location": { "lat": 40.71602115951586, "lng": -74.00494482664695 }, @@ -38,16 +49,26 @@ "types": ["country", "administrative_area_level_0", "division_level_0"], "long_name": "United States", - "short_name": "us", + "short_name": "US", + }, + { + "types": ["locality"], + "long_name": "New York", + "short_name": "New York", + }, + { + "types": ["route"], + "long_name": "Broadway", + "short_name": "Broadway", }, ], - "formatted_address": "Broadway, New York", }, { - "public_id": "1uUpAmNtGKfo1rJeLgR91j/+Qw4=", - "types": ["point_of_interest"], + "public_id": "cG9pOnVzOmJ1c2luZXNzLmZvb2RfYW5kX2RyaW5rcy5yZXN0YXVyYW50OmJlMWNkMTE2ZDQwM2E0Y2YwNGQ5NWQ2OTlmZWRmM2FhZTExNGU3ZWY=", + "types": ["point_of_interest", "business.food_and_drinks.restaurant"], "categories": ["business.food_and_drinks.restaurant"], "name": "Chambers", + "formatted_address": "Chambers Street, New York", "geometry": { "location": { "lat": 40.71461844801976, "lng": -74.00754036678366 }, @@ -58,14 +79,23 @@ "types": ["country", "administrative_area_level_0", "division_level_0"], "long_name": "United States", - "short_name": "us", + "short_name": "US", + }, + { + "types": ["locality"], + "long_name": "New York", + "short_name": "New York", + }, + { + "types": ["route"], + "long_name": "Chambers Street", + "short_name": "Chambers Street", }, ], - "formatted_address": "Chambers Street, New York", }, { - "public_id": "Czo2fiFo8oeskI9auvuCO6SFpUc=", - "types": ["point_of_interest"], + "public_id": "cG9pOnVzOmJ1c2luZXNzLnNob3AuZ3JvY2VyeTo1YTczMjYxOTQyYjVlZmUwOGEzZjQ1NGZmMTMwMmJjNjA4ODE3NmRk", + "types": ["point_of_interest", "business.shop.grocery"], "categories": ["business.shop.grocery"], "name": "City Hall Oasis", "geometry": @@ -85,15 +115,16 @@ "types": ["country", "administrative_area_level_0", "division_level_0"], "long_name": "United States", - "short_name": "us", + "short_name": "US", }, ], }, { - "public_id": "emXdi2D7RXOpIthsEyKVGBYZVSc=", - "types": ["point_of_interest"], + "public_id": "cG9pOnVzOmJ1c2luZXNzLmZpbmFuY2UuYmFuazpiOGY5MDE4Nzc2ZDZjNmEwZTljOGM4YWM0OTAxZWZlNzNmODZkM2M3", + "types": ["point_of_interest", "business.finance.bank"], "categories": ["business.finance.bank"], "name": "Citibank", + "formatted_address": "Broadway, New York", "geometry": { "location": { "lat": 40.7130414767567, "lng": -74.0074818610995 } }, "address_components": @@ -102,14 +133,23 @@ "types": ["country", "administrative_area_level_0", "division_level_0"], "long_name": "United States", - "short_name": "us", + "short_name": "US", + }, + { + "types": ["locality"], + "long_name": "New York", + "short_name": "New York", + }, + { + "types": ["route"], + "long_name": "Broadway", + "short_name": "Broadway", }, ], - "formatted_address": "Broadway, New York", }, { - "public_id": "c5rIR48wx55zG9RmeFYI7yujDwg=", - "types": ["point_of_interest"], + "public_id": "cG9pOnVzOmJ1c2luZXNzLmZvb2RfYW5kX2RyaW5rcy5yZXN0YXVyYW50OmQzMTMzZTJkODdiOGJjMGE3ZjI2YTdiMWVjYTZlZmI1MjQyYWE3MTE=", + "types": ["point_of_interest", "business.food_and_drinks.restaurant"], "categories": ["business.food_and_drinks.restaurant"], "name": "Saffron", "geometry": @@ -122,13 +162,13 @@ "types": ["country", "administrative_area_level_0", "division_level_0"], "long_name": "United States", - "short_name": "us", + "short_name": "US", }, ], }, { - "public_id": "95FQZAdnETzbfFTEFVb/oofxJ4U=", - "types": ["point_of_interest"], + "public_id": "cG9pOnVzOmJ1c2luZXNzLmZvb2RfYW5kX2RyaW5rcy5yZXN0YXVyYW50OmQ1NjMyN2RiM2EyNWJlYmIwNjJjZjNlYWYwMDE3ZDIyYzEyNWNlMjY=", + "types": ["point_of_interest", "business.food_and_drinks.restaurant"], "categories": ["business.food_and_drinks.restaurant"], "name": "Gran Morsi", "geometry": @@ -141,15 +181,16 @@ "types": ["country", "administrative_area_level_0", "division_level_0"], "long_name": "United States", - "short_name": "us", + "short_name": "US", }, ], }, { - "public_id": "9p4aCztWGDnOAUgv2JZKu8So+G8=", - "types": ["point_of_interest"], + "public_id": "cG9pOnVzOmJ1c2luZXNzLmZvb2RfYW5kX2RyaW5rcy5iYXI6MDE5ZGUzNTdiZDkyNzAyZDM4ZDUyOWQ0YmJiZjBmODQ5YWEzZmY1NA==", + "types": ["point_of_interest", "business.food_and_drinks.bar"], "categories": ["business.food_and_drinks.bar"], "name": "Bon Courage", + "formatted_address": "Reade Street, New York", "geometry": { "location": { "lat": 40.71541472882126, "lng": -74.00719193106873 }, @@ -160,16 +201,26 @@ "types": ["country", "administrative_area_level_0", "division_level_0"], "long_name": "United States", - "short_name": "us", + "short_name": "US", + }, + { + "types": ["locality"], + "long_name": "New York", + "short_name": "New York", + }, + { + "types": ["route"], + "long_name": "Reade Street", + "short_name": "Reade Street", }, ], - "formatted_address": "Reade Street, New York", }, { - "public_id": "eFFoZUgHxyJJNH+Hpm2MbBXPg5Y=", - "types": ["point_of_interest"], + "public_id": "cG9pOnVzOmJ1c2luZXNzLmZvb2RfYW5kX2RyaW5rcy5mYXN0X2Zvb2Q6OGIyNDY5MDM4M2JhYzE1NmY4OGRiMGQzYmIyYzNjMTVmOTk0NDQwZQ==", + "types": ["point_of_interest", "business.food_and_drinks.fast_food"], "categories": ["business.food_and_drinks.fast_food"], "name": "Burger King", + "formatted_address": "Broadway, New York", "geometry": { "location": { "lat": 40.71619516782573, "lng": -74.00480635760651 }, @@ -180,16 +231,26 @@ "types": ["country", "administrative_area_level_0", "division_level_0"], "long_name": "United States", - "short_name": "us", + "short_name": "US", + }, + { + "types": ["locality"], + "long_name": "New York", + "short_name": "New York", + }, + { + "types": ["route"], + "long_name": "Broadway", + "short_name": "Broadway", }, ], - "formatted_address": "Broadway, New York", }, { - "public_id": "1guamo/V7gSn6KGZgCtcam1bHr4=", - "types": ["point_of_interest"], + "public_id": "cG9pOnVzOmJ1c2luZXNzLnRoZWF0cmU6MTU1Yjk5YmEwY2FiYzIzZjYxYWYyYTViYzI0ZDViYTVlNmVmZTAwNA==", + "types": ["point_of_interest", "business.theatre"], "categories": ["business.theatre"], "name": "The Flea", + "formatted_address": "Thomas Street, New York", "geometry": { "location": { "lat": 40.71609349534023, "lng": -74.00589281989586 }, @@ -200,10 +261,19 @@ "types": ["country", "administrative_area_level_0", "division_level_0"], "long_name": "United States", - "short_name": "us", + "short_name": "US", + }, + { + "types": ["locality"], + "long_name": "New York", + "short_name": "New York", + }, + { + "types": ["route"], + "long_name": "Thomas Street", + "short_name": "Thomas Street", }, ], - "formatted_address": "Thomas Street, New York", }, ], "pagination": { "previous_page": 2, "next_page": 4 }, diff --git a/specification/schemas/LocalitiesAutocompleteResponse.yml b/specification/schemas/LocalitiesAutocompleteResponse.yml index 1e4c2fdb..2aaecb64 100644 --- a/specification/schemas/LocalitiesAutocompleteResponse.yml +++ b/specification/schemas/LocalitiesAutocompleteResponse.yml @@ -10,7 +10,7 @@ properties: description: An array containing the types of the result type: array items: - $ref: "./LocalitiesTypes.yml" + $ref: "./LocalitiesTypesAll.yml" type: deprecated: true description: this field might be removed in the future, please use the `types` field which is more exhaustive diff --git a/specification/schemas/LocalitiesDetailsResponse.yml b/specification/schemas/LocalitiesDetailsResponse.yml index 8079342a..e2c644b5 100644 --- a/specification/schemas/LocalitiesDetailsResponse.yml +++ b/specification/schemas/LocalitiesDetailsResponse.yml @@ -22,7 +22,7 @@ properties: description: available localities types type: array items: - $ref: "./LocalitiesTypes.yml" + $ref: "./LocalitiesTypesAll.yml" geometry: description: The location of the PostalCode, in latitude and longitude, eventually associated with a Viewport and a shape. type: object diff --git a/specification/schemas/LocalitiesNearbyResponse.yml b/specification/schemas/LocalitiesNearbyResponse.yml index 726e5f27..d04b07b3 100644 --- a/specification/schemas/LocalitiesNearbyResponse.yml +++ b/specification/schemas/LocalitiesNearbyResponse.yml @@ -5,8 +5,9 @@ properties: types: description: An array containing the types of the result. type: array + example: ["point_of_interest", "transit.station.rail.train", "train_station"] items: - $ref: "./LocalitiesNearbyExtendedType.yml" + $ref: "./LocalitiesTypesPoi.yml" name: description: The name of the result. type: string @@ -32,6 +33,6 @@ properties: type: array deprecated: true items: - $ref: "./LocalitiesNearbyExtendedType.yml" + $ref: "./LocalitiesTypesPoi.yml" formatted_address: $ref: "./FormattedAddress.yml" \ No newline at end of file diff --git a/specification/schemas/LocalitiesTypes.yml b/specification/schemas/LocalitiesTypes.yml index 3021ff54..406c01e6 100644 --- a/specification/schemas/LocalitiesTypes.yml +++ b/specification/schemas/LocalitiesTypes.yml @@ -1,7 +1,14 @@ -title: LocalitiesTypes +title: GenericTypes type: string -description: Contains the type of the result. +description: > + Common types unrelated to points of interest. + The `locality` type is an alias that groups all types of settlements (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`) enum: + - country + - admin_level + - postal_code + - address + - route - locality - city - town @@ -11,17 +18,3 @@ enum: - suburb - quarter - neighbourhood - - postal_code - - admin_level - - airport - - train_station - - metro_station - - shopping - - museum - - zoo - - amusement_park - - art_gallery - - tourist_attraction - - country - - address - - route diff --git a/specification/schemas/LocalitiesTypesAll.yml b/specification/schemas/LocalitiesTypesAll.yml new file mode 100644 index 00000000..47e4776e --- /dev/null +++ b/specification/schemas/LocalitiesTypesAll.yml @@ -0,0 +1,9 @@ +title: LocalitiesTypesAll +type: string +description: > + All supported types: any of [GeneralTypes](#/schemas/LocalitiesTypes), [PoiTypes](#/schemas/LocalitiesTypesPoi) or [PoiAlias](#/schemas/LocalitiesTypesPoiAlias) +# writeOnly: true +anyOf: + - $ref: "./LocalitiesTypes.yml" + - $ref: "./LocalitiesTypesPoi.yml" + - $ref: "./LocalitiesTypesPoiAlias.yml" diff --git a/specification/schemas/LocalitiesNearbyExtendedType.yml b/specification/schemas/LocalitiesTypesPoi.yml similarity index 98% rename from specification/schemas/LocalitiesNearbyExtendedType.yml rename to specification/schemas/LocalitiesTypesPoi.yml index d9e64b5f..98b76d25 100644 --- a/specification/schemas/LocalitiesNearbyExtendedType.yml +++ b/specification/schemas/LocalitiesTypesPoi.yml @@ -1,4 +1,4 @@ -title: LocalitiesNearbyExtendedType +title: PoiTypes type: string enum: - 'point_of_interest' diff --git a/specification/schemas/LocalitiesTypesPoiAlias.yml b/specification/schemas/LocalitiesTypesPoiAlias.yml new file mode 100644 index 00000000..cd2521d0 --- /dev/null +++ b/specification/schemas/LocalitiesTypesPoiAlias.yml @@ -0,0 +1,14 @@ +title: PoiAliases +type: string +description: aliases for some point_of_interest types +deprecated: true +enum: + - airport + - train_station + - metro_station + - shopping + - museum + - zoo + - amusement_park + - art_gallery + - tourist_attraction diff --git a/specification/schemas/_index.yml b/specification/schemas/_index.yml index 37c10683..10dd1feb 100644 --- a/specification/schemas/_index.yml +++ b/specification/schemas/_index.yml @@ -120,6 +120,12 @@ LocalitiesStatus: $ref: "./LocalitiesStatus.yml" LocalitiesTypes: $ref: "./LocalitiesTypes.yml" +LocalitiesTypesAll: + $ref: "./LocalitiesTypesAll.yml" +LocalitiesTypesPoi: + $ref: "./LocalitiesTypesPoi.yml" +LocalitiesTypesPoiAlias: + $ref: "./LocalitiesTypesPoiAlias.yml" LocalitiesGeocodeCollectionResponse: $ref: "./LocalitiesGeocodeCollectionResponse.yml" LocalitiesGeocodeResponse: @@ -130,8 +136,6 @@ LocalitiesNearbyCollectionResponse: $ref: "./LocalitiesNearbyCollectionResponse.yml" LocalitiesNearbyResponse: $ref: "./LocalitiesNearbyResponse.yml" -LocalitiesNearbyExtendedType: - $ref: "./LocalitiesNearbyExtendedType.yml" # Address AddressAutocompleteCollectionResponse: From dc8ff3832fff9aa696567c01503426b8c9cdb291 Mon Sep 17 00:00:00 2001 From: galela Date: Mon, 27 Oct 2025 16:21:05 +0100 Subject: [PATCH 2/9] fix: Correct Schema Titles and more descriptive info --- ...ttp_parameters_localitiesautocomplete.html | 52 +- ..._http_parameters_localitiesautocomplete.md | 25 +- ...map_http_parameters_localitiesgeocode.html | 21 - ...osmap_http_parameters_localitiesgeocode.md | 9 - ...alitiesautocompletecollectionresponse.html | 6 +- ...ocalitiesautocompletecollectionresponse.md | 6 +- ...schema_localitiesautocompleteresponse.html | 6 +- ...p_schema_localitiesautocompleteresponse.md | 2 +- ...ttp_schema_localitiesnearbyextendedtype.md | 10 - ..._http_schema_localitiesnearbyresponse.html | 26 +- ...ap_http_schema_localitiesnearbyresponse.md | 18 +- .../woosmap_http_schema_localitiestypes.html | 7 +- .../woosmap_http_schema_localitiestypes.md | 2 +- ...oosmap_http_schema_localitiestypesall.html | 37 + .../woosmap_http_schema_localitiestypesall.md | 12 + ...osmap_http_schema_localitiestypespoi.html} | 20 +- .../woosmap_http_schema_localitiestypespoi.md | 12 + ...p_http_schema_localitiestypespoialias.html | 42 + ...map_http_schema_localitiestypespoialias.md | 12 + dist/merged-woosmap-openapi3.json | 257 +++-- dist/woosmap-openapi3.json | 257 +++-- dist/woosmap-openapi3.yml | 263 +++-- dist/woosmap-postman.json | 988 +++++++++--------- specification/parameters/localities/types.yml | 17 +- specification/schemas/LocalitiesTypes.yml | 7 +- specification/schemas/LocalitiesTypesAll.yml | 4 +- specification/schemas/LocalitiesTypesPoi.yml | 4 +- .../schemas/LocalitiesTypesPoiAlias.yml | 11 +- 28 files changed, 1100 insertions(+), 1033 deletions(-) delete mode 100644 dist/documentation/schemas/woosmap_http_schema_localitiesnearbyextendedtype.md create mode 100644 dist/documentation/schemas/woosmap_http_schema_localitiestypesall.html create mode 100644 dist/documentation/schemas/woosmap_http_schema_localitiestypesall.md rename dist/documentation/schemas/{woosmap_http_schema_localitiesnearbyextendedtype.html => woosmap_http_schema_localitiestypespoi.html} (58%) create mode 100644 dist/documentation/schemas/woosmap_http_schema_localitiestypespoi.md create mode 100644 dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html create mode 100644 dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.md diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.html b/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.html index 50ced603..004cc81f 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.html +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.html @@ -120,52 +120,14 @@

radius

  • types

    - The types of suggestion to return. Multiple types can be passed using the - pipe character (|) as a separator. + Specifies the types of suggestions to return in the query. Multiple types + can be combined using the pipe character (|) as a separator. + This parameter supports a wide range of locality classifications, + including: - Standard locality types (e.g., cities, administrative areas, + postal codes) - Points of Interest (POI) categories - POI aliases These + classifications enable flexible geographic data representation and + querying.

    -
      -
    • city: includes city localities
    • -
    • town: includes town localities
    • -
    • village: includes village localities
    • -
    • hamlet: includes hamlet localities
    • -
    • borough: includes borough localities
    • -
    • suburb: includes suburb localities
    • -
    • quarter: includes quarter localities
    • -
    • neighbourhood: includes neighbourhood localities
    • -
    • - locality: an alias that groups all localities - (city, town, village, - hamlet, borough, suburb, - quarter and neighbourhood) -
    • -
    • - postal_code: publicly-used postal codes around the world -
    • -
    • address: addresses
    • -
    • admin_level: most commonly used administrative areas
    • -
    • country: countries as whole point of interest
    • -
    • - airport: includes all medium sized to international sized - airports -
    • -
    • train_station: includes all train stations
    • -
    • metro_station: includes all metro stations
    • -
    • - shopping: includes shopping malls (or "shopping centers") - - may include private retail brands -
    • -
    • museum: includes museums
    • -
    • - tourist_attraction: includes tourist attractions like the - Eiffel tower -
    • -
    • - amusement_park: includes amusement parks like Disneyland - Paris -
    • -
    • art_gallery: includes art galleries
    • -
    • zoo: includes zoos
    • -
  • diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md b/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md index e5b2285c..17f068c3 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md @@ -44,30 +44,7 @@ -

    types

    - The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator. - - - `city`: includes city localities - - `town`: includes town localities - - `village`: includes village localities - - `hamlet`: includes hamlet localities - - `borough`: includes borough localities - - `suburb`: includes suburb localities - - `quarter`: includes quarter localities - - `neighbourhood`: includes neighbourhood localities - - `locality`: an alias that groups all localities (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`) - - `postal_code`: publicly-used postal codes around the world - - `address`: addresses - - `admin_level`: most commonly used administrative areas - - `country`: countries as whole point of interest - - `airport`: includes all medium sized to international sized airports - - `train_station`: includes all train stations - - `metro_station`: includes all metro stations - - `shopping`: includes shopping malls (or "shopping centers") - *may include private retail brands* - - `museum`: includes museums - - `tourist_attraction`: includes tourist attractions like the Eiffel tower - - `amusement_park`: includes amusement parks like Disneyland Paris - - `art_gallery`: includes art galleries - - `zoo`: includes zoos + Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.

    Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html index 4d228e25..f660a06d 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html @@ -131,27 +131,6 @@

    types

  • address: addresses
  • admin_level: most commonly used administrative areas
  • country: countries as whole point of interest
  • -
  • - airport: includes all medium sized to international sized - airports -
  • -
  • train_station: includes all train stations
  • -
  • metro_station: includes all metro stations
  • -
  • - shopping: includes shopping malls (or "shopping centers") - - may include private retail brands -
  • -
  • museum: includes museums
  • -
  • - tourist_attraction: includes tourist attractions like the - Eiffel tower -
  • -
  • - amusement_park: includes amusement parks like Disneyland - Paris -
  • -
  • art_gallery: includes art galleries
  • -
  • zoo: includes zoos
  • diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md index c6eb4b3b..24578d66 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md @@ -58,15 +58,6 @@ - `address`: addresses - `admin_level`: most commonly used administrative areas - `country`: countries as whole point of interest - - `airport`: includes all medium sized to international sized airports - - `train_station`: includes all train stations - - `metro_station`: includes all metro stations - - `shopping`: includes shopping malls (or "shopping centers") - *may include private retail brands* - - `museum`: includes museums - - `tourist_attraction`: includes tourist attractions like the Eiffel tower - - `amusement_park`: includes amusement parks like Disneyland Paris - - `art_gallery`: includes art galleries - - `zoo`: includes zoos

    Generated from the OpenAPI specification. diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.html b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.html index f7c5a2bf..66f53b40 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.html +++ b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.html @@ -104,17 +104,17 @@

    } }, { - "public_id": "4Ew1mvbob3vobGMQ44AdRNY/5xE=", + "public_id": "52MnrbHVWH21CLWH8VY/YWKhqeM=", "type": "locality", "types": [ "locality", "village" ], - "description": "Little London, Hampshire, United Kingdom", + "description": "London Apprentice, Cornwall, United Kingdom", "matched_substrings": { "description": [ { - "offset": 7, + "offset": 0, "length": 4 } ] diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.md b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.md index 7385dc32..90a9ab81 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.md +++ b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.md @@ -64,17 +64,17 @@ Localities Collection Response containing Localities } }, { - "public_id": "4Ew1mvbob3vobGMQ44AdRNY/5xE=", + "public_id": "52MnrbHVWH21CLWH8VY/YWKhqeM=", "type": "locality", "types": [ "locality", "village" ], - "description": "Little London, Hampshire, United Kingdom", + "description": "London Apprentice, Cornwall, United Kingdom", "matched_substrings": { "description": [ { - "offset": 7, + "offset": 0, "length": 4 } ] diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.html b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.html index 97c50160..5f3db88a 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.html +++ b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.html @@ -172,15 +172,15 @@

    optional - Array<LocalitiesTypesLocalitiesTypesAll>

    An array containing the types of the result

    - See LocalitiesTypes for more + See LocalitiesTypesAll for more information.

    diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.md b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.md index 2146d791..93da553c 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.md +++ b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.md @@ -12,7 +12,7 @@ Attributes describing a locality. Not all attributes will be available for all l |

    | optional | string |

    Contains a unique ID for each suggestion. Please use this ID if you need to give us feedbacks on results. This ID is also required to perform Localities Details request.

    | | | optional | [LocalitiesAutocompleteRelated](#LocalitiesAutocompleteRelated "LocalitiesAutocompleteRelated") | See [LocalitiesAutocompleteRelated](#LocalitiesAutocompleteRelated "LocalitiesAutocompleteRelated") for more information. | | | optional | string |

    this field might be removed in the future, please use the types field which is more exhaustive

    | -| | optional | Array<[LocalitiesTypes](#LocalitiesTypes "LocalitiesTypes")> |

    An array containing the types of the result

    See LocalitiesTypes for more information.

    | +| | optional | Array<[LocalitiesTypesAll](#LocalitiesTypesAll "LocalitiesTypesAll")> |

    An array containing the types of the result

    See LocalitiesTypesAll for more information.

    |

    Example

    diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyextendedtype.md b/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyextendedtype.md deleted file mode 100644 index c4b0242f..00000000 --- a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyextendedtype.md +++ /dev/null @@ -1,10 +0,0 @@ - - -

    LocalitiesNearbyExtendedType

    - -

    Generated from the OpenAPI specification. -✎ Edit -bug_report Report bug -

    - - diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.html b/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.html index 21f9e3bb..dffd050b 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.html +++ b/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.html @@ -48,10 +48,8 @@

    optional - Array<LocalitiesNearbyExtendedTypeLocalitiesTypesPoi> @@ -62,11 +60,8 @@

    removed.

    - See - LocalitiesNearbyExtendedType - for more information. + See LocalitiesTypesPoi for more + information.

    @@ -162,21 +157,16 @@

    optional - Array<LocalitiesNearbyExtendedTypeLocalitiesTypesPoi>

    An array containing the types of the result.

    - See - LocalitiesNearbyExtendedType - for more information. + See LocalitiesTypesPoi for more + information.

    diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.md b/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.md index 384fe2fb..56e282ef 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.md +++ b/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.md @@ -4,15 +4,15 @@ Attributes describing a point of interest. -| Field | Required | Type | Description | -| :-------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -|

    | optional | [AddressComponents](#AddressComponents "AddressComponents") | See [AddressComponents](#AddressComponents "AddressComponents") for more information. | -| | optional | Array<[LocalitiesNearbyExtendedType](#LocalitiesNearbyExtendedType "LocalitiesNearbyExtendedType")> |

    An array containing the categories of the result. This information is now available in the types field and will be removed.

    See LocalitiesNearbyExtendedType for more information.

    | -| | optional | [FormattedAddress](#FormattedAddress "FormattedAddress") | See [FormattedAddress](#FormattedAddress "FormattedAddress") for more information. | -| | optional | object |

    The location of the result, in latitude and longitude, eventually associated with a Viewport.

    | -| | optional | string |

    The name of the result.

    | -| | optional | string |

    Contains a unique ID for each result. Please use this ID to give feedbacks on results.

    | -| | optional | Array<[LocalitiesNearbyExtendedType](#LocalitiesNearbyExtendedType "LocalitiesNearbyExtendedType")> |

    An array containing the types of the result.

    See LocalitiesNearbyExtendedType for more information.

    | +| Field | Required | Type | Description | +| :-------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | --------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| | optional | [AddressComponents](#AddressComponents "AddressComponents") | See [AddressComponents](#AddressComponents "AddressComponents") for more information. | +| | optional | Array<[LocalitiesTypesPoi](#LocalitiesTypesPoi "LocalitiesTypesPoi")> |

    An array containing the categories of the result. This information is now available in the types field and will be removed.

    See LocalitiesTypesPoi for more information.

    | +| | optional | [FormattedAddress](#FormattedAddress "FormattedAddress") | See [FormattedAddress](#FormattedAddress "FormattedAddress") for more information. | +| | optional | object |

    The location of the result, in latitude and longitude, eventually associated with a Viewport.

    | +| | optional | string |

    The name of the result.

    | +| | optional | string |

    Contains a unique ID for each result. Please use this ID to give feedbacks on results.

    | +| | optional | Array<[LocalitiesTypesPoi](#LocalitiesTypesPoi "LocalitiesTypesPoi")> |

    An array containing the types of the result.

    See LocalitiesTypesPoi for more information.

    |

    Generated from the OpenAPI specification. ✎ Edit diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiestypes.html b/dist/documentation/schemas/woosmap_http_schema_localitiestypes.html index d7d9e65a..e64fe12e 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiestypes.html +++ b/dist/documentation/schemas/woosmap_http_schema_localitiestypes.html @@ -1,7 +1,12 @@

    LocalitiesTypes

    -

    Contains the type of the result.

    +

    + Common types unrelated to points of interest (POI). The + locality type serves as an alias grouping various settlement + types (see enum for details). This grouping enables flexible and + efficient querying of related geographic data. +

    Generated from the

    LocalitiesTypes

    -Contains the type of the result. +Common types unrelated to points of interest (POI). The `locality` type serves as an alias grouping various settlement types (see `enum` for details). This grouping enables flexible and efficient querying of related geographic data.

    Generated from the OpenAPI specification. ✎ Edit diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiestypesall.html b/dist/documentation/schemas/woosmap_http_schema_localitiestypesall.html new file mode 100644 index 00000000..a380ff46 --- /dev/null +++ b/dist/documentation/schemas/woosmap_http_schema_localitiestypesall.html @@ -0,0 +1,37 @@ + + +

    LocalitiesTypesAll

    +

    + A comprehensive string type that encompasses all supported locality + classifications. This includes standard locality types (e.g., cities, + regions), points of interest (POI) categories, and POI aliases for flexible + geographic data representation and querying. +

    +

    + Generated from the + OpenAPI specification. + ✎ Edit + bug_report Report bug +

    + + diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiestypesall.md b/dist/documentation/schemas/woosmap_http_schema_localitiestypesall.md new file mode 100644 index 00000000..b4e67575 --- /dev/null +++ b/dist/documentation/schemas/woosmap_http_schema_localitiestypesall.md @@ -0,0 +1,12 @@ + + +

    LocalitiesTypesAll

    + +A comprehensive string type that encompasses all supported locality classifications. This includes standard locality types (e.g., cities, regions), points of interest (POI) categories, and POI aliases for flexible geographic data representation and querying. + +

    Generated from the OpenAPI specification. +✎ Edit +bug_report Report bug +

    + + diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyextendedtype.html b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoi.html similarity index 58% rename from dist/documentation/schemas/woosmap_http_schema_localitiesnearbyextendedtype.html rename to dist/documentation/schemas/woosmap_http_schema_localitiestypespoi.html index e9096962..ab457cc3 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyextendedtype.html +++ b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoi.html @@ -1,8 +1,10 @@ - -

    - LocalitiesNearbyExtendedType -

    + +

    LocalitiesTypesPoi

    +

    + Categories of points of interest (POI) supported for detailed classification + in geographic data queries. +

    Generated from the >OpenAPI specification. ✎ Edit bug_report Report bug

    - + diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiestypespoi.md b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoi.md new file mode 100644 index 00000000..033d0b13 --- /dev/null +++ b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoi.md @@ -0,0 +1,12 @@ + + +

    LocalitiesTypesPoi

    + +Categories of points of interest (POI) supported for detailed classification in geographic data queries. + +

    Generated from the OpenAPI specification. +✎ Edit +bug_report Report bug +

    + + diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html new file mode 100644 index 00000000..65535a76 --- /dev/null +++ b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html @@ -0,0 +1,42 @@ + + +

    + LocalitiesTypesPoiAlias +

    +

    + Aliases for some point_of_interest types. These aliases are deprecated and + should be replaced with the corresponding types in + LocalitiesTypesPoi. For example: - airport -> + transit.station.airport - train_station -> + transit.station.rail - shopping -> + business This ensures consistency and alignment with the updated + schema. +

    +

    + Generated from the + OpenAPI specification. + ✎ Edit + bug_report Report bug +

    + + diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.md b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.md new file mode 100644 index 00000000..82620bb7 --- /dev/null +++ b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.md @@ -0,0 +1,12 @@ + + +

    LocalitiesTypesPoiAlias

    + +Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` -> `transit.station.airport` - `train_station` -> `transit.station.rail` - `shopping` -> `business` This ensures consistency and alignment with the updated schema. + +

    Generated from the OpenAPI specification. +✎ Edit +bug_report Report bug +

    + + diff --git a/dist/merged-woosmap-openapi3.json b/dist/merged-woosmap-openapi3.json index 9194c8fc..44ce6bb3 100755 --- a/dist/merged-woosmap-openapi3.json +++ b/dist/merged-woosmap-openapi3.json @@ -2476,17 +2476,17 @@ } }, { - "public_id": "4Ew1mvbob3vobGMQ44AdRNY/5xE=", + "public_id": "52MnrbHVWH21CLWH8VY/YWKhqeM=", "type": "locality", "types": [ "locality", "village" ], - "description": "Little London, Hampshire, United Kingdom", + "description": "London Apprentice, Cornwall, United Kingdom", "matched_substrings": { "description": [ { - "offset": 7, + "offset": 0, "length": 4 } ] @@ -3279,7 +3279,7 @@ ], "parameters": [ { - "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_extended_types" + "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_nearby_types" }, { "name": "location", @@ -3328,7 +3328,7 @@ "example": 15 }, { - "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_excluded_extended_types" + "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_nearby_excluded_types" } ], "responses": { @@ -11153,11 +11153,11 @@ }, "Woosmap_Platform_API_Reference_types": { "name": "types", - "description": "The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: an alias that groups all localities (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`)\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "description": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", "schema": { - "type": "string", "default": "locality|postal_code", - "example": "locality|airport|admin_level" + "example": "locality|airport|admin_level", + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesAll" }, "in": "query" }, @@ -11321,11 +11321,11 @@ }, "Woosmap_Platform_API_Reference_geocode_types": { "name": "types", - "description": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "description": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", "schema": { - "type": "string", "default": "locality|postal_code|address", - "example": "locality|admin_level" + "example": "locality|admin_level", + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypes" }, "in": "query" }, @@ -11352,19 +11352,19 @@ }, "in": "query" }, - "Woosmap_Platform_API_Reference_extended_types": { + "Woosmap_Platform_API_Reference_nearby_types": { "name": "types", "description": "The types of points of interest to return. Multiple types can be passed using the pipe character (`|`) as a separator. For example: `types=business.shop|medical.pharmacy|business.finance.bank`.\n", "schema": { - "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesNearbyExtendedType" + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesPoi" }, "in": "query" }, - "Woosmap_Platform_API_Reference_excluded_extended_types": { + "Woosmap_Platform_API_Reference_nearby_excluded_types": { "name": "excluded_types", "description": "The types of points of interest to exclude from results. results will match the specified `types`, if any, but will not match the specified `excluded_types` Multiple types can be passed using the pipe character (`|`) as a separator. For example: `excluded_types=business.food_and_drinks.fast_food|business.food_and_drinks.pub`.\n", "schema": { - "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesNearbyExtendedType" + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesPoi" }, "in": "query" }, @@ -11751,15 +11751,9 @@ "Woosmap_Platform_API_Reference_localities_data": { "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_data" }, - "Woosmap_Platform_API_Reference_localities_excluded_extended_types": { - "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_excluded_extended_types" - }, "Woosmap_Platform_API_Reference_localities_excluded_types": { "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_excluded_types" }, - "Woosmap_Platform_API_Reference_localities_extended_types": { - "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_extended_types" - }, "Woosmap_Platform_API_Reference_localities_extended": { "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_extended" }, @@ -11787,6 +11781,12 @@ "Woosmap_Platform_API_Reference_localities_location": { "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_location" }, + "Woosmap_Platform_API_Reference_localities_nearby_excluded_types": { + "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_nearby_excluded_types" + }, + "Woosmap_Platform_API_Reference_localities_nearby_types": { + "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_nearby_types" + }, "Woosmap_Platform_API_Reference_localities_page": { "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_page-2" }, @@ -13646,8 +13646,13 @@ "Woosmap_Platform_API_Reference_LocalitiesTypes": { "title": "LocalitiesTypes", "type": "string", - "description": "Contains the type of the result.", + "description": "Common types unrelated to points of interest (POI). The `locality` type serves as an alias grouping various settlement types (see `enum` for details). This grouping enables flexible and efficient querying of related geographic data.\n", "enum": [ + "country", + "admin_level", + "postal_code", + "address", + "route", "locality", "city", "town", @@ -13656,9 +13661,93 @@ "borough", "suburb", "quarter", - "neighbourhood", - "postal_code", - "admin_level", + "neighbourhood" + ] + }, + "Woosmap_Platform_API_Reference_LocalitiesTypesPoi": { + "title": "LocalitiesTypesPoi", + "description": "Categories of points of interest (POI) supported for detailed classification in geographic data queries.\n", + "type": "string", + "enum": [ + "point_of_interest", + "transit.station", + "transit.station.airport", + "transit.station.rail", + "beach", + "business", + "business.car_repair", + "business.car_rental", + "business.cinema", + "business.conference_centre", + "business.exhibition_centre", + "business.theatre", + "business.nightclub", + "business.finance", + "business.finance.bank", + "business.fuel", + "business.parking", + "business.mall", + "business.food_and_drinks", + "business.food_and_drinks.bar", + "business.food_and_drinks.biergarten", + "business.food_and_drinks.cafe", + "business.food_and_drinks.fast_food", + "business.food_and_drinks.pub", + "business.food_and_drinks.restaurant", + "business.food_and_drinks.food_court", + "business.shop", + "business.shop.mall", + "business.shop.bakery", + "business.shop.butcher", + "business.shop.library", + "business.shop.grocery", + "business.shop.sports", + "business.shop.toys", + "business.shop.clothes", + "business.shop.furniture", + "business.shop.electronics", + "business.shop.doityourself", + "business.shop.craft", + "education", + "education.school", + "education.kindergarten", + "education.university", + "education.college", + "education.library", + "hospitality", + "hospitality.hotel", + "hospitality.hostel", + "hospitality.guest_house", + "hospitality.bed_and_breakfast", + "hospitality.motel", + "medical", + "medical.hospital", + "medical.pharmacy", + "medical.clinic", + "tourism", + "tourism.attraction", + "tourism.attraction.amusement_park", + "tourism.attraction.zoo", + "tourism.attraction.aquarium", + "tourism.monument", + "tourism.monument.castle", + "tourism.museum", + "government", + "park", + "park.national", + "place_of_worship", + "police", + "post_office", + "sports", + "sports.golf", + "sports.winter" + ] + }, + "Woosmap_Platform_API_Reference_LocalitiesTypesPoiAlias": { + "title": "LocalitiesTypesPoiAlias", + "type": "string", + "description": "Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` -> `transit.station.airport` - `train_station` -> `transit.station.rail` - `shopping` -> `business` This ensures consistency and alignment with the updated schema.\n", + "enum": [ "airport", "train_station", "metro_station", @@ -13667,10 +13756,23 @@ "zoo", "amusement_park", "art_gallery", - "tourist_attraction", - "country", - "address", - "route" + "tourist_attraction" + ] + }, + "Woosmap_Platform_API_Reference_LocalitiesTypesAll": { + "title": "LocalitiesTypesAll", + "type": "string", + "description": "A comprehensive string type that encompasses all supported locality classifications. This includes standard locality types (e.g., cities, regions), points of interest (POI) categories, and POI aliases for flexible geographic data representation and querying.\n", + "anyOf": [ + { + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypes" + }, + { + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesPoi" + }, + { + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesPoiAlias" + } ] }, "Woosmap_Platform_API_Reference_LocalitiesAutocompleteMatchedFields": { @@ -13730,7 +13832,7 @@ "description": "An array containing the types of the result", "type": "array", "items": { - "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypes" + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesAll" } }, "type": { @@ -13839,17 +13941,17 @@ } }, { - "public_id": "4Ew1mvbob3vobGMQ44AdRNY/5xE=", + "public_id": "52MnrbHVWH21CLWH8VY/YWKhqeM=", "type": "locality", "types": [ "locality", "village" ], - "description": "Little London, Hampshire, United Kingdom", + "description": "London Apprentice, Cornwall, United Kingdom", "matched_substrings": { "description": [ { - "offset": 7, + "offset": 0, "length": 4 } ] @@ -14116,7 +14218,7 @@ "description": "available localities types", "type": "array", "items": { - "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypes" + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesAll" } }, "geometry": { @@ -14482,84 +14584,6 @@ ] } }, - "Woosmap_Platform_API_Reference_LocalitiesNearbyExtendedType": { - "title": "LocalitiesNearbyExtendedType", - "type": "string", - "enum": [ - "point_of_interest", - "transit.station", - "transit.station.airport", - "transit.station.rail", - "beach", - "business", - "business.car_repair", - "business.car_rental", - "business.cinema", - "business.conference_centre", - "business.exhibition_centre", - "business.theatre", - "business.nightclub", - "business.finance", - "business.finance.bank", - "business.fuel", - "business.parking", - "business.mall", - "business.food_and_drinks", - "business.food_and_drinks.bar", - "business.food_and_drinks.biergarten", - "business.food_and_drinks.cafe", - "business.food_and_drinks.fast_food", - "business.food_and_drinks.pub", - "business.food_and_drinks.restaurant", - "business.food_and_drinks.food_court", - "business.shop", - "business.shop.mall", - "business.shop.bakery", - "business.shop.butcher", - "business.shop.library", - "business.shop.grocery", - "business.shop.sports", - "business.shop.toys", - "business.shop.clothes", - "business.shop.furniture", - "business.shop.electronics", - "business.shop.doityourself", - "business.shop.craft", - "education", - "education.school", - "education.kindergarten", - "education.university", - "education.college", - "education.library", - "hospitality", - "hospitality.hotel", - "hospitality.hostel", - "hospitality.guest_house", - "hospitality.bed_and_breakfast", - "hospitality.motel", - "medical", - "medical.hospital", - "medical.pharmacy", - "medical.clinic", - "tourism", - "tourism.attraction", - "tourism.attraction.amusement_park", - "tourism.attraction.zoo", - "tourism.attraction.aquarium", - "tourism.monument", - "tourism.monument.castle", - "tourism.museum", - "government", - "park", - "park.national", - "place_of_worship", - "police", - "post_office", - "sports", - "sports.golf", - "sports.winter" - ] - }, "Woosmap_Platform_API_Reference_LocalitiesNearbyResponse": { "title": "LocalitiesNearbyResponse", "type": "object", @@ -14568,8 +14592,13 @@ "types": { "description": "An array containing the types of the result.", "type": "array", + "example": [ + "point_of_interest", + "transit.station.rail.train", + "train_station" + ], "items": { - "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesNearbyExtendedType" + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesPoi" } }, "name": { @@ -14607,7 +14636,7 @@ "type": "array", "deprecated": true, "items": { - "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesNearbyExtendedType" + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesPoi" } }, "formatted_address": { diff --git a/dist/woosmap-openapi3.json b/dist/woosmap-openapi3.json index b19f8fbd..91145e36 100755 --- a/dist/woosmap-openapi3.json +++ b/dist/woosmap-openapi3.json @@ -2442,17 +2442,17 @@ } }, { - "public_id": "4Ew1mvbob3vobGMQ44AdRNY/5xE=", + "public_id": "52MnrbHVWH21CLWH8VY/YWKhqeM=", "type": "locality", "types": [ "locality", "village" ], - "description": "Little London, Hampshire, United Kingdom", + "description": "London Apprentice, Cornwall, United Kingdom", "matched_substrings": { "description": [ { - "offset": 7, + "offset": 0, "length": 4 } ] @@ -3245,7 +3245,7 @@ ], "parameters": [ { - "$ref": "#/components/parameters/extended_types" + "$ref": "#/components/parameters/nearby_types" }, { "name": "location", @@ -3294,7 +3294,7 @@ "example": 15 }, { - "$ref": "#/components/parameters/excluded_extended_types" + "$ref": "#/components/parameters/nearby_excluded_types" } ], "responses": { @@ -6411,11 +6411,11 @@ }, "types": { "name": "types", - "description": "The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: an alias that groups all localities (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`)\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "description": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", "schema": { - "type": "string", "default": "locality|postal_code", - "example": "locality|airport|admin_level" + "example": "locality|airport|admin_level", + "$ref": "#/components/schemas/LocalitiesTypesAll" }, "in": "query" }, @@ -6579,11 +6579,11 @@ }, "geocode_types": { "name": "types", - "description": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "description": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", "schema": { - "type": "string", "default": "locality|postal_code|address", - "example": "locality|admin_level" + "example": "locality|admin_level", + "$ref": "#/components/schemas/LocalitiesTypes" }, "in": "query" }, @@ -6610,19 +6610,19 @@ }, "in": "query" }, - "extended_types": { + "nearby_types": { "name": "types", "description": "The types of points of interest to return. Multiple types can be passed using the pipe character (`|`) as a separator. For example: `types=business.shop|medical.pharmacy|business.finance.bank`.\n", "schema": { - "$ref": "#/components/schemas/LocalitiesNearbyExtendedType" + "$ref": "#/components/schemas/LocalitiesTypesPoi" }, "in": "query" }, - "excluded_extended_types": { + "nearby_excluded_types": { "name": "excluded_types", "description": "The types of points of interest to exclude from results. results will match the specified `types`, if any, but will not match the specified `excluded_types` Multiple types can be passed using the pipe character (`|`) as a separator. For example: `excluded_types=business.food_and_drinks.fast_food|business.food_and_drinks.pub`.\n", "schema": { - "$ref": "#/components/schemas/LocalitiesNearbyExtendedType" + "$ref": "#/components/schemas/LocalitiesTypesPoi" }, "in": "query" }, @@ -7009,15 +7009,9 @@ "localities_data": { "$ref": "#/components/parameters/data" }, - "localities_excluded_extended_types": { - "$ref": "#/components/parameters/excluded_extended_types" - }, "localities_excluded_types": { "$ref": "#/components/parameters/excluded_types" }, - "localities_extended_types": { - "$ref": "#/components/parameters/extended_types" - }, "localities_extended": { "$ref": "#/components/parameters/extended" }, @@ -7045,6 +7039,12 @@ "localities_location": { "$ref": "#/components/parameters/location" }, + "localities_nearby_excluded_types": { + "$ref": "#/components/parameters/nearby_excluded_types" + }, + "localities_nearby_types": { + "$ref": "#/components/parameters/nearby_types" + }, "localities_page": { "$ref": "#/components/parameters/page-2" }, @@ -8904,8 +8904,13 @@ "LocalitiesTypes": { "title": "LocalitiesTypes", "type": "string", - "description": "Contains the type of the result.", + "description": "Common types unrelated to points of interest (POI). The `locality` type serves as an alias grouping various settlement types (see `enum` for details). This grouping enables flexible and efficient querying of related geographic data.\n", "enum": [ + "country", + "admin_level", + "postal_code", + "address", + "route", "locality", "city", "town", @@ -8914,9 +8919,93 @@ "borough", "suburb", "quarter", - "neighbourhood", - "postal_code", - "admin_level", + "neighbourhood" + ] + }, + "LocalitiesTypesPoi": { + "title": "LocalitiesTypesPoi", + "description": "Categories of points of interest (POI) supported for detailed classification in geographic data queries.\n", + "type": "string", + "enum": [ + "point_of_interest", + "transit.station", + "transit.station.airport", + "transit.station.rail", + "beach", + "business", + "business.car_repair", + "business.car_rental", + "business.cinema", + "business.conference_centre", + "business.exhibition_centre", + "business.theatre", + "business.nightclub", + "business.finance", + "business.finance.bank", + "business.fuel", + "business.parking", + "business.mall", + "business.food_and_drinks", + "business.food_and_drinks.bar", + "business.food_and_drinks.biergarten", + "business.food_and_drinks.cafe", + "business.food_and_drinks.fast_food", + "business.food_and_drinks.pub", + "business.food_and_drinks.restaurant", + "business.food_and_drinks.food_court", + "business.shop", + "business.shop.mall", + "business.shop.bakery", + "business.shop.butcher", + "business.shop.library", + "business.shop.grocery", + "business.shop.sports", + "business.shop.toys", + "business.shop.clothes", + "business.shop.furniture", + "business.shop.electronics", + "business.shop.doityourself", + "business.shop.craft", + "education", + "education.school", + "education.kindergarten", + "education.university", + "education.college", + "education.library", + "hospitality", + "hospitality.hotel", + "hospitality.hostel", + "hospitality.guest_house", + "hospitality.bed_and_breakfast", + "hospitality.motel", + "medical", + "medical.hospital", + "medical.pharmacy", + "medical.clinic", + "tourism", + "tourism.attraction", + "tourism.attraction.amusement_park", + "tourism.attraction.zoo", + "tourism.attraction.aquarium", + "tourism.monument", + "tourism.monument.castle", + "tourism.museum", + "government", + "park", + "park.national", + "place_of_worship", + "police", + "post_office", + "sports", + "sports.golf", + "sports.winter" + ] + }, + "LocalitiesTypesPoiAlias": { + "title": "LocalitiesTypesPoiAlias", + "type": "string", + "description": "Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` -> `transit.station.airport` - `train_station` -> `transit.station.rail` - `shopping` -> `business` This ensures consistency and alignment with the updated schema.\n", + "enum": [ "airport", "train_station", "metro_station", @@ -8925,10 +9014,23 @@ "zoo", "amusement_park", "art_gallery", - "tourist_attraction", - "country", - "address", - "route" + "tourist_attraction" + ] + }, + "LocalitiesTypesAll": { + "title": "LocalitiesTypesAll", + "type": "string", + "description": "A comprehensive string type that encompasses all supported locality classifications. This includes standard locality types (e.g., cities, regions), points of interest (POI) categories, and POI aliases for flexible geographic data representation and querying.\n", + "anyOf": [ + { + "$ref": "#/components/schemas/LocalitiesTypes" + }, + { + "$ref": "#/components/schemas/LocalitiesTypesPoi" + }, + { + "$ref": "#/components/schemas/LocalitiesTypesPoiAlias" + } ] }, "LocalitiesAutocompleteMatchedFields": { @@ -8988,7 +9090,7 @@ "description": "An array containing the types of the result", "type": "array", "items": { - "$ref": "#/components/schemas/LocalitiesTypes" + "$ref": "#/components/schemas/LocalitiesTypesAll" } }, "type": { @@ -9097,17 +9199,17 @@ } }, { - "public_id": "4Ew1mvbob3vobGMQ44AdRNY/5xE=", + "public_id": "52MnrbHVWH21CLWH8VY/YWKhqeM=", "type": "locality", "types": [ "locality", "village" ], - "description": "Little London, Hampshire, United Kingdom", + "description": "London Apprentice, Cornwall, United Kingdom", "matched_substrings": { "description": [ { - "offset": 7, + "offset": 0, "length": 4 } ] @@ -9374,7 +9476,7 @@ "description": "available localities types", "type": "array", "items": { - "$ref": "#/components/schemas/LocalitiesTypes" + "$ref": "#/components/schemas/LocalitiesTypesAll" } }, "geometry": { @@ -9740,84 +9842,6 @@ ] } }, - "LocalitiesNearbyExtendedType": { - "title": "LocalitiesNearbyExtendedType", - "type": "string", - "enum": [ - "point_of_interest", - "transit.station", - "transit.station.airport", - "transit.station.rail", - "beach", - "business", - "business.car_repair", - "business.car_rental", - "business.cinema", - "business.conference_centre", - "business.exhibition_centre", - "business.theatre", - "business.nightclub", - "business.finance", - "business.finance.bank", - "business.fuel", - "business.parking", - "business.mall", - "business.food_and_drinks", - "business.food_and_drinks.bar", - "business.food_and_drinks.biergarten", - "business.food_and_drinks.cafe", - "business.food_and_drinks.fast_food", - "business.food_and_drinks.pub", - "business.food_and_drinks.restaurant", - "business.food_and_drinks.food_court", - "business.shop", - "business.shop.mall", - "business.shop.bakery", - "business.shop.butcher", - "business.shop.library", - "business.shop.grocery", - "business.shop.sports", - "business.shop.toys", - "business.shop.clothes", - "business.shop.furniture", - "business.shop.electronics", - "business.shop.doityourself", - "business.shop.craft", - "education", - "education.school", - "education.kindergarten", - "education.university", - "education.college", - "education.library", - "hospitality", - "hospitality.hotel", - "hospitality.hostel", - "hospitality.guest_house", - "hospitality.bed_and_breakfast", - "hospitality.motel", - "medical", - "medical.hospital", - "medical.pharmacy", - "medical.clinic", - "tourism", - "tourism.attraction", - "tourism.attraction.amusement_park", - "tourism.attraction.zoo", - "tourism.attraction.aquarium", - "tourism.monument", - "tourism.monument.castle", - "tourism.museum", - "government", - "park", - "park.national", - "place_of_worship", - "police", - "post_office", - "sports", - "sports.golf", - "sports.winter" - ] - }, "LocalitiesNearbyResponse": { "title": "LocalitiesNearbyResponse", "type": "object", @@ -9826,8 +9850,13 @@ "types": { "description": "An array containing the types of the result.", "type": "array", + "example": [ + "point_of_interest", + "transit.station.rail.train", + "train_station" + ], "items": { - "$ref": "#/components/schemas/LocalitiesNearbyExtendedType" + "$ref": "#/components/schemas/LocalitiesTypesPoi" } }, "name": { @@ -9865,7 +9894,7 @@ "type": "array", "deprecated": true, "items": { - "$ref": "#/components/schemas/LocalitiesNearbyExtendedType" + "$ref": "#/components/schemas/LocalitiesTypesPoi" } }, "formatted_address": { diff --git a/dist/woosmap-openapi3.yml b/dist/woosmap-openapi3.yml index 7773e031..1f78db35 100755 --- a/dist/woosmap-openapi3.yml +++ b/dist/woosmap-openapi3.yml @@ -2538,15 +2538,15 @@ paths: description: - offset: 0 length: 4 - - public_id: 4Ew1mvbob3vobGMQ44AdRNY/5xE= + - public_id: 52MnrbHVWH21CLWH8VY/YWKhqeM= type: locality types: - locality - village - description: Little London, Hampshire, United Kingdom + description: London Apprentice, Cornwall, United Kingdom matched_substrings: description: - - offset: 7 + - offset: 0 length: 4 - public_id: S/5AkUmMBhX35qVI2jR38+dALwk= type: locality @@ -3070,7 +3070,7 @@ paths: - PrivateApiKeyAuth: [] - PrivateApiKeyHeaderAuth: [] parameters: - - $ref: '#/components/parameters/extended_types' + - $ref: '#/components/parameters/nearby_types' - name: location description: | Center of the search circle. @@ -3109,7 +3109,7 @@ paths: maximum: 30 in: query example: 15 - - $ref: '#/components/parameters/excluded_extended_types' + - $ref: '#/components/parameters/nearby_excluded_types' responses: '200': description: Points of interests surrounding `location` and matching provided `types`, sorted by distance to `location`. @@ -5580,33 +5580,11 @@ components: types: name: types description: | - The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator. - * `city`: includes city localities - * `town`: includes town localities - * `village`: includes village localities - * `hamlet`: includes hamlet localities - * `borough`: includes borough localities - * `suburb`: includes suburb localities - * `quarter`: includes quarter localities - * `neighbourhood`: includes neighbourhood localities - * `locality`: an alias that groups all localities (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`) - * `postal_code`: publicly-used postal codes around the world - * `address`: addresses - * `admin_level`: most commonly used administrative areas - * `country`: countries as whole point of interest - * `airport`: includes all medium sized to international sized airports - * `train_station`: includes all train stations - * `metro_station`: includes all metro stations - * `shopping`: includes shopping malls (or "shopping centers") - *may include private retail brands* - * `museum`: includes museums - * `tourist_attraction`: includes tourist attractions like the Eiffel tower - * `amusement_park`: includes amusement parks like Disneyland Paris - * `art_gallery`: includes art galleries - * `zoo`: includes zoos + Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying. schema: - type: string default: locality|postal_code example: locality|airport|admin_level + $ref: '#/components/schemas/LocalitiesTypesAll' in: query excluded_types: name: excluded_types @@ -5765,19 +5743,10 @@ components: * `address`: addresses * `admin_level`: most commonly used administrative areas * `country`: countries as whole point of interest - * `airport`: includes all medium sized to international sized airports - * `train_station`: includes all train stations - * `metro_station`: includes all metro stations - * `shopping`: includes shopping malls (or "shopping centers") - *may include private retail brands* - * `museum`: includes museums - * `tourist_attraction`: includes tourist attractions like the Eiffel tower - * `amusement_park`: includes amusement parks like Disneyland Paris - * `art_gallery`: includes art galleries - * `zoo`: includes zoos schema: - type: string default: locality|postal_code|address example: locality|admin_level + $ref: '#/components/schemas/LocalitiesTypes' in: query list_sub_buildings: name: list_sub_buildings @@ -5799,19 +5768,19 @@ components: - alpha3 example: alpha2 in: query - extended_types: + nearby_types: name: types description: | The types of points of interest to return. Multiple types can be passed using the pipe character (`|`) as a separator. For example: `types=business.shop|medical.pharmacy|business.finance.bank`. schema: - $ref: '#/components/schemas/LocalitiesNearbyExtendedType' + $ref: '#/components/schemas/LocalitiesTypesPoi' in: query - excluded_extended_types: + nearby_excluded_types: name: excluded_types description: | The types of points of interest to exclude from results. results will match the specified `types`, if any, but will not match the specified `excluded_types` Multiple types can be passed using the pipe character (`|`) as a separator. For example: `excluded_types=business.food_and_drinks.fast_food|business.food_and_drinks.pub`. schema: - $ref: '#/components/schemas/LocalitiesNearbyExtendedType' + $ref: '#/components/schemas/LocalitiesTypesPoi' in: query input-2: name: input @@ -6138,12 +6107,8 @@ components: $ref: '#/components/parameters/custom_description' localities_data: $ref: '#/components/parameters/data' - localities_excluded_extended_types: - $ref: '#/components/parameters/excluded_extended_types' localities_excluded_types: $ref: '#/components/parameters/excluded_types' - localities_extended_types: - $ref: '#/components/parameters/extended_types' localities_extended: $ref: '#/components/parameters/extended' localities_fields: @@ -6162,6 +6127,10 @@ components: $ref: '#/components/parameters/localities_components' localities_location: $ref: '#/components/parameters/location' + localities_nearby_excluded_types: + $ref: '#/components/parameters/nearby_excluded_types' + localities_nearby_types: + $ref: '#/components/parameters/nearby_types' localities_page: $ref: '#/components/parameters/page-2' localities_public_id: @@ -7445,8 +7414,14 @@ components: LocalitiesTypes: title: LocalitiesTypes type: string - description: Contains the type of the result. + description: | + Common types unrelated to points of interest (POI). The `locality` type serves as an alias grouping various settlement types (see `enum` for details). This grouping enables flexible and efficient querying of related geographic data. enum: + - country + - admin_level + - postal_code + - address + - route - locality - city - town @@ -7456,8 +7431,90 @@ components: - suburb - quarter - neighbourhood - - postal_code - - admin_level + LocalitiesTypesPoi: + title: LocalitiesTypesPoi + description: | + Categories of points of interest (POI) supported for detailed classification in geographic data queries. + type: string + enum: + - point_of_interest + - transit.station + - transit.station.airport + - transit.station.rail + - beach + - business + - business.car_repair + - business.car_rental + - business.cinema + - business.conference_centre + - business.exhibition_centre + - business.theatre + - business.nightclub + - business.finance + - business.finance.bank + - business.fuel + - business.parking + - business.mall + - business.food_and_drinks + - business.food_and_drinks.bar + - business.food_and_drinks.biergarten + - business.food_and_drinks.cafe + - business.food_and_drinks.fast_food + - business.food_and_drinks.pub + - business.food_and_drinks.restaurant + - business.food_and_drinks.food_court + - business.shop + - business.shop.mall + - business.shop.bakery + - business.shop.butcher + - business.shop.library + - business.shop.grocery + - business.shop.sports + - business.shop.toys + - business.shop.clothes + - business.shop.furniture + - business.shop.electronics + - business.shop.doityourself + - business.shop.craft + - education + - education.school + - education.kindergarten + - education.university + - education.college + - education.library + - hospitality + - hospitality.hotel + - hospitality.hostel + - hospitality.guest_house + - hospitality.bed_and_breakfast + - hospitality.motel + - medical + - medical.hospital + - medical.pharmacy + - medical.clinic + - tourism + - tourism.attraction + - tourism.attraction.amusement_park + - tourism.attraction.zoo + - tourism.attraction.aquarium + - tourism.monument + - tourism.monument.castle + - tourism.museum + - government + - park + - park.national + - place_of_worship + - police + - post_office + - sports + - sports.golf + - sports.winter + LocalitiesTypesPoiAlias: + title: LocalitiesTypesPoiAlias + type: string + description: | + Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` -> `transit.station.airport` - `train_station` -> `transit.station.rail` - `shopping` -> `business` This ensures consistency and alignment with the updated schema. + enum: - airport - train_station - metro_station @@ -7467,9 +7524,15 @@ components: - amusement_park - art_gallery - tourist_attraction - - country - - address - - route + LocalitiesTypesAll: + title: LocalitiesTypesAll + type: string + description: | + A comprehensive string type that encompasses all supported locality classifications. This includes standard locality types (e.g., cities, regions), points of interest (POI) categories, and POI aliases for flexible geographic data representation and querying. + anyOf: + - $ref: '#/components/schemas/LocalitiesTypes' + - $ref: '#/components/schemas/LocalitiesTypesPoi' + - $ref: '#/components/schemas/LocalitiesTypesPoiAlias' LocalitiesAutocompleteMatchedFields: title: LocalitiesAutocompleteMatchedFields type: object @@ -7514,7 +7577,7 @@ components: description: An array containing the types of the result type: array items: - $ref: '#/components/schemas/LocalitiesTypes' + $ref: '#/components/schemas/LocalitiesTypesAll' type: deprecated: true description: this field might be removed in the future, please use the `types` field which is more exhaustive @@ -7583,15 +7646,15 @@ components: description: - offset: 0 length: 4 - - public_id: 4Ew1mvbob3vobGMQ44AdRNY/5xE= + - public_id: 52MnrbHVWH21CLWH8VY/YWKhqeM= type: locality types: - locality - village - description: Little London, Hampshire, United Kingdom + description: London Apprentice, Cornwall, United Kingdom matched_substrings: description: - - offset: 7 + - offset: 0 length: 4 - public_id: S/5AkUmMBhX35qVI2jR38+dALwk= type: locality @@ -7774,7 +7837,7 @@ components: description: available localities types type: array items: - $ref: '#/components/schemas/LocalitiesTypes' + $ref: '#/components/schemas/LocalitiesTypesAll' geometry: description: The location of the PostalCode, in latitude and longitude, eventually associated with a Viewport and a shape. type: object @@ -8030,82 +8093,6 @@ components: location_type: GEOMETRIC_CENTER scores_per_components: street_name: 1 - LocalitiesNearbyExtendedType: - title: LocalitiesNearbyExtendedType - type: string - enum: - - point_of_interest - - transit.station - - transit.station.airport - - transit.station.rail - - beach - - business - - business.car_repair - - business.car_rental - - business.cinema - - business.conference_centre - - business.exhibition_centre - - business.theatre - - business.nightclub - - business.finance - - business.finance.bank - - business.fuel - - business.parking - - business.mall - - business.food_and_drinks - - business.food_and_drinks.bar - - business.food_and_drinks.biergarten - - business.food_and_drinks.cafe - - business.food_and_drinks.fast_food - - business.food_and_drinks.pub - - business.food_and_drinks.restaurant - - business.food_and_drinks.food_court - - business.shop - - business.shop.mall - - business.shop.bakery - - business.shop.butcher - - business.shop.library - - business.shop.grocery - - business.shop.sports - - business.shop.toys - - business.shop.clothes - - business.shop.furniture - - business.shop.electronics - - business.shop.doityourself - - business.shop.craft - - education - - education.school - - education.kindergarten - - education.university - - education.college - - education.library - - hospitality - - hospitality.hotel - - hospitality.hostel - - hospitality.guest_house - - hospitality.bed_and_breakfast - - hospitality.motel - - medical - - medical.hospital - - medical.pharmacy - - medical.clinic - - tourism - - tourism.attraction - - tourism.attraction.amusement_park - - tourism.attraction.zoo - - tourism.attraction.aquarium - - tourism.monument - - tourism.monument.castle - - tourism.museum - - government - - park - - park.national - - place_of_worship - - police - - post_office - - sports - - sports.golf - - sports.winter LocalitiesNearbyResponse: title: LocalitiesNearbyResponse type: object @@ -8114,8 +8101,12 @@ components: types: description: An array containing the types of the result. type: array + example: + - point_of_interest + - transit.station.rail.train + - train_station items: - $ref: '#/components/schemas/LocalitiesNearbyExtendedType' + $ref: '#/components/schemas/LocalitiesTypesPoi' name: description: The name of the result. type: string @@ -8142,7 +8133,7 @@ components: type: array deprecated: true items: - $ref: '#/components/schemas/LocalitiesNearbyExtendedType' + $ref: '#/components/schemas/LocalitiesTypesPoi' formatted_address: $ref: '#/components/schemas/FormattedAddress' LocalitiesNearbyCollectionResponse: diff --git a/dist/woosmap-postman.json b/dist/woosmap-postman.json index e03a9f8d..725f4975 100755 --- a/dist/woosmap-postman.json +++ b/dist/woosmap-postman.json @@ -5,7 +5,7 @@ "description": "Stores Search API lets you query the Assets which are returned as a [GeoJson](https://geojson.org/). Request is done over HTTPS using GET. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/). If your request returns a high number of assets, the result will be paginated. If so, you can request assets by page using `page` and `stores_by_page` parameters (Default is **100**, max is **300**).\n", "item": [ { - "id": "c194633d-21c0-4dcd-94ab-4b6b24a4cb95", + "id": "13123945-4139-456f-9fcb-76b3af59f1c6", "name": "Search for assets", "request": { "name": "Search for assets", @@ -128,7 +128,7 @@ }, "response": [ { - "id": "2a80847b-1f58-4162-9691-5c8f2a02ef36", + "id": "18128a64-63d2-40a6-abad-769a78801153", "name": "Assets successfully retrieved", "originalRequest": { "url": { @@ -243,12 +243,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"id_937\": -74581277.05376838,\n \"ut__39\": 46139738.76505804,\n \"nisi_1\": -27413127\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"incididunt45\": \"Excepteur dolore\",\n \"minim_c\": 73973465.75676212,\n \"voluptate5\": 78379209.3922849\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n}", + "body": "{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"velita_\": -37750431,\n \"pariatur_37f\": \"ad commodo quis ullamco\",\n \"dolor1b\": true\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63b17609-e732-4c19-b37b-761cdd9f8978", + "id": "63814e67-91fd-4fc2-8df6-bc7f26a53dbe", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -368,7 +368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61d61d80-9075-477c-abc0-4eefa46b1751", + "id": "8116a972-e545-4812-8c4e-2caad53d1449", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -488,7 +488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79a16e0a-18a3-4019-bb21-e75ad7d029d2", + "id": "53b0d735-43d0-445c-9f99-be3e1a331832", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -614,7 +614,7 @@ } }, { - "id": "43b12187-49ba-47cb-ad40-533702e818f5", + "id": "b706eac4-e486-4818-92ea-418631ac0284", "name": "Autocomplete for assets", "request": { "name": "Autocomplete for assets", @@ -692,7 +692,7 @@ }, "response": [ { - "id": "42cebda1-efaa-47b9-8922-ff95720b6475", + "id": "4492c4cf-73a3-4afa-aa4b-94d21e48f756", "name": "Assets Successfully Replaced", "originalRequest": { "url": { @@ -762,12 +762,12 @@ "value": "application/json" } ], - "body": "{\n \"predictions\": [\n {\n \"name\": \"dolor sunt tempor ad\",\n \"highlighted\": \"eiusmod ullamco dolor\",\n \"store_id\": {},\n \"types\": {}\n },\n {\n \"name\": \"minim voluptate fugiat ex\",\n \"highlighted\": \"aliqua in\",\n \"store_id\": {},\n \"types\": {}\n }\n ]\n}", + "body": "{\n \"predictions\": [\n {\n \"name\": \"pariatur\",\n \"highlighted\": \"laboris sunt aliquip nostrud quis\",\n \"store_id\": {},\n \"types\": {}\n },\n {\n \"name\": \"aliquip magna\",\n \"highlighted\": \"id dolore\",\n \"store_id\": {},\n \"types\": {}\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "522a119b-a2aa-4dd0-b3b3-6e006a9d2af4", + "id": "a33c98f0-a389-4a18-a245-0159240d5c76", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -842,7 +842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33747b81-535d-4896-874b-0e2254727679", + "id": "15f91f0f-6ea1-4900-afe1-2f1d7c2000ab", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -917,7 +917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1c23f5c-808d-466f-b3d4-020e0c9f9610", + "id": "b8376abd-52ab-4e48-be85-1d50cd92e0be", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -998,7 +998,7 @@ } }, { - "id": "81d06c11-15fa-4097-883e-63f8eeb6d684", + "id": "93a7628e-ae76-4a1a-91b5-0191b2f518bb", "name": "Bounds for assets", "request": { "name": "Bounds for assets", @@ -1086,7 +1086,7 @@ }, "response": [ { - "id": "0a3a902c-8f1d-496a-a30b-db2bf61ab9f2", + "id": "075d86e2-d424-4006-b95a-ac39dae871c7", "name": "Bounds successfully retrieved", "originalRequest": { "url": { @@ -1171,7 +1171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd45a864-a03c-43aa-b11f-32145a7592f9", + "id": "8e0660f4-11c9-4a4b-a084-bb2301e797cf", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1256,7 +1256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc92db12-26ec-43a9-b1e1-0197e3e61bdd", + "id": "2e90cdff-f4f0-42cb-babc-6231d711cd7a", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -1341,7 +1341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ce9c5ba-9d91-4335-aecb-ab5f5a5a361c", + "id": "5c35501f-27ad-41ec-9ba2-4e24ad92eb08", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -1438,7 +1438,7 @@ "description": "The Data Management API is a web service that uses an HTTP request to manage, create or edit your Assets. The API only supports JSON. So you have to create a JSON file with your assets’ addresses and other information. You’ll need to convert, or geocode, the addresses in your file to latitude/longitude (`lat` / `long`) coordinates. Those coordinates will be used for most of Woosmap features like [local searches](https://developers.woosmap.com/products/search-api/get-started/), [stores nearby a user location](https://developers.woosmap.com/products/geolocation-api/stores/) or for displaying markers on a map with [Woosmap Javascript API](https://developers.woosmap.com/products/js-api/get-started/).\n", "item": [ { - "id": "893a87f1-544f-4540-894a-bcc8618f5847", + "id": "1dee9156-8ba3-48b1-80e5-57d50209be3c", "name": "Create your Assets", "request": { "name": "Create your Assets", @@ -1472,7 +1472,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1500,7 +1500,7 @@ }, "response": [ { - "id": "66c9bb64-e9b8-4a0d-8cc9-3b8e29c3d260", + "id": "8ae1a9b7-2c24-4387-9143-2ba507275696", "name": "Assets successfully created", "originalRequest": { "url": { @@ -1538,7 +1538,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1560,7 +1560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b93b752a-d48f-4e79-9d4e-104be8aca23b", + "id": "b8186c67-a102-4ae3-845a-09ad62e46bc7", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -1598,7 +1598,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1620,7 +1620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2feab9aa-cef1-4ff6-971a-3e21276b782a", + "id": "f9b5e102-ce7f-4224-91de-88660578dd7a", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1658,7 +1658,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1680,7 +1680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30401898-5aca-4149-86c8-e66e163d6782", + "id": "30b9c2a7-60d5-455d-bff9-c6f9109cdaff", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -1718,7 +1718,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1746,7 +1746,7 @@ } }, { - "id": "1dffd4f9-4a94-43d2-afd0-fb682673d6cf", + "id": "43136e22-c9b3-410b-afd9-e3da7b995e7b", "name": "Update the Assets", "request": { "name": "Update the Assets", @@ -1780,7 +1780,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1808,7 +1808,7 @@ }, "response": [ { - "id": "4a4bc5cd-ae94-4e83-8093-20edeef34db5", + "id": "ab3c29d4-2d08-4267-8db1-1f01a30b1d44", "name": "Assets successfully updated", "originalRequest": { "url": { @@ -1846,7 +1846,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1868,7 +1868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5cb43ab-c966-4679-899f-23506783cac5", + "id": "e777cc5a-8ef4-4ac7-9e00-1c1000d75cf2", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -1906,7 +1906,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1928,7 +1928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ced092c9-ae2e-40bb-afe5-6d389c7b50fe", + "id": "d78c4547-32c5-4854-8cb4-30b897eda55b", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1966,7 +1966,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1988,7 +1988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0270ac85-2892-48ba-803a-73ae5ca1ebf5", + "id": "c9d4588f-29d9-4fb0-98df-2df66bd68825", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2026,7 +2026,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2054,7 +2054,7 @@ } }, { - "id": "4f754124-668a-4cf5-9620-75d63c195568", + "id": "afa15d7f-e931-4a54-bbad-49b96bd5ec0e", "name": "Delete the Assets", "request": { "name": "Delete the Assets", @@ -2113,7 +2113,7 @@ }, "response": [ { - "id": "516441e0-752a-4dea-a990-1f5d422640e6", + "id": "271e83bd-ca30-4bb6-ba66-5f746cf029d4", "name": "Assets successfully deleted", "originalRequest": { "url": { @@ -2169,7 +2169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2d86eec-1ee4-45ff-8087-63ba77b2dd10", + "id": "a6d470a9-3b7a-43ac-9bd9-8839cfa18be3", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2225,7 +2225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3997530-92a0-4e3a-86c3-39bf13156e8c", + "id": "b61a9ed9-d14b-4727-ac25-79e15624510e", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2287,7 +2287,7 @@ } }, { - "id": "71ee988c-9023-45b2-a4af-c7f341a43406", + "id": "f055495e-a46e-4e37-95ca-0e293441314b", "name": "Get Asset from ID", "request": { "name": "Get Asset from ID", @@ -2348,7 +2348,7 @@ }, "response": [ { - "id": "481f387b-87a1-4d88-bf2a-2d8989892e68", + "id": "8312034c-874a-45cc-bb7e-8a1a08cccf8d", "name": "Asset successfully retrieved", "originalRequest": { "url": { @@ -2391,12 +2391,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n}", + "body": "{\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"consequat_bfc\": -83002354\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f21420d-a982-4dc2-b220-6c6beaa57a4f", + "id": "3c59d772-3743-4cd3-b86f-170923415fe1", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2444,7 +2444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42dd8d78-47e4-4fd5-adca-6f777b38707e", + "id": "129f8258-74d5-4a62-971b-7fbbe50dec30", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2492,7 +2492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18cd7ea9-da77-462b-9398-f8d8d6dbb149", + "id": "8f4cf436-9a92-45ef-83a2-5975d136d376", "name": "Not Found - `storeId` do not exist.", "originalRequest": { "url": { @@ -2534,7 +2534,7 @@ } }, { - "id": "a0cfe030-5559-41b8-9520-d1d64e6722aa", + "id": "d8a8699e-9f99-4768-8754-6dbe2b4e3eab", "name": "Replace all assets", "request": { "name": "Replace all assets", @@ -2569,7 +2569,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2597,7 +2597,7 @@ }, "response": [ { - "id": "d537e9ce-4c7a-4d5d-9bd6-cd53bb8f2881", + "id": "a8e0b9f5-145d-41d9-b586-f6c415d7eadd", "name": "Assets successfully replaced", "originalRequest": { "url": { @@ -2636,7 +2636,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2658,7 +2658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8cae562-c8f7-43c8-9e15-a0369da862a8", + "id": "1f96751c-95fd-4266-aacc-301deb39d60c", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -2697,7 +2697,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2719,7 +2719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4f857f8-bc59-4c82-b1ff-26e72dacbc81", + "id": "0ad67a5b-6896-4595-aa98-273b4d779b6e", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2758,7 +2758,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2780,7 +2780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02dafffa-2ff1-4e08-bc6b-f903c841a360", + "id": "7b43a241-1c72-4a76-b724-cc3843d05e04", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2819,7 +2819,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"Excepteur3\": 16947554.244074464\n },\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_c2\": \"eu\"\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2853,7 +2853,7 @@ "description": "Geolocation API returns a location (or nearby stores) and accuracy radius based on an IP address. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "16bf20f9-8923-4820-b4dd-4a469a40ee9e", + "id": "4aaed5d3-7651-4be6-9e9d-96b0bd517f09", "name": "Geolocation from an IP address", "request": { "name": "Geolocation from an IP address", @@ -2913,7 +2913,7 @@ }, "response": [ { - "id": "5cb29883-843c-46f1-8bbe-59fd9921e98e", + "id": "e27b7758-31ff-4279-8505-2daacfe6c106", "name": "Geolocation successfully retrieved", "originalRequest": { "url": { @@ -2970,7 +2970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ea23fe8-8183-4156-ade2-931df12517e9", + "id": "205f98f6-4dad-46e8-bb16-ba946052681c", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3027,7 +3027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e9038c9-d9fc-409c-9ef6-18747962156d", + "id": "cc4ed22b-0b02-4e42-b9ca-ecb1c953394d", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3084,7 +3084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe9985a-a18f-42e6-8d25-fe22f80655c1", + "id": "762fca20-f8d8-4f8d-9e07-c94ab4b8bf7d", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3147,7 +3147,7 @@ } }, { - "id": "59360f71-f8d9-463c-bf16-9fbfa7a8249d", + "id": "d51a5932-5309-4bd9-a058-97a185863164", "name": "Assets nearby a Geolocation", "request": { "name": "Assets nearby a Geolocation", @@ -3225,7 +3225,7 @@ }, "response": [ { - "id": "deba737f-169e-4641-ac75-c465b2cbd075", + "id": "ac1f2a93-ccd1-43b7-b21b-54691fbe3465", "name": "Geolocation and Stores successufully retrieved", "originalRequest": { "url": { @@ -3295,12 +3295,12 @@ "value": "application/json" } ], - "body": "{\n \"stores\": {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"do_6e\": -81650304.54683317,\n \"Lorem_5\": 55101635\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"accuracy\": \"\",\n \"latitude\": \"\",\n \"longitude\": \"\",\n \"country_code\": \"\",\n \"country_name\": \"\",\n \"continent\": \"\",\n \"region_state\": \"\",\n \"city\": \"\",\n \"postal_code\": \"\",\n \"timezone\": \"\",\n \"raw_offset\": \"\",\n \"dst_offset\": \"\"\n}", + "body": "{\n \"stores\": {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"dolor_f4\": \"quis ullamco fugiat commodo\",\n \"minim41\": \"deserunt velit cupidatat ullamco Duis\"\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"in3fd\": -83457967.33079198,\n \"incididunt_a8\": \"voluptate dolor reprehenderit\",\n \"ea94\": 17953500\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"accuracy\": \"\",\n \"latitude\": \"\",\n \"longitude\": \"\",\n \"country_code\": \"\",\n \"country_name\": \"\",\n \"continent\": \"\",\n \"region_state\": \"\",\n \"city\": \"\",\n \"postal_code\": \"\",\n \"timezone\": \"\",\n \"raw_offset\": \"\",\n \"dst_offset\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e643218f-cce8-49c6-ac4d-56237da4746d", + "id": "59483e42-74e9-4a4e-8ed4-f02be63daa40", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3375,7 +3375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cdab6d7-8cad-407d-a580-daab035b6c6a", + "id": "fe7d5b26-761a-4481-9940-139b249deaf3", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3450,7 +3450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e668f27-7315-462c-bf30-7e58b2681800", + "id": "cbcbf969-1978-42d9-8c63-97f1be8df60b", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3531,7 +3531,7 @@ } }, { - "id": "663ab7c7-18d3-48e2-9a21-ca68fa9d5ed6", + "id": "e19f8260-9933-4118-aaae-e08780b10f17", "name": "Timezone", "request": { "name": "Timezone", @@ -3600,7 +3600,7 @@ }, "response": [ { - "id": "724e668d-ef68-4c99-b77c-860cb99b177b", + "id": "7e14f537-6ffd-4307-9a9b-4fe9e6feacf5", "name": "Timezone successfully retrieved", "originalRequest": { "url": { @@ -3666,7 +3666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89c9a8a4-c7aa-4548-94e2-9284e3c78607", + "id": "b2a988a7-4b88-42e2-b019-e90f498b82a7", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3732,7 +3732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab66425b-dd13-4689-ba02-ed1ef87abfd3", + "id": "fb0d6779-cc61-439a-a8ac-b1c299992ae8", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3798,7 +3798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "282843a5-dca2-4ba3-ab0e-64613bc81f22", + "id": "b86fc213-a399-49c4-abb5-f0ee3567ce0e", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3876,7 +3876,7 @@ "description": "Woosmap Localities API is a web service that returns a great amount of geographical places in response to an HTTP request. Among others are city names, postal codes, suburbs, addresses or airports. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "55486c5a-aaff-4290-9615-b42a6b34384d", + "id": "ed4f35a5-20f4-4906-a32a-a8b94840965d", "name": "Autocomplete for Localities", "request": { "name": "Autocomplete for Localities", @@ -3908,11 +3908,11 @@ { "disabled": false, "description": { - "content": "The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: an alias that groups all localities (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`)\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "locality|postal_code" + "value": "quarter" }, { "disabled": false, @@ -3966,7 +3966,7 @@ "type": "text/plain" }, "key": "data", - "value": "standard" + "value": "advanced" }, { "disabled": false, @@ -4017,7 +4017,7 @@ }, "response": [ { - "id": "a0d0eeca-0434-469c-bd9f-e6be209fc62d", + "id": "d959b842-fe78-4788-9ba3-6a8c8a637245", "name": "Autocompletion Localities successfully retrieved", "originalRequest": { "url": { @@ -4044,11 +4044,11 @@ { "disabled": false, "description": { - "content": "The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: an alias that groups all localities (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`)\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "locality|postal_code" + "value": "quarter" }, { "disabled": false, @@ -4102,7 +4102,7 @@ "type": "text/plain" }, "key": "data", - "value": "standard" + "value": "advanced" }, { "disabled": false, @@ -4150,12 +4150,12 @@ "value": "application/json" } ], - "body": "{\n \"localities\": [\n {\n \"public_id\": \"\",\n \"types\": [\n \"museum\",\n \"town\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n },\n {\n \"public_id\": \"\",\n \"types\": [\n \"city\",\n \"metro_station\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n }\n ]\n}", + "body": "{\n \"localities\": [\n {\n \"public_id\": \"\",\n \"types\": [\n \"hamlet\",\n \"neighbourhood\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n },\n {\n \"public_id\": \"\",\n \"types\": [\n \"admin_level\",\n \"country\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "713bc858-7f53-465d-b69d-df483f650757", + "id": "b60f8637-dbe0-4570-b6d2-b609d70b26e1", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -4182,11 +4182,11 @@ { "disabled": false, "description": { - "content": "The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: an alias that groups all localities (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`)\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "locality|postal_code" + "value": "quarter" }, { "disabled": false, @@ -4240,7 +4240,7 @@ "type": "text/plain" }, "key": "data", - "value": "standard" + "value": "advanced" }, { "disabled": false, @@ -4293,7 +4293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51beeadf-d0cc-45eb-9735-aadb2297ccae", + "id": "a7045dbd-fe39-424e-8719-670601eca24d", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -4320,11 +4320,11 @@ { "disabled": false, "description": { - "content": "The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: an alias that groups all localities (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`)\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "locality|postal_code" + "value": "quarter" }, { "disabled": false, @@ -4378,7 +4378,7 @@ "type": "text/plain" }, "key": "data", - "value": "standard" + "value": "advanced" }, { "disabled": false, @@ -4431,7 +4431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c31d640e-8f6d-4279-aa9e-16d673fdd058", + "id": "c31b2615-74a9-4b73-9dcc-9677fe4483d4", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -4458,11 +4458,11 @@ { "disabled": false, "description": { - "content": "The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: an alias that groups all localities (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`)\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "locality|postal_code" + "value": "quarter" }, { "disabled": false, @@ -4516,7 +4516,7 @@ "type": "text/plain" }, "key": "data", - "value": "standard" + "value": "advanced" }, { "disabled": false, @@ -4575,7 +4575,7 @@ } }, { - "id": "9a66fa74-f8f2-4952-b1db-5e8ef1149feb", + "id": "704b8d57-b33a-4261-9daa-1b0da153dd22", "name": "Details of a Locality", "request": { "name": "Details of a Locality", @@ -4629,7 +4629,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -4680,7 +4680,7 @@ }, "response": [ { - "id": "b182e0d7-0652-4ad5-a6b8-603fcb6c5e72", + "id": "8b74387c-10de-4d6f-b2ab-d06913161deb", "name": "Details Localities successfully retrieved", "originalRequest": { "url": { @@ -4729,7 +4729,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -4777,12 +4777,12 @@ "value": "application/json" } ], - "body": "{\n \"result\": {\n \"public_id\": \"\",\n \"formatted_address\": \"\",\n \"types\": [\n \"route\",\n \"locality\"\n ],\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n },\n \"accuracy\": \"POSTAL_CODE\"\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"name\": \"\",\n \"administrative_area_label\": \"\",\n \"status\": \"not_yet_built\",\n \"addresses\": {\n \"pagination\": {\n \"page\": \"\",\n \"page_count\": \"\",\n \"addresses_per_page\": \"\",\n \"address_count\": \"\"\n },\n \"list\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"result\": {\n \"public_id\": \"\",\n \"formatted_address\": \"\",\n \"types\": [\n \"town\",\n \"postal_code\"\n ],\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n },\n \"accuracy\": \"APPROXIMATE\"\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"name\": \"\",\n \"administrative_area_label\": \"\",\n \"status\": \"not_yet_built\",\n \"addresses\": {\n \"pagination\": {\n \"page\": \"\",\n \"page_count\": \"\",\n \"addresses_per_page\": \"\",\n \"address_count\": \"\"\n },\n \"list\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e35ce424-3a74-4fa0-86e8-98fed1f81c61", + "id": "a278222a-b1a7-464b-b619-68e1b037077e", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -4831,7 +4831,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -4884,7 +4884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdeb8440-3f72-45a5-9354-ab016ba7d335", + "id": "724ae44c-9ddd-4356-b931-5ccbba62b0bd", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -4933,7 +4933,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -4986,7 +4986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63c52465-825d-461e-be96-e1e407436327", + "id": "547dae2d-37a5-4c53-894d-d2cbfb4025ff", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -5035,7 +5035,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -5094,7 +5094,7 @@ } }, { - "id": "55c45cd1-595b-44ae-a254-e24bdf51f495", + "id": "26152665-8d9c-437a-b60d-49699f708555", "name": "Geocode a locality or Reverse Geocode a latlng", "request": { "name": "Geocode a locality or Reverse Geocode a latlng", @@ -5135,11 +5135,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", "type": "text/plain" }, "key": "types", - "value": "locality|postal_code|address" + "value": "quarter" }, { "disabled": false, @@ -5193,7 +5193,7 @@ "type": "text/plain" }, "key": "data", - "value": "standard" + "value": "advanced" }, { "disabled": false, @@ -5202,7 +5202,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" } ], "variable": [] @@ -5235,7 +5235,7 @@ }, "response": [ { - "id": "4a074be3-ae4b-4bd9-81e5-16b760fd4b47", + "id": "8f667606-4bbb-4b5b-99f3-7cd87b2790d2", "name": "Request Localities Geocode successful", "originalRequest": { "url": { @@ -5271,11 +5271,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", "type": "text/plain" }, "key": "types", - "value": "locality|postal_code|address" + "value": "quarter" }, { "disabled": false, @@ -5329,7 +5329,7 @@ "type": "text/plain" }, "key": "data", - "value": "standard" + "value": "advanced" }, { "disabled": false, @@ -5338,7 +5338,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -5368,12 +5368,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"quarter\",\n \"hamlet\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"POSTAL_CODE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"MultiPoligon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"address\",\n \"zoo\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"DISTRICT\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"hamlet\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"MultiPoligon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"locality\",\n \"quarter\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"DISTRICT\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1d88a41-9291-4d9d-b65d-876ed8d93e66", + "id": "7ce03b06-7e25-4f30-8afc-251ec39760ab", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -5409,11 +5409,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", "type": "text/plain" }, "key": "types", - "value": "locality|postal_code|address" + "value": "quarter" }, { "disabled": false, @@ -5467,7 +5467,7 @@ "type": "text/plain" }, "key": "data", - "value": "standard" + "value": "advanced" }, { "disabled": false, @@ -5476,7 +5476,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -5511,7 +5511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7733f592-3882-4a2b-be25-ea83d718a779", + "id": "92411dd2-89dd-43a2-b7eb-ab8eb29d9e40", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -5547,11 +5547,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", "type": "text/plain" }, "key": "types", - "value": "locality|postal_code|address" + "value": "quarter" }, { "disabled": false, @@ -5605,7 +5605,7 @@ "type": "text/plain" }, "key": "data", - "value": "standard" + "value": "advanced" }, { "disabled": false, @@ -5614,7 +5614,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -5649,7 +5649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70dd0ba0-0364-4876-b325-9f88fd5de945", + "id": "9d3bbb20-1a25-46f0-b1c2-2f7e59e25985", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -5685,11 +5685,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n * `airport`: includes all medium sized to international sized airports\n * `train_station`: includes all train stations\n * `metro_station`: includes all metro stations\n * `shopping`: includes shopping malls (or \"shopping centers\") - *may include private retail brands*\n * `museum`: includes museums\n * `tourist_attraction`: includes tourist attractions like the Eiffel tower\n * `amusement_park`: includes amusement parks like Disneyland Paris\n * `art_gallery`: includes art galleries\n * `zoo`: includes zoos\n", + "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", "type": "text/plain" }, "key": "types", - "value": "locality|postal_code|address" + "value": "quarter" }, { "disabled": false, @@ -5743,7 +5743,7 @@ "type": "text/plain" }, "key": "data", - "value": "standard" + "value": "advanced" }, { "disabled": false, @@ -5752,7 +5752,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -5793,7 +5793,7 @@ } }, { - "id": "af0a329d-b750-426b-837d-fc3c10a87e77", + "id": "2838c18d-c592-4572-b633-68bef9987d84", "name": "Nearby points of interest", "request": { "name": "Nearby points of interest", @@ -5820,7 +5820,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.finance" + "value": "business.food_and_drinks.bar" }, { "disabled": false, @@ -5865,7 +5865,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.finance" + "value": "business.food_and_drinks.bar" } ], "variable": [] @@ -5898,7 +5898,7 @@ }, "response": [ { - "id": "ab17b77f-86a6-4a34-9776-c94d513c5fb9", + "id": "69eac816-10c0-4ab0-8ff2-9c5a390b7580", "name": "Points of interests surrounding `location` and matching provided `types`, sorted by distance to `location`.", "originalRequest": { "url": { @@ -5920,7 +5920,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.finance" + "value": "business.food_and_drinks.bar" }, { "disabled": false, @@ -5965,7 +5965,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.finance" + "value": "business.food_and_drinks.bar" }, { "description": { @@ -5995,12 +5995,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"types\": [\n \"hospitality.motel\",\n \"tourism.attraction\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business\",\n \"point_of_interest\"\n ],\n \"formatted_address\": \"\"\n },\n {\n \"types\": [\n \"post_office\",\n \"sports\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.shop.craft\",\n \"park\"\n ],\n \"formatted_address\": \"\"\n }\n ],\n \"pagination\": {\n \"next_page\": \"\",\n \"previous_page\": \"\"\n }\n}", + "body": "{\n \"results\": [\n {\n \"types\": [\n \"business.shop.doityourself\",\n \"medical.hospital\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.car_rental\",\n \"education.kindergarten\"\n ],\n \"formatted_address\": \"\"\n },\n {\n \"types\": [\n \"business.shop.electronics\",\n \"business.car_repair\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.shop.sports\",\n \"business.cinema\"\n ],\n \"formatted_address\": \"\"\n }\n ],\n \"pagination\": {\n \"next_page\": \"\",\n \"previous_page\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd2b1860-a7b0-4ef4-a7a4-08d4ab13301e", + "id": "90ec3b13-feb3-4c59-9c68-860c6b124c1e", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6022,7 +6022,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.finance" + "value": "business.food_and_drinks.bar" }, { "disabled": false, @@ -6067,7 +6067,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.finance" + "value": "business.food_and_drinks.bar" }, { "description": { @@ -6102,7 +6102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c23a4bb0-d2ad-4b37-a249-802e1ced5d09", + "id": "f15c2591-eb1a-4f72-af8c-1c65f76a9390", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -6124,7 +6124,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.finance" + "value": "business.food_and_drinks.bar" }, { "disabled": false, @@ -6169,7 +6169,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.finance" + "value": "business.food_and_drinks.bar" }, { "description": { @@ -6204,7 +6204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d918883-a82e-4e0e-aaf5-c75770f33235", + "id": "0e6c7394-6c85-4301-b3f6-263a8d766909", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -6226,7 +6226,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.finance" + "value": "business.food_and_drinks.bar" }, { "disabled": false, @@ -6271,7 +6271,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.finance" + "value": "business.food_and_drinks.bar" }, { "description": { @@ -6318,7 +6318,7 @@ "description": "Woosmap Address API is a web service that returns addresses and other geographical places in response to an HTTP request. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n>**⚠️ This API has been deprecated in favour of Localities API**\n", "item": [ { - "id": "12fd69f8-46f5-4ef8-98df-364319033eb4", + "id": "1e8bdc52-4201-4fd1-8efa-e21c5f9de01f", "name": "Autocomplete for Addresses", "request": { "name": "Autocomplete for Addresses", @@ -6406,7 +6406,7 @@ }, "response": [ { - "id": "e88c4c51-60b2-4037-826f-be930f694d45", + "id": "e9fe7d14-a5bf-40c3-9b35-0e1827ddc5a6", "name": "Autocompletion Address successfully retrieved", "originalRequest": { "url": { @@ -6486,12 +6486,12 @@ "value": "application/json" } ], - "body": "{\n \"predictions\": [\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"house_number\",\n \"status\": \"INVALID_REQUEST\"\n },\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"locality\",\n \"status\": \"UNKNOWN_ERROR\"\n }\n ],\n \"status\": \"UNKNOWN_ERROR\"\n}", + "body": "{\n \"predictions\": [\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"country\",\n \"status\": \"REQUEST_DENIED\"\n },\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"country\",\n \"status\": \"UNKNOWN_ERROR\"\n }\n ],\n \"status\": \"INVALID_REQUEST\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7369d59f-fde1-4cc4-90f5-f8c111673e70", + "id": "09a820b6-de3a-4235-9868-afdd94c1c01b", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6576,7 +6576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19f3f69e-628e-4573-bdf6-beeaca7fed05", + "id": "9ff85be3-181a-4670-9627-f7843ffdcaf6", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -6661,7 +6661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56634bf5-697a-47ec-9bb4-692d1204150c", + "id": "debbef08-3b2e-4fb3-b798-f477e8baada5", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -6752,7 +6752,7 @@ } }, { - "id": "2780559c-44f2-488e-9b44-63c0d68ade4b", + "id": "c7eb4683-3572-405a-9cb6-4552d4a9672f", "name": "Details of an Address", "request": { "name": "Details of an Address", @@ -6798,7 +6798,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" } ], "variable": [] @@ -6831,7 +6831,7 @@ }, "response": [ { - "id": "af7695c5-2f74-48d8-9f9b-1a1fc74ece55", + "id": "1e05de41-8538-45d2-9763-e6f28b27ebde", "name": "Details Address successfully retrieved", "originalRequest": { "url": { @@ -6872,7 +6872,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -6902,12 +6902,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"REQUEST_DENIED\",\n \"result\": {\n \"formatted_address\": \"\",\n \"types\": [\n \"house_number\",\n \"admin_level\"\n ],\n \"public_id\": \"\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n}", + "body": "{\n \"status\": \"UNKNOWN_ERROR\",\n \"result\": {\n \"formatted_address\": \"\",\n \"types\": [\n \"locality\",\n \"route\"\n ],\n \"public_id\": \"\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3bdbd7e-019e-4819-b90c-b0fb7ba5f163", + "id": "4a4ef72c-03ce-4061-ac41-0145dc8473d2", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6948,7 +6948,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -6983,7 +6983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d9487bd-02d9-4b9f-8413-e207ebf6d33b", + "id": "34a78d70-f1fe-4c03-a14e-47e26fa5f5eb", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -7024,7 +7024,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -7059,7 +7059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcf14bae-195d-4715-b915-910892b3afb0", + "id": "6117e117-900e-4644-90a0-e2c861a24981", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -7100,7 +7100,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -7141,7 +7141,7 @@ } }, { - "id": "d5fa9a46-86c6-490c-bcd1-29963c816ba2", + "id": "84ec4612-918e-416d-b1f7-e37b94f38b16", "name": "Geocode an Address or Reverse Geocode a latlng", "request": { "name": "Geocode an Address or Reverse Geocode a latlng", @@ -7214,7 +7214,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -7256,7 +7256,7 @@ }, "response": [ { - "id": "fb81fb53-ef91-47be-87e9-442e6e98e56d", + "id": "d683c447-58ab-4b8b-b04d-316dadfe1be9", "name": "Request Address Geocode successful", "originalRequest": { "url": { @@ -7324,7 +7324,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -7363,12 +7363,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"locality\",\n \"place\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"address_block\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"APPROXIMATE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"OK\"\n}", + "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"admin_level\",\n \"address_block\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"APPROXIMATE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"address_block\",\n \"admin_level\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"ROOFTOP\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"UNKNOWN_ERROR\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d53097a6-8089-46ca-abca-7c31e2367940", + "id": "e904dc65-d37c-4c5a-b40d-3ad5c733d8f2", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -7436,7 +7436,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -7480,7 +7480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "255bb19b-e330-478b-a5ae-7bfd99d1480b", + "id": "85b1a7ab-6cf2-4592-91bd-f64d1dd7d52c", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -7548,7 +7548,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -7592,7 +7592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e697ad2-a59f-4da4-b55f-d546f04c35a4", + "id": "6b437ec3-6782-42f8-a960-f1a185d313b3", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -7660,7 +7660,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -7716,7 +7716,7 @@ "description": "Woosmap Distance API is a service providing road travel distance and duration calculations, on a Worldwide scale. Request is done over HTTPS using GET or POST. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "a32ab16b-7bb0-4019-b2fa-7f0d82eb2f50", + "id": "814a2b9c-f1bd-4260-8dac-1717ec30b5dc", "name": "Distance Matrix", "request": { "name": "Distance Matrix", @@ -7780,7 +7780,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -7849,7 +7849,7 @@ }, "response": [ { - "id": "cbd3a2ba-d3e1-457f-af56-352b1195d27d", + "id": "46008cae-96a9-44d2-a35c-eade632cd37b", "name": "Distance Matrix successfully retrieved", "originalRequest": { "url": { @@ -7908,7 +7908,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -7974,12 +7974,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"OK\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"OK\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "488595ef-56b9-43fe-8a69-b132486518bd", + "id": "07799284-e79e-4ff0-9644-93ecc882571f", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -8038,7 +8038,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -8109,7 +8109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad37d8a0-cd53-405f-957b-74c0a0c81864", + "id": "e236d884-9711-43a1-ad96-605011cf310c", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -8168,7 +8168,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -8239,7 +8239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb3c5b8a-ca78-4877-863d-139dfb21137b", + "id": "cc3988c3-6b12-435e-84c7-18cf0e6e453c", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -8298,7 +8298,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -8375,7 +8375,7 @@ } }, { - "id": "6e2d0f7b-e435-464f-a326-b28c17f88612", + "id": "a4660560-051d-48ae-b3fa-6448da36e4a1", "name": "Distance Matrix using POST", "request": { "name": "Distance Matrix using POST", @@ -8411,7 +8411,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8439,7 +8439,7 @@ }, "response": [ { - "id": "f895a20c-f959-45cf-a0db-e5ea9dd7f5fc", + "id": "a78efda8-6699-4cd7-94ea-d384948b1010", "name": "Distance Matrix with POST successfully retrieved", "originalRequest": { "url": { @@ -8479,7 +8479,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8496,12 +8496,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"OK\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"OK\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8216feb9-3563-45b7-afb3-62e76275693a", + "id": "272074c1-5af2-4d07-9128-6b3eb8a12f9c", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -8541,7 +8541,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8563,7 +8563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdad33bb-6605-4cf5-8ff3-5f18718ed9a1", + "id": "ce5816a3-4857-4091-a19e-4b0c33a3ed22", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -8603,7 +8603,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8625,7 +8625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "585c4f3e-b67d-4e25-8b3d-a0946d025d7e", + "id": "853f7933-d783-41dd-86f0-2a6e592f0439", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -8665,7 +8665,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8687,7 +8687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f6e99bd-5d6f-4d0c-a6a6-2c244b784f9c", + "id": "910dc8dc-5b74-4ab4-ae3c-6964ab13b4eb", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -8727,7 +8727,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8755,7 +8755,7 @@ } }, { - "id": "2560f03d-7fad-4a2e-9835-358a778af15a", + "id": "082a9804-13c1-4fb2-8a25-0c8171b5ca9d", "name": "Route", "request": { "name": "Route", @@ -8819,7 +8819,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -8855,7 +8855,7 @@ "type": "text/plain" }, "key": "details", - "value": "none" + "value": "full" }, { "disabled": false, @@ -8915,7 +8915,7 @@ }, "response": [ { - "id": "6a59d220-3b93-465d-b173-b89a88f52f32", + "id": "40a16d0f-d759-4182-99f4-49e89aa4db19", "name": "Route successfully retrieved", "originalRequest": { "url": { @@ -8974,7 +8974,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9010,7 +9010,7 @@ "type": "text/plain" }, "key": "details", - "value": "none" + "value": "full" }, { "disabled": false, @@ -9067,12 +9067,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"MAX_ROUTE_LENGTH_EXCEEDED\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n }\n ]\n}", + "body": "{\n \"status\": \"OK\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1266519-00b3-462c-9267-24d05173953b", + "id": "d7f314bb-e6e6-43fc-99c3-68ab29d35641", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -9131,7 +9131,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9167,7 +9167,7 @@ "type": "text/plain" }, "key": "details", - "value": "none" + "value": "full" }, { "disabled": false, @@ -9229,7 +9229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "201b1144-ecda-49c9-b823-ec06839c6c3b", + "id": "ba25bb72-9b5c-4d8a-af84-2f9568e1b8aa", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -9288,7 +9288,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9324,7 +9324,7 @@ "type": "text/plain" }, "key": "details", - "value": "none" + "value": "full" }, { "disabled": false, @@ -9386,7 +9386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4145f2f-d99b-42ee-8193-dd69f6bf7d84", + "id": "794b00f1-def7-4ef6-bbc9-568c1d42c3ca", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -9445,7 +9445,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9481,7 +9481,7 @@ "type": "text/plain" }, "key": "details", - "value": "none" + "value": "full" }, { "disabled": false, @@ -9549,7 +9549,7 @@ } }, { - "id": "b246bf0f-0575-4f35-84ea-11587c60e691", + "id": "a93fa960-9d6d-41b5-9650-96ebfdbd6ba8", "name": "Tolls", "request": { "name": "Tolls", @@ -9613,7 +9613,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9691,7 +9691,7 @@ }, "response": [ { - "id": "f4811c97-815f-438d-a2f7-85c234fcc4ee", + "id": "f9faaa9a-428e-4732-8c93-4279f250393a", "name": "Tolls successfully retrieved", "originalRequest": { "url": { @@ -9750,7 +9750,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9825,12 +9825,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"MAX_ROUTE_LENGTH_EXCEEDED\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"deserunt_7\": -6760152\n },\n {\n \"countryCode\": \"\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"proident_372\": -72682355\n },\n {\n \"countryCode\": \"\",\n \"ut_e\": 91507570.37232453\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"reprehenderit_699\": -32126618.85673049\n },\n {\n \"countryCode\": \"\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"ex_c\": 99213967,\n \"tempor4c\": -90025683.22520848\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"BACKEND_ERROR\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"incididuntef\": -18292961,\n \"cupidatat_0e6\": 38953076.60657212\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"fugiatf\": 18074965.10787639\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"reprehenderitae\": 87726245,\n \"doloreb1e\": true,\n \"ide\": \"adipisicing amet ipsum officia\"\n },\n {\n \"countryCode\": \"\",\n \"ida\": 12390065.641139045,\n \"voluptatee\": \"nostrud\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"proident_\": \"commodo sed cupidatat\",\n \"ut861\": \"ipsum sint qui\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ef07b87-c3ba-406e-aa89-fe4a91d5a794", + "id": "b5f4e6af-2be1-4dd4-930f-3ac1324db956", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -9889,7 +9889,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9969,7 +9969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90d8ad14-79c6-43de-b637-88d85961f306", + "id": "c0b3f044-4bdf-4edc-8a38-dd8aca7dc567", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -10028,7 +10028,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10108,7 +10108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b0cdfd4-6e4c-43d6-8c67-a149a596cafd", + "id": "cbc12644-41f6-4280-ba94-c2936cf4c50d", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -10167,7 +10167,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10253,7 +10253,7 @@ } }, { - "id": "2734cf59-7c6d-4214-8b44-147daa1e587c", + "id": "2d71d862-d09d-4f21-bfd8-f5927e402e05", "name": "Isochrone (Early Access)", "request": { "name": "Isochrone (Early Access)", @@ -10317,7 +10317,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10368,7 +10368,7 @@ }, "response": [ { - "id": "babab174-f731-4b5f-b7ea-294bdf91ba96", + "id": "1b2533a1-f327-4c84-b318-3f8083bb1402", "name": "Isochrone successfully retrieved", "originalRequest": { "url": { @@ -10427,7 +10427,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10475,12 +10475,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"MAX_ROUTE_LENGTH_EXCEEDED\",\n \"isoline\": {\n \"origin\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"time\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"geometry\": \"\"\n }\n}", + "body": "{\n \"status\": \"REQUEST_DENIED\",\n \"isoline\": {\n \"origin\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"time\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"geometry\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "75087e20-169a-4a58-9bf4-61398e2350c0", + "id": "01fbaa2a-a0c1-46d8-9e12-be62957288bd", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -10539,7 +10539,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10592,7 +10592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9fa3460-1654-47fe-90bd-f1d0a1021e8a", + "id": "dd1beeda-7e38-4ecf-85fb-0719d882e52f", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -10651,7 +10651,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10704,7 +10704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "550cfb09-f1e1-44d3-b446-645ac4daac1f", + "id": "afb01d0d-5dee-4b77-949d-2d4cb50337bf", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -10763,7 +10763,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10828,7 +10828,7 @@ "description": "Woosmap Zones API is a web service that uses an HTTP request to manage, create or edit your Zones (polygons) attached to your assets.\nThe general principle is that sometimes searching assets using crowfly distance is not good enough. For example to search the restaurant that will do the delivery for a specified address, each restaurant has a delivery zone and for topological or business reasons it’s not always the nearest restaurant in charge of your delivery. Woosmap Zones API allows you to associate a delivery zone to each of the restaurants.\n", "item": [ { - "id": "3efe0e96-9ca7-4544-865d-3f6f348b0915", + "id": "57a3f943-8980-4c67-afa6-55aa141d4bcb", "name": "List your Zones", "request": { "name": "List your Zones", @@ -10896,7 +10896,7 @@ }, "response": [ { - "id": "769fe682-0a04-4c6d-b5a1-8ae21afae819", + "id": "f15b3756-35b0-4028-806b-959690374b1c", "name": "Zones successfully retrieved", "originalRequest": { "url": { @@ -10961,7 +10961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4d8576f-8456-45eb-b038-292ea0eead34", + "id": "b163ec05-5a9b-449d-8d2f-5002032b1da5", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11026,7 +11026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c30120a-957f-4dd3-a6d3-492dda37c747", + "id": "8239a94f-bc72-4e64-850d-23d373db4125", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11091,7 +11091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eff7577c-4b12-4baa-ba26-19e9b608542d", + "id": "1f98542a-c29c-4f49-bc86-7c0adc308858", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -11162,7 +11162,7 @@ } }, { - "id": "e0a4e982-7e15-4cb2-8eac-4075a870e2e9", + "id": "4fde4ca8-6818-4b47-b244-6c9f6b119db0", "name": "Create your Zones", "request": { "name": "Create your Zones", @@ -11224,7 +11224,7 @@ }, "response": [ { - "id": "7c6199ae-f081-49e8-bec0-7752f1ff77f2", + "id": "820f38e4-8f3c-4604-bdf7-57e090291c99", "name": "Zones successfully created", "originalRequest": { "url": { @@ -11284,7 +11284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a257a51-3997-4e2e-bc19-ef82ebbbc494", + "id": "87acb79c-5d70-4b51-ad49-c744c6ea94c6", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -11344,7 +11344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a963fdc2-799d-4093-8d3c-18d2c4cc49cf", + "id": "f313ff5d-f611-4d90-8b9e-765163cd8da0", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11404,7 +11404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad3ccaaf-686a-43c9-a03a-f7dbd7db8c08", + "id": "d1510d68-6559-46dc-b280-1c564a148111", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11470,7 +11470,7 @@ } }, { - "id": "83ee4be1-f522-4fe9-bee2-642f6e55bda7", + "id": "64c1da35-5013-46b0-b816-3d3e05b8a22d", "name": "Update the Zones", "request": { "name": "Update the Zones", @@ -11532,7 +11532,7 @@ }, "response": [ { - "id": "55dd0e1d-cd83-42e8-acfb-7f26ff7de79f", + "id": "54c1c853-59e3-4652-ad0b-37bc9daa871c", "name": "Zones successfully updated", "originalRequest": { "url": { @@ -11592,7 +11592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29c6541a-298b-48d3-b865-6a2e47e91c60", + "id": "e1745cb3-0d2f-4545-aa6e-80b682e8a9a6", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -11652,7 +11652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57c44019-4258-4960-88fc-d2d5bddfbb99", + "id": "69e1ebf7-6a80-46ec-b82c-dd67f10ecbb5", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11712,7 +11712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d61bfd57-37f8-48f3-82e9-fa889808ca41", + "id": "ea5d071a-5399-4522-8cef-690c1379b35a", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11778,7 +11778,7 @@ } }, { - "id": "7232f6af-c21f-4801-8495-1eab7c92c0e3", + "id": "69e58c45-f0fb-4ec0-a9e7-1eda0e91513b", "name": "Delete the Zones", "request": { "name": "Delete the Zones", @@ -11827,7 +11827,7 @@ }, "response": [ { - "id": "fea98091-4d2b-47ee-b743-d5c355a13728", + "id": "0f9aff8a-7f56-4d15-baf7-1c39e616ce65", "name": "Zones successfully deleted", "originalRequest": { "url": { @@ -11874,7 +11874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fca6ddec-f496-4106-b60f-6a7977d25d12", + "id": "5179e252-f715-413b-8e6c-1bed6fdfd2fa", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11921,7 +11921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "609926c2-6680-4e80-856b-60379c62597c", + "id": "50be67a8-9252-45ab-b2ff-19be5292207a", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11974,7 +11974,7 @@ } }, { - "id": "9c2a0fa3-72ce-446a-8155-ec852bc95990", + "id": "e267be51-bae7-4704-befd-e47b8dbc8560", "name": "Get Zone from ID", "request": { "name": "Get Zone from ID", @@ -12035,7 +12035,7 @@ }, "response": [ { - "id": "781aa173-8657-4f25-9eef-ac7790e664e7", + "id": "b833391c-f7f0-43ed-87b0-85e3d23bf8e5", "name": "Zone successfully retrieved", "originalRequest": { "url": { @@ -12083,7 +12083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b08f6fc-5aaa-4901-830d-af72fd24d76c", + "id": "d31cb81f-39e3-41f7-92f0-3ec368a47064", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -12131,7 +12131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fade0cdd-de5d-48c1-8713-9d8a71fdef51", + "id": "388887bc-edd8-4151-a8f1-b118fa61fda1", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -12179,7 +12179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9f04205-8002-44a2-b00e-d8d8932dccc6", + "id": "c85f2234-b170-46e4-bd9f-b296aa445c18", "name": "Not Found - `zone_id` do not exist.", "originalRequest": { "url": { @@ -12221,7 +12221,7 @@ } }, { - "id": "e8c5cf28-bdea-49f0-a7ec-3d5fee15c886", + "id": "cd81cf21-3100-40b2-9a09-5ce77cd65817", "name": "Delete Zone from ID", "request": { "name": "Delete Zone from ID", @@ -12282,7 +12282,7 @@ }, "response": [ { - "id": "97af26f0-9db8-4277-924c-434c1d1bc85b", + "id": "9c509ae7-36f1-40a8-b4f4-ec4eb34179f5", "name": "Zones successfully deleted", "originalRequest": { "url": { @@ -12330,7 +12330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec6155fb-7d46-490b-9115-f6d0f16c03a1", + "id": "80fbbccf-e28b-4663-8859-7d27b8ceb248", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -12378,7 +12378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bb63fa7-bd62-4109-9843-4a644ee2c435", + "id": "fb4dd34d-2a8e-4e9e-9be5-e43bac1fe3d6", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -12438,7 +12438,7 @@ "description": "The Woosmap Static Maps API lets you generate customizable, embeddable map images using simple HTTP requests. It’s a lightweight alternative to interactive maps—ideal for emails, reports, or websites where dynamic JavaScript maps aren't needed. \n\nYou provide parameters such as location, zoom level, size, and markers, and the API returns a map image that can be embedded directly into any webpage or application.\n", "item": [ { - "id": "17881533-2322-4802-840c-612451a53933", + "id": "01cc3a5d-3432-4b44-8d85-00d010c07aec", "name": "Get Static Map", "request": { "name": "Get Static Map", @@ -12612,7 +12612,7 @@ }, "response": [ { - "id": "3ea91c41-6abc-4a7e-a50d-7987caf7d78c", + "id": "2ffa04ca-a16f-492a-9695-cce3b000ec8d", "name": "Successful Response", "originalRequest": { "url": { @@ -12756,7 +12756,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8511c8d1-2a0b-4f0b-b220-7d12d1d7550a", + "id": "9ee9081c-56dc-4dcf-b2b1-c99ae3067ba2", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -12900,7 +12900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96cdafb4-0345-4f28-a39d-90e537259ee3", + "id": "8d681f29-525a-49e3-b7de-e2a1e889be71", "name": "Out of free quota.", "originalRequest": { "url": { @@ -13044,7 +13044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d515a229-90e2-4c26-b64e-b2ebfef7c24e", + "id": "d9537f01-f2e7-4a8d-a472-1ff81c2f8cad", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -13188,7 +13188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "200cea6e-e82c-44a6-8441-b9239b7ff36e", + "id": "5da525c4-92c2-4a11-aa17-f399ed7f49fd", "name": "Validation Error", "originalRequest": { "url": { @@ -13332,7 +13332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5087a940-943b-4c7f-abff-5dab64f1677e", + "id": "6ccddb9e-5642-48cf-ae24-190e769dac95", "name": "Rate limit reached", "originalRequest": { "url": { @@ -13488,7 +13488,7 @@ "description": "Add What3Words capabilities to your address search.", "item": [ { - "id": "89f0d80a-cb8c-402f-909a-c13e3ea2fe8d", + "id": "9e7379b1-dd0e-4f36-9102-ed50d432f2fa", "name": "Convert To What 3 Words", "request": { "name": "Convert To What 3 Words", @@ -13563,7 +13563,7 @@ }, "response": [ { - "id": "7d009c5a-45b9-482d-bd99-fd8fe2d0e526", + "id": "f0d3a2a4-b4f8-49b7-89c0-c5bbe534e24c", "name": "Successful Response", "originalRequest": { "url": { @@ -13635,7 +13635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "393f9210-6c69-43ae-b045-b598032e4d96", + "id": "53f51e90-ebb4-42d1-b05d-aed58a27275a", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -13707,7 +13707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "513d6874-108d-4c36-82b3-bf8d653a7fb3", + "id": "41fd9f88-0d92-4bbe-8095-a1e46905e5bf", "name": "Out of free quota.", "originalRequest": { "url": { @@ -13779,7 +13779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b555526d-8ad8-4d04-b321-5120b533f470", + "id": "821ffcf3-1ae9-4c5f-b52d-618c0cffa25d", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -13851,7 +13851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88701ed4-b7a5-46ab-8247-28fc81574247", + "id": "c7cfc0b0-8b56-44ba-9be4-490783beb8ca", "name": "Validation Error", "originalRequest": { "url": { @@ -13923,7 +13923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "407b8e70-6603-47ed-89c7-c7910dfd0af8", + "id": "fb3eba0c-8220-47d6-a09f-b108122ce158", "name": "Rate limit reached", "originalRequest": { "url": { @@ -14001,7 +14001,7 @@ } }, { - "id": "a99b20c5-ef7c-4994-bb75-fd4da8b47e6f", + "id": "97fe9d1f-4747-4d2a-8e70-32ee0785c19c", "name": "Convert To Address", "request": { "name": "Convert To Address", @@ -14067,7 +14067,7 @@ }, "response": [ { - "id": "37f1ce0a-66c3-439d-908d-5de01172b468", + "id": "3aa9e9f6-543f-48ac-81f7-873e5689b8d8", "name": "Successful Response", "originalRequest": { "url": { @@ -14125,12 +14125,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"types\": [\n \"hamlet\",\n \"admin_level\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n {\n \"types\": [\n \"admin_level\",\n \"village\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"types\": [\n \"city\",\n \"named_place\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n {\n \"types\": [\n \"route\",\n \"locality\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6e548448-6feb-43dc-be27-1e9167e4a0a5", + "id": "b4c49f20-5c52-4f6d-81df-c37ba52f409d", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -14193,7 +14193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa7776f4-03f9-4ac4-badc-97287c5d39dd", + "id": "06d32ef4-6ca1-4286-9455-a792755ff965", "name": "Out of free quota.", "originalRequest": { "url": { @@ -14256,7 +14256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bc59727-f3a8-43b2-8a85-90e64950d229", + "id": "4bbf9978-0848-4908-8034-01aaa2defc4c", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -14319,7 +14319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "186ad856-21da-45e9-be40-715ed16a4ef2", + "id": "3f717258-38fd-42c1-afcd-cf7b40fcf440", "name": "Validation Error", "originalRequest": { "url": { @@ -14382,7 +14382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc81d140-5bc1-4ea2-9488-a491f0b086ed", + "id": "35ad1aa6-1930-4ced-87a3-2530debd3f75", "name": "Rate limit reached", "originalRequest": { "url": { @@ -14451,7 +14451,7 @@ } }, { - "id": "194daa57-f04e-4724-9388-8dfad8ddb0ed", + "id": "b95de47f-e00c-4118-b532-ab31c33901b2", "name": "Autosuggest", "request": { "name": "Autosuggest", @@ -14580,7 +14580,7 @@ }, "response": [ { - "id": "203813da-002d-4d00-b3d1-318490fa1b02", + "id": "156500ff-40e3-4830-af98-45c2ef63a7d1", "name": "Successful Response", "originalRequest": { "url": { @@ -14706,7 +14706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "858120b7-6cd1-41ed-b1e2-c40572704d99", + "id": "191a426c-51fb-4653-874f-8f4c4798e81e", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -14832,7 +14832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d68c41ba-1149-4ac3-ac52-42adfdbd5839", + "id": "fe2462ad-32fe-4ff8-81d5-346cadd1ddcc", "name": "Out of free quota.", "originalRequest": { "url": { @@ -14958,7 +14958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26071ef6-cb5c-4900-ac00-9c32a7a59346", + "id": "ef01cb60-3a5c-4d27-8365-93311a53d9f5", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -15084,7 +15084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64674c61-0d4d-4648-9d56-aaf751e15d1a", + "id": "d72a441f-3da0-4bab-b7c1-50e60de03968", "name": "Validation Error", "originalRequest": { "url": { @@ -15210,7 +15210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da3daa0e-3317-48d9-8cfc-e7e38b355303", + "id": "5a4b3f44-ddd0-4798-b99d-009cc1172e4d", "name": "Rate limit reached", "originalRequest": { "url": { @@ -15348,7 +15348,7 @@ "description": "The Indoor API suite provides comprehensive tools for indoor mapping, search, and navigation in complex venues.\n\nThe Indoor Map API renders detailed floor plans with customizable styling, while the Indoor Search API enables\nprecise location searching through an intelligent POI engine with autocompletion capabilities.\n\nFor wayfinding, the Indoor Distance API calculates optimal routes between indoor points, delivering polylines\nand turn-by-turn instructions. Advanced features include custom routing profiles for different user types\n(staff, visitors, etc.) and seamless integration with external systems.\n", "item": [ { - "id": "277ae3b7-72ea-4487-bf45-c81ec241592a", + "id": "4aeb07b2-31b3-4da0-93b8-4bc3daf5c21d", "name": "Get Venue By Key", "request": { "name": "Get Venue By Key", @@ -15407,7 +15407,7 @@ }, "response": [ { - "id": "31e2b684-9cfa-408c-bb06-d7b87cd3aa02", + "id": "4da4656f-1bc8-4479-ac8b-caba39522d4c", "name": "OK", "originalRequest": { "url": { @@ -15453,7 +15453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86e8f0fb-8be6-4705-b71a-e262dbee30a8", + "id": "7b14e9e3-2ed5-47a5-a9d5-ea1fa52f9599", "name": "Unauthorized", "originalRequest": { "url": { @@ -15499,7 +15499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "730565c7-0ba1-4713-afc7-89409cb3fc6b", + "id": "905a3e74-8ca6-41a9-ada8-418cd22d177f", "name": "Payment Required", "originalRequest": { "url": { @@ -15545,7 +15545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38f20509-02a9-4a92-96c4-b37b8bdd1773", + "id": "1c99d89d-3d23-4e30-b1df-5ad5cd2268cd", "name": "Forbidden", "originalRequest": { "url": { @@ -15591,7 +15591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1cfab46-500a-4fc5-9cd8-403536b3f019", + "id": "84e2292b-9afd-4692-b85b-8899ccb66ecc", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -15632,7 +15632,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"eu77\": true\n },\n {\n \"qui3\": \"eiusmod est dolor labore\",\n \"add43\": 61548709\n }\n ],\n \"context\": {\n \"veniam_fdb\": -68729463,\n \"tempor_1\": -70175235\n }\n}", + "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15643,7 +15643,7 @@ } }, { - "id": "c1bfbfba-ceb3-4aff-a79a-b5bfd767530f", + "id": "52c674cc-0a01-490c-aa1d-d95f517c91f2", "name": "Get Venues By Key", "request": { "name": "Get Venues By Key", @@ -15667,7 +15667,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" } ], "variable": [] @@ -15700,7 +15700,7 @@ }, "response": [ { - "id": "03cad090-1a58-413c-a040-742f21cc8d92", + "id": "f78481aa-7efa-433b-8326-1e6ccc6c69b4", "name": "OK", "originalRequest": { "url": { @@ -15719,7 +15719,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" }, { "description": { @@ -15754,7 +15754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "606ba0bd-317f-4334-b18b-f9bc0073e415", + "id": "485d52b3-4f38-4ab3-8330-f6aefc9127fd", "name": "Unauthorized", "originalRequest": { "url": { @@ -15773,7 +15773,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" }, { "description": { @@ -15808,7 +15808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3821a8b-f29d-422d-b06e-2324b7e9091e", + "id": "0e864c5d-79fe-4dd4-ad5c-73475456374c", "name": "Payment Required", "originalRequest": { "url": { @@ -15827,7 +15827,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" }, { "description": { @@ -15862,7 +15862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6df672ba-6fe0-48a8-a105-37897a184684", + "id": "23b7150f-11be-4599-abc9-63f5f3afc9c4", "name": "Forbidden", "originalRequest": { "url": { @@ -15881,7 +15881,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" }, { "description": { @@ -15916,7 +15916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "336d7594-a591-4dfc-826f-bf502401192f", + "id": "1976cbae-091b-49ef-baa3-cc67b8255806", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -15935,7 +15935,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" }, { "description": { @@ -15965,7 +15965,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"eu77\": true\n },\n {\n \"qui3\": \"eiusmod est dolor labore\",\n \"add43\": 61548709\n }\n ],\n \"context\": {\n \"veniam_fdb\": -68729463,\n \"tempor_1\": -70175235\n }\n}", + "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15976,7 +15976,7 @@ } }, { - "id": "542d3d83-0e19-47e2-9f9d-fad204f2e521", + "id": "a93e956f-f31c-412a-9e94-2b370d459bb6", "name": "Get Indoor Style", "request": { "name": "Get Indoor Style", @@ -16042,7 +16042,7 @@ }, "response": [ { - "id": "8541413a-ce42-45a2-8ac7-a30f2133b1de", + "id": "d0ff4149-8c4e-4f64-a418-a5f1848cb623", "name": "OK", "originalRequest": { "url": { @@ -16100,12 +16100,12 @@ "value": "application/json" } ], - "body": "{\n \"nostruda\": true,\n \"esse6d1\": 98793348\n}", + "body": "{\n \"doloreed\": -53392875,\n \"dolore_dc_\": \"Excepteur minim enim dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8c067e18-02e8-4eb1-b12b-7a7004dd84e5", + "id": "d6fde487-0475-47c4-8cb6-0eeda3241273", "name": "Unauthorized", "originalRequest": { "url": { @@ -16168,7 +16168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df5ba852-a4f4-46f3-b10b-017016608e0b", + "id": "77d03a22-213f-4c69-ab4a-99905993c039", "name": "Payment Required", "originalRequest": { "url": { @@ -16231,7 +16231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0826c78f-8a32-486e-a386-210f975fd619", + "id": "df8e9d21-e058-45a9-ab9c-bb30a01b5238", "name": "Forbidden", "originalRequest": { "url": { @@ -16294,7 +16294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a274d90-324b-4e1e-becb-766724e3779b", + "id": "8d5ff83e-8fe1-46fa-8bd5-77f54ebcddfc", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -16352,7 +16352,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"eu77\": true\n },\n {\n \"qui3\": \"eiusmod est dolor labore\",\n \"add43\": 61548709\n }\n ],\n \"context\": {\n \"veniam_fdb\": -68729463,\n \"tempor_1\": -70175235\n }\n}", + "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16363,7 +16363,7 @@ } }, { - "id": "e5afc680-6c0f-4dc3-8359-465953fb2287", + "id": "dc82e954-9245-4442-95b0-e54cbc413b89", "name": "Distance Matrix", "request": { "name": "Distance Matrix", @@ -16468,7 +16468,7 @@ }, "response": [ { - "id": "8ac6e42e-209c-41e3-8ca9-314990745f25", + "id": "d9452500-b592-4e05-8e05-c02330b60bcf", "name": "OK", "originalRequest": { "url": { @@ -16559,7 +16559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d43c386d-1285-46f8-a51d-2a2221033ac1", + "id": "5d99461b-95fd-4717-af34-45d13e28d219", "name": "Bad Request", "originalRequest": { "url": { @@ -16650,7 +16650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db54791a-7f5b-4a27-bd6d-53e080a54e85", + "id": "762ae408-48af-4e88-805f-a87d355f5c55", "name": "Unauthorized", "originalRequest": { "url": { @@ -16741,7 +16741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86bfc7d8-2e9f-4895-8fc4-4e90a6503127", + "id": "91281de6-d35c-49c2-bde5-7f815a965809", "name": "Payment Required", "originalRequest": { "url": { @@ -16832,7 +16832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de0a8a65-673e-4c27-9353-de6d71625037", + "id": "1350ad67-8116-4be5-a0bc-56c96cece74c", "name": "Forbidden", "originalRequest": { "url": { @@ -16923,7 +16923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "926484a6-f3e8-4480-9708-b6a35b6f1b4a", + "id": "524bafa7-5a3a-4dfa-bcdc-d6fc8b0b1cda", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -17009,7 +17009,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"eu77\": true\n },\n {\n \"qui3\": \"eiusmod est dolor labore\",\n \"add43\": 61548709\n }\n ],\n \"context\": {\n \"veniam_fdb\": -68729463,\n \"tempor_1\": -70175235\n }\n}", + "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17020,7 +17020,7 @@ } }, { - "id": "839b688d-ec2e-42c4-93af-0bbb3ed887ed", + "id": "562ed52c-d6dd-4df8-89c0-16bd11a12079", "name": "Directions", "request": { "name": "Directions", @@ -17152,7 +17152,7 @@ }, "response": [ { - "id": "0c851b06-de10-401c-ad4b-0944231c33cf", + "id": "b03f6136-6ff7-40dd-94db-e640631b1e17", "name": "OK", "originalRequest": { "url": { @@ -17270,7 +17270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49cb646b-db75-4437-be02-42727897eacc", + "id": "67274d9c-f95a-4e0f-942e-e4f40a3528a9", "name": "Bad Request", "originalRequest": { "url": { @@ -17388,7 +17388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8343a653-4df0-40b2-9a67-5017f07d4607", + "id": "85bee3dd-1377-4b8b-890d-eaff2c9ed728", "name": "Unauthorized", "originalRequest": { "url": { @@ -17506,7 +17506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2045b656-ae33-4a72-bc6f-c22065aefd16", + "id": "1b3cac4d-e9a6-4bd7-8c51-7a703418260c", "name": "Payment Required", "originalRequest": { "url": { @@ -17624,7 +17624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1274670-37df-48e7-93c6-cf61a029e5ec", + "id": "6b99bd48-e47d-4645-b740-73eddd43196e", "name": "Forbidden", "originalRequest": { "url": { @@ -17742,7 +17742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9da058db-d589-45d1-8a13-84c5e92f66af", + "id": "0d3fca4e-6e6c-4571-b3ea-f7d036177adf", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -17855,7 +17855,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"eu77\": true\n },\n {\n \"qui3\": \"eiusmod est dolor labore\",\n \"add43\": 61548709\n }\n ],\n \"context\": {\n \"veniam_fdb\": -68729463,\n \"tempor_1\": -70175235\n }\n}", + "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17866,7 +17866,7 @@ } }, { - "id": "0c428dc6-8fc9-4e6f-824f-d8624bb7b521", + "id": "35322348-23cd-42e8-af06-06021dd090a3", "name": "Search Venue Pois By Key", "request": { "name": "Search Venue Pois By Key", @@ -18036,7 +18036,7 @@ }, "response": [ { - "id": "fbcf457b-2d46-4171-bc43-4f4713125ec3", + "id": "5f0ec613-0bf5-4c72-96ed-afbf4d0d5a15", "name": "OK", "originalRequest": { "url": { @@ -18192,7 +18192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "911430f5-4e1e-4d3d-8125-5a1a1652c84f", + "id": "f9b3da5d-d3d0-4435-82c0-f51d0bff5e1f", "name": "Unauthorized", "originalRequest": { "url": { @@ -18348,7 +18348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "243e97c5-f596-4cba-a514-510c16b95e90", + "id": "20efdb43-0b99-4230-bafd-ba0bd0f3d710", "name": "Payment Required", "originalRequest": { "url": { @@ -18504,7 +18504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fadba28c-ed20-4427-a9b3-94a7fd7a2802", + "id": "9c2e57a9-e2aa-4e63-ae66-b656f7108aa5", "name": "Forbidden", "originalRequest": { "url": { @@ -18660,7 +18660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c92ba615-a69a-4fb2-b227-a31e16b4b66a", + "id": "87ab36cf-161d-4207-9c9d-96355470a510", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -18811,7 +18811,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"eu77\": true\n },\n {\n \"qui3\": \"eiusmod est dolor labore\",\n \"add43\": 61548709\n }\n ],\n \"context\": {\n \"veniam_fdb\": -68729463,\n \"tempor_1\": -70175235\n }\n}", + "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18822,7 +18822,7 @@ } }, { - "id": "17faea97-bf91-4806-a022-25c5e9f1e214", + "id": "d91986b9-148e-4642-82b9-4dff29f2e68d", "name": "Autocomplete Venue Pois By Key", "request": { "name": "Autocomplete Venue Pois By Key", @@ -18983,7 +18983,7 @@ }, "response": [ { - "id": "8e003830-603f-413d-a511-135ca9aa64ad", + "id": "b20b7073-09f4-4d23-a644-e3375fb8690f", "name": "OK", "originalRequest": { "url": { @@ -19130,7 +19130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7261526-7879-4975-8851-12744be49995", + "id": "c764839d-abd2-43b1-809a-f0920a9e5190", "name": "Unauthorized", "originalRequest": { "url": { @@ -19277,7 +19277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58199396-9492-469e-9a07-b841d6b16477", + "id": "4d9b0629-f99c-43e2-ac0b-cd8ef9069c4a", "name": "Payment Required", "originalRequest": { "url": { @@ -19424,7 +19424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce59613b-2cc7-4af9-85b9-445f65f4b8f8", + "id": "9d945929-0bf5-4188-bfb2-648180f28879", "name": "Forbidden", "originalRequest": { "url": { @@ -19571,7 +19571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90044131-87f2-422a-8e28-4db9ca3e1d30", + "id": "822666b9-bdfe-4979-a5a9-1bfe205564dc", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -19713,7 +19713,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"eu77\": true\n },\n {\n \"qui3\": \"eiusmod est dolor labore\",\n \"add43\": 61548709\n }\n ],\n \"context\": {\n \"veniam_fdb\": -68729463,\n \"tempor_1\": -70175235\n }\n}", + "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19724,7 +19724,7 @@ } }, { - "id": "a67fd2d7-7def-4ca8-a198-99515b55119d", + "id": "baf4264e-d635-4ef0-973d-ba31afa60847", "name": "Get Feature By Key", "request": { "name": "Get Feature By Key", @@ -19795,7 +19795,7 @@ }, "response": [ { - "id": "79758cfe-9880-4c0d-ab24-0003442c0db2", + "id": "145afc9e-cebe-4e68-b754-1b5a08dc12ad", "name": "OK", "originalRequest": { "url": { @@ -19838,12 +19838,12 @@ "value": "application/json" } ], - "body": "{\n \"properties\": {\n \"Excepteur_3\": 34066777,\n \"dolor_7\": true,\n \"occaecatb\": \"in proident\"\n },\n \"geometry\": {\n \"type\": \"\",\n \"coordinates\": \"\",\n \"bbox\": \"\"\n },\n \"id\": \"\",\n \"type\": \"Feature\"\n}", + "body": "{\n \"properties\": {\n \"in_6\": true,\n \"etcf\": 23778201.841434002\n },\n \"geometry\": {\n \"type\": \"\",\n \"coordinates\": \"\",\n \"bbox\": \"\"\n },\n \"id\": \"\",\n \"type\": \"Feature\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "21a8e8b7-83f9-46e0-b48c-31a87e4e9f97", + "id": "cbaf789b-a8b7-4de9-b296-e85a976fd87c", "name": "Unauthorized", "originalRequest": { "url": { @@ -19891,7 +19891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8df9bd03-000e-4d0f-a2c4-7a1824528fcc", + "id": "e74e6211-5e92-4f17-b4fc-fc3be00be43c", "name": "Payment Required", "originalRequest": { "url": { @@ -19939,7 +19939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "570afb90-dd85-47bb-bb86-a665f0bba0d2", + "id": "7bfe1673-80e2-4063-a30b-d34fda6dfb3c", "name": "Forbidden", "originalRequest": { "url": { @@ -19987,7 +19987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7068bb53-f684-41e4-a4ba-91d329177895", + "id": "2c269999-81c8-4c9f-8e59-ee08fbdc992f", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -20030,7 +20030,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"eu77\": true\n },\n {\n \"qui3\": \"eiusmod est dolor labore\",\n \"add43\": 61548709\n }\n ],\n \"context\": {\n \"veniam_fdb\": -68729463,\n \"tempor_1\": -70175235\n }\n}", + "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20041,7 +20041,7 @@ } }, { - "id": "657f21d9-eb0b-42c6-821f-19a537f77c23", + "id": "26399025-8348-42fb-b4b0-6f0b1f2febf0", "name": "Tiles By Key", "request": { "name": "Tiles By Key", @@ -20143,7 +20143,7 @@ }, "response": [ { - "id": "4e2646c3-ceba-4d49-9820-5bb0d50665d1", + "id": "8c86b830-8d08-4a17-86a8-6214a76fe006", "name": "OK", "originalRequest": { "url": { @@ -20211,7 +20211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75d1b7f6-6913-47ea-bb16-e5f72f28c980", + "id": "b4ac8d2d-63f1-4142-a37c-961207ce955c", "name": "Unauthorized", "originalRequest": { "url": { @@ -20279,7 +20279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f690afff-5a9e-453a-91c1-6a38908f5085", + "id": "fa6a8df4-3b43-4e79-aa59-f3fd51fbccde", "name": "Payment Required", "originalRequest": { "url": { @@ -20347,7 +20347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "606c7506-0184-44ed-8ceb-4aabb65f1faf", + "id": "85d3250f-c6de-4061-b3ef-5492f6f523aa", "name": "Forbidden", "originalRequest": { "url": { @@ -20415,7 +20415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d12cc013-783e-4676-9741-139782672f20", + "id": "6cc65c99-8cb2-4a82-86db-05bdb77d161d", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -20478,7 +20478,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"eu77\": true\n },\n {\n \"qui3\": \"eiusmod est dolor labore\",\n \"add43\": 61548709\n }\n ],\n \"context\": {\n \"veniam_fdb\": -68729463,\n \"tempor_1\": -70175235\n }\n}", + "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20495,7 +20495,7 @@ "description": "The Transit API delivers comprehensive public transportation routing information by calculating optimal travel paths between \norigins and destinations. It provides detailed route data including distance, duration, polyline visualization, \nand complete step-by-step transit instructions with transfer points and transportation modes. The API is ideal for \napplications requiring accurate public transit navigation and trip planning capabilities.\n", "item": [ { - "id": "445bfcda-abfa-4725-b8a5-6c6d382779d4", + "id": "46ef5014-6e71-4a89-9c45-06edb8b23a36", "name": "Transit Route", "request": { "name": "Transit Route", @@ -20588,7 +20588,7 @@ }, "response": [ { - "id": "e97a47e2-5480-4d9b-9f6b-e0952d8e6d83", + "id": "47cdc7ad-cadf-41ac-abff-611f9ab61554", "name": "Successful Response", "originalRequest": { "url": { @@ -20678,7 +20678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6d79383-220d-4ef4-aa2c-0e9265c8671f", + "id": "2783622e-97da-4b16-b483-0b449d65fef2", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -20768,7 +20768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6b35cd1-55e1-4624-ae82-d64cb8fe484a", + "id": "92937575-6e63-49a1-8434-0d557a9a482a", "name": "Out of free quota.", "originalRequest": { "url": { @@ -20858,7 +20858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5daa5291-229a-44bf-a92a-77d758797558", + "id": "5da05488-1e95-48bb-b953-570b4e146100", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -20948,7 +20948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2659c535-d75d-4470-a2fd-48933ce3e4b0", + "id": "6d93c020-e623-4161-8b5f-65a8be2cc653", "name": "Validation Error", "originalRequest": { "url": { @@ -21038,7 +21038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be060712-05cc-4804-acd8-d2ddbe90b2ed", + "id": "dce297aa-d441-4447-88e6-2b89400492e7", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21140,7 +21140,7 @@ "description": "The Datasets API enables you to store, manage, and analyze geospatial data collections. Work with custom datasets containing points, lines, or polygons - with each feature defined by its geometry and properties.\n\n* Create and manage datasets from uploaded Shapefile data\n* Import data from external sources via URL or scheduled updates\n* Monitor dataset status and processing through detailed status reports\n* Schedule dataset deletion for proper data lifecycle management\n* Leverage high accuracy storage for location-dependent business processes\n\nIdeal for applications that require precise location analysis, spatial queries and geographic data management.\n", "item": [ { - "id": "cf9be755-ce8e-4b3a-a07d-4dedc018ec3f", + "id": "5ef80342-ed15-49b4-9156-645bfc1653ea", "name": "Get Dataset", "request": { "name": "Get Dataset", @@ -21198,7 +21198,7 @@ }, "response": [ { - "id": "85ec6312-0b11-4332-ab8f-ea8e3698ddf6", + "id": "425147d8-b028-4af6-8905-4ed05a04459f", "name": "Successful Response", "originalRequest": { "url": { @@ -21243,7 +21243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49226314-acdb-4e7d-8fc5-237a41268a63", + "id": "7b5c48f1-efb6-497f-b85c-1a169fdf7032", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -21288,7 +21288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36e315eb-b4fa-49fa-87e7-d5e12dc36e00", + "id": "91ebfa0f-0c07-423e-8c97-83d4cd6d7a1d", "name": "Out of free quota.", "originalRequest": { "url": { @@ -21333,7 +21333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a37fcd2a-8fc6-4c28-8210-b19a47d7b6b8", + "id": "f6cb5783-1998-4ec3-8e78-00389bc06819", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -21378,7 +21378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00442a59-4a4a-4f8f-bbca-0906bba23384", + "id": "4d5cc840-93ce-4c20-a037-63ff29740ce6", "name": "Dataset was not found", "originalRequest": { "url": { @@ -21423,7 +21423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11af5fe5-a56e-4ace-84c3-114cf566caeb", + "id": "a2de35f7-f84c-4979-9e08-0d81a4adfc9f", "name": "Validation Error", "originalRequest": { "url": { @@ -21468,7 +21468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b0d963b-5632-4010-8efe-2827e86ed6dc", + "id": "8fa2e45b-d781-4d29-8656-691f8f4d035f", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21519,7 +21519,7 @@ } }, { - "id": "694f11a1-f49f-4c40-ab24-6036a6a11ed9", + "id": "afb5ba5c-225c-4907-8741-e9b160147bf7", "name": "Delete Dataset", "request": { "name": "Delete Dataset", @@ -21577,7 +21577,7 @@ }, "response": [ { - "id": "28507a30-7630-41b8-9bc4-8f92937cb7f4", + "id": "3bdf30c5-6415-450b-8137-27e755ee28dc", "name": "Successful Response", "originalRequest": { "url": { @@ -21617,12 +21617,12 @@ "value": "application/json" } ], - "body": "{\n \"ina\": false,\n \"etd01\": 56380647.12833062\n}", + "body": "{\n \"mollit5\": -76287266\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eacff2cb-1607-4aaf-9e2f-c37521e302a8", + "id": "93fdee7a-413d-4f5d-bb12-872b47ebb8b6", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -21667,7 +21667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e252186-e704-4c47-beb5-3181fcf30e40", + "id": "5b0e43e1-7d02-4465-9db8-9bcc5a593568", "name": "Out of free quota.", "originalRequest": { "url": { @@ -21712,7 +21712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a471f97b-76b5-4af0-85ec-045123c8aae5", + "id": "e6f6a2f0-29e7-4428-bd0b-1e0360904c16", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -21757,7 +21757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5c0fa45-3591-44ef-b636-0509f992d826", + "id": "1f843680-3866-4333-9ecf-3fa55be048be", "name": "Dataset was not found", "originalRequest": { "url": { @@ -21802,7 +21802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f269f64-2a62-43c4-8b4f-7e9de8ff5da2", + "id": "0cefc80d-2c3d-41bc-aabf-65a1aa9abeb8", "name": "The Dataset was already scheduled for deletion.", "originalRequest": { "url": { @@ -21847,7 +21847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ba96a57-943b-4a45-91d2-3d5c39a1cf3c", + "id": "0b8d8ee8-116e-465b-b2df-9d1e2d547e79", "name": "Validation Error", "originalRequest": { "url": { @@ -21892,7 +21892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02cb97df-3e49-4be8-bde9-81a7bf6d90a3", + "id": "75ca230e-fbd9-4386-821f-d7449a1c9d22", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21943,7 +21943,7 @@ } }, { - "id": "25dfd211-5f04-4d29-9ac4-7a1c85705735", + "id": "3e53f954-dddd-4382-9acf-656dae7ff44e", "name": "Update Dataset", "request": { "name": "Update Dataset", @@ -22014,7 +22014,7 @@ }, "response": [ { - "id": "aa859108-72b4-41fb-beef-838fb2314f32", + "id": "351d86e0-d023-46f5-b54d-c0a89f523623", "name": "Successful Response", "originalRequest": { "url": { @@ -22072,7 +22072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9132224-5ffb-4d54-8d41-3c4f5b651e83", + "id": "2208b2c9-3669-464d-82a9-44efe563626f", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -22130,7 +22130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eff325fb-ddb0-4b8d-8cf6-7081df980bf1", + "id": "4a9e2333-55d9-4739-ba93-e646a381df36", "name": "Out of free quota.", "originalRequest": { "url": { @@ -22188,7 +22188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e555d3f1-a62a-4649-ba17-9c8e96c6b0d8", + "id": "65058358-9fed-48b9-a50c-8abb2a9012f0", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -22246,7 +22246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3327dd8d-1f6a-4e17-b643-9ac6ee896a97", + "id": "e6bb166e-bd94-4c1b-a4f2-03a244cdf1a0", "name": "Dataset was not found", "originalRequest": { "url": { @@ -22304,7 +22304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e30c0259-cdea-4d78-b52b-a05890e7af14", + "id": "8ce5ab40-7c4b-4798-9963-dc70f6b3c2bf", "name": "Validation Error", "originalRequest": { "url": { @@ -22362,7 +22362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80fc429a-1684-44e1-8993-4f59ecb9a048", + "id": "a0f388aa-d408-45fa-a2d6-4193c5a41837", "name": "Rate limit reached", "originalRequest": { "url": { @@ -22426,7 +22426,7 @@ } }, { - "id": "8ce3a872-131b-48ba-8df4-0813ccce1905", + "id": "a75779e6-f693-4a62-a782-b9ec8e7f94ab", "name": "List Datasets", "request": { "name": "List Datasets", @@ -22492,7 +22492,7 @@ }, "response": [ { - "id": "bf1c6430-244a-4e15-8584-f3aedf800b55", + "id": "d11f82ce-5c20-4a6f-9b8c-200ce7f14b37", "name": "Successful Response", "originalRequest": { "url": { @@ -22555,7 +22555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c307d39d-f140-4deb-aff0-426c362f9b3b", + "id": "c46584cc-6d21-4b4d-8ff7-5cf50ee428cb", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -22618,7 +22618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7151aa0b-f700-4bf0-afae-958416456fef", + "id": "4dff8ea4-b4c3-45b5-a6cc-943b7df1ebae", "name": "Out of free quota.", "originalRequest": { "url": { @@ -22681,7 +22681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de972d82-e9a9-47a4-ac28-fa773a5aa7bb", + "id": "fb7d007e-9797-4ecf-8668-e8ffc0223bb5", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -22744,7 +22744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "784a0bae-ab39-4e77-bf0e-9fc0dd37e293", + "id": "8fc2f02a-b3fe-4927-a40c-6e6bce3c7dfe", "name": "Validation Error", "originalRequest": { "url": { @@ -22807,7 +22807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92ee08ef-dbf2-46bf-9767-3cbaaf33a3d8", + "id": "00109f70-aeda-4ecb-9854-4aa9d7d01b99", "name": "Rate limit reached", "originalRequest": { "url": { @@ -22876,7 +22876,7 @@ } }, { - "id": "a65063e0-c66b-46f8-b54d-2a62d72a7bd6", + "id": "be4c1437-99b0-4fcd-8082-0b995155425e", "name": "Create Dataset", "request": { "name": "Create Dataset", @@ -22936,7 +22936,7 @@ }, "response": [ { - "id": "50b01dff-7725-4a66-957c-66f08a943779", + "id": "3606d198-f6fd-4fdd-abd7-770a897de252", "name": "Successful Response", "originalRequest": { "url": { @@ -22994,7 +22994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54f6fe3c-019e-489d-9b9f-897a9b59529e", + "id": "1b3c5e6a-5784-4b7f-ae60-f773bc243b03", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23052,7 +23052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9937a52f-af47-415f-97d9-ed72bf2885dc", + "id": "bf0224d1-aa3f-474f-8bab-bec2abeff898", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23110,7 +23110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52994eb0-7326-4d35-9307-a04c8f7d3f29", + "id": "03691555-89b0-4575-ad92-b43a48f61bf8", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23168,7 +23168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3cd110e-ca2a-4f26-bd8a-a60e8eb5c48b", + "id": "e46d7f60-0ef2-4621-995b-880bf6024a76", "name": "Validation Error", "originalRequest": { "url": { @@ -23226,7 +23226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5b171b4-c11a-481d-b03e-b980494534a0", + "id": "2251ba43-e389-4e0a-9d33-bca15eeebc78", "name": "Rate limit reached", "originalRequest": { "url": { @@ -23290,7 +23290,7 @@ } }, { - "id": "168f6a9a-d9c9-44ab-b4ae-a43b82939747", + "id": "85772213-841f-48fa-b636-34ba021e34bd", "name": "Get Dataset Status", "request": { "name": "Get Dataset Status", @@ -23349,7 +23349,7 @@ }, "response": [ { - "id": "eaeba5b9-6fe4-438f-a445-0ae831989420", + "id": "10090301-7c3f-42de-b52c-de8b107f54ff", "name": "Successful Response", "originalRequest": { "url": { @@ -23390,12 +23390,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"steps\": [\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n }\n ],\n \"status\": \"in_progress\"\n },\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"info\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"info\"\n }\n ],\n \"status\": \"in_progress\"\n }\n ],\n \"status\": \"success\"\n}", + "body": "{\n \"id\": \"\",\n \"steps\": [\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n }\n ],\n \"status\": \"in_progress\"\n },\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"info\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n }\n ],\n \"status\": \"in_progress\"\n }\n ],\n \"status\": \"success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0882dd91-9f47-4e2d-84c0-c3ae6b7fce12", + "id": "01854a87-9d33-4f1f-ac9e-8bb49196637f", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23441,7 +23441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74fb80e1-13cb-4b19-afcd-43b22615cff8", + "id": "7906a604-1028-4125-b703-9d93475d2347", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23487,7 +23487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43e59769-36f8-44b9-a1ea-60353e18634d", + "id": "5c32e974-b92c-4695-bacd-36f9e6461176", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23533,7 +23533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94087e7c-b052-4ddc-a246-c8bb65dcf71c", + "id": "1e419a37-802e-4021-8faf-bc92c54dfe84", "name": "Dataset was not found", "originalRequest": { "url": { @@ -23579,7 +23579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f243f931-d197-4100-913a-e283efdb2ed8", + "id": "e07bc613-b0ca-4ddf-a094-775c78bb464d", "name": "Validation Error", "originalRequest": { "url": { @@ -23625,7 +23625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9aa5b981-d8f7-4042-9f9b-c746b9d863d7", + "id": "0f7f9c13-28c7-43f5-9d35-522d9ebe557d", "name": "Rate limit reached", "originalRequest": { "url": { @@ -23677,7 +23677,7 @@ } }, { - "id": "67ed4c13-fe5f-452b-841c-54e9a59ade6f", + "id": "23e6568f-ece3-4285-8f9c-caab3935f9d7", "name": "Trigger Import", "request": { "name": "Trigger Import", @@ -23736,7 +23736,7 @@ }, "response": [ { - "id": "4baacf08-7bc9-465f-b244-dbcef4d63f97", + "id": "61ab7b2d-1683-4b85-a002-341af39e41f0", "name": "Successful Response", "originalRequest": { "url": { @@ -23782,7 +23782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f349ab4-3817-48af-b2a4-b7f715561a91", + "id": "2be117f2-b977-4e37-905d-dcb481ccb915", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23828,7 +23828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45c72703-8375-4d90-85de-be88d73cbce9", + "id": "d610f91e-ecab-42ce-9dea-7586858f3222", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23874,7 +23874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96ac9ada-9ad3-4fc5-9294-806974057865", + "id": "40f17f4c-cf60-4853-bb0b-35f67ee697cf", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23920,7 +23920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e3cdb16-1f9d-4c03-b0f6-f0a7a7163213", + "id": "0dcf53a9-8b35-4536-abe1-8056fee37c6e", "name": "Dataset was not found", "originalRequest": { "url": { @@ -23966,7 +23966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bca9bc7-f53e-4655-9f47-f302a16db84c", + "id": "bc2ea777-606d-4d88-ab4e-d332d073d9f6", "name": "Validation Error", "originalRequest": { "url": { @@ -24012,7 +24012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae7992d3-429d-439f-962c-731b49e9c8e4", + "id": "4df12504-d85a-485b-a110-62dc0ae89046", "name": "Rate limit reached", "originalRequest": { "url": { @@ -24064,7 +24064,7 @@ } }, { - "id": "cbb0348c-accf-4135-92b7-f06d2eb2d77a", + "id": "aa32f4ef-5310-4ca9-b160-a9cecb074bd4", "name": "Reimport Dataset Webhook", "request": { "name": "Reimport Dataset Webhook", @@ -24108,7 +24108,7 @@ }, "response": [ { - "id": "c2426bba-a0b9-4252-a881-8385a120f6f9", + "id": "b29c3d1d-c5e5-4ef5-afc2-a61f35aef884", "name": "Successful Response", "originalRequest": { "url": { @@ -24146,7 +24146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b90f81d1-5bb5-4476-a1c4-f5eed17e059b", + "id": "c65466fc-b6ef-44f1-b3e9-c92fa4fe60eb", "name": "Unauthorized", "originalRequest": { "url": { @@ -24172,7 +24172,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a7d7d0ed-cb44-467b-ba97-7a7972245aa2", + "id": "78f95845-9437-40a9-937f-56c76e67fe15", "name": "Payment Required", "originalRequest": { "url": { @@ -24198,7 +24198,7 @@ "_postman_previewlanguage": "text" }, { - "id": "dd7fc871-f028-4fb9-8b63-dc5c455673e9", + "id": "59af17b6-32ee-40ea-95d9-dcdce874730f", "name": "Forbidden", "originalRequest": { "url": { @@ -24224,7 +24224,7 @@ "_postman_previewlanguage": "text" }, { - "id": "41926b1a-a5d6-4399-8444-5992463c3f9f", + "id": "31235d3a-b6a8-4d6e-b5e5-e3be6690806b", "name": "Dataset was not found", "originalRequest": { "url": { @@ -24262,7 +24262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87a475b1-ceed-4027-a322-a1c6fd1cc048", + "id": "e0648e60-7574-4c42-8349-2548a77a046c", "name": "Validation Error", "originalRequest": { "url": { @@ -24300,7 +24300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ebde0c3-d8d7-4930-a133-822deb993543", + "id": "ebceb307-6539-4cd8-b6df-6f77fee8fb60", "name": "Rate limit reached", "originalRequest": { "url": { @@ -24350,7 +24350,7 @@ "description": "Perform powerful spatial analysis on your geospatial data with four key search capabilities:\n\n* Nearby search: Find features within a specified distance from a location\n* Contains search: Discover which features completely contain a point or geometry\n* Intersects search: Identify features that intersect with a given geometry\n* Within search: Locate features that fall entirely inside a specified boundary\n\nAll operations support attribute filtering with WHERE clauses, pagination for large results, and multiple geometry formats (GeoJSON, WKB, encoded polylines).\n", "item": [ { - "id": "0a51e008-fa13-4915-a053-2fdc671139ed", + "id": "5a02632c-f6a7-403b-89ce-9d3c8fb77a40", "name": "Search Features", "request": { "name": "Search Features", @@ -24452,7 +24452,7 @@ }, "response": [ { - "id": "7b0f4f33-da7c-4293-baa1-371a07e4658c", + "id": "65edf584-3762-4c3f-a62d-a8aef3d984dc", "name": "Successful Response", "originalRequest": { "url": { @@ -24535,12 +24535,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"amet_d44\": -19452572,\n \"fugiat914\": \"esse nisi aliquip\"\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ut_c_c\": true\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"qui_c\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"non_\": \"elit in proident\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "907e7533-cdf9-4294-87b5-c514c72d0fb5", + "id": "89ba043a-2305-4790-bc1a-ec16dc8bf22c", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -24628,7 +24628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ffde45b-df2a-4627-9dfe-e8f42ea1e478", + "id": "ed220d2d-24d2-4eea-8fb8-17d74837bd7f", "name": "Out of free quota.", "originalRequest": { "url": { @@ -24716,7 +24716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a949ad7-0f1b-44a9-a141-f479a1950d42", + "id": "2c00b28d-23b4-48c0-ad40-2f18ca77c6fd", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -24804,7 +24804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9df6f66f-95e2-4e99-991a-81ae6d8d28cb", + "id": "0e76e443-21a6-435d-97cf-197f640f489f", "name": "Dataset was not found", "originalRequest": { "url": { @@ -24892,7 +24892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8491ac7e-0073-4023-ad15-94cf023d5d33", + "id": "522526a6-e5e7-4624-ad6e-170444f78cf7", "name": "Validation Error", "originalRequest": { "url": { @@ -24980,7 +24980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a72de3d8-f7de-40e7-8dd5-3cb9f4f27049", + "id": "ef456856-5cf6-4c8e-9a2b-54517a7451ce", "name": "Rate limit reached", "originalRequest": { "url": { @@ -25074,7 +25074,7 @@ } }, { - "id": "2b492861-38bb-4c27-9b4b-0748ce8e6e40", + "id": "179c70d2-369e-40ff-8a32-4d177587cb8f", "name": "Nearby Features", "request": { "name": "Nearby Features", @@ -25176,7 +25176,7 @@ }, "response": [ { - "id": "fb079cac-4fe1-44a6-bb24-bc9175dbd905", + "id": "c4611332-89cb-4ce6-8009-00114eb7cc4f", "name": "Successful Response", "originalRequest": { "url": { @@ -25259,12 +25259,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"amet_d44\": -19452572,\n \"fugiat914\": \"esse nisi aliquip\"\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ut_c_c\": true\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"qui_c\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"non_\": \"elit in proident\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98a83197-7285-4c15-9d1f-dbdcf9178974", + "id": "2933ce3f-eb5d-4498-8453-069d081148e0", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -25352,7 +25352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26204ca0-a742-4808-8f05-a1c475231b23", + "id": "a1fd392c-3a2b-4bbe-8f86-6e6beb3ff0fd", "name": "Out of free quota.", "originalRequest": { "url": { @@ -25440,7 +25440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e984146b-79b1-433c-a086-7a1390fa7426", + "id": "4de31a32-864c-4756-8ae5-d085aa45ce71", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -25528,7 +25528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad25e74b-0264-4cf2-b190-210e3d1abd62", + "id": "9819e6cc-b80f-4450-b493-ae3466684e0e", "name": "Dataset was not found", "originalRequest": { "url": { @@ -25616,7 +25616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0140bd68-e79f-412d-a44d-f687507ac8b1", + "id": "971a9e41-5629-42d1-bd76-46599aad42ca", "name": "Validation Error", "originalRequest": { "url": { @@ -25704,7 +25704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ad82bfd-4975-4aa8-a747-3154049a07df", + "id": "5ad39e97-c5ce-42d9-aab2-cf4637b500fa", "name": "Rate limit reached", "originalRequest": { "url": { @@ -25798,7 +25798,7 @@ } }, { - "id": "eab6031b-f30c-465a-ac2e-f030f2e26cd4", + "id": "5e674d40-4132-442c-9a54-e8ab990ff1b7", "name": "Intersect Features", "request": { "name": "Intersect Features", @@ -25900,7 +25900,7 @@ }, "response": [ { - "id": "ee69faef-4ff7-4887-9a78-b0c166621fe0", + "id": "c494355f-6f9b-4042-928b-932652ce8db4", "name": "Successful Response", "originalRequest": { "url": { @@ -25983,12 +25983,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"amet_d44\": -19452572,\n \"fugiat914\": \"esse nisi aliquip\"\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ut_c_c\": true\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"qui_c\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"non_\": \"elit in proident\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f214ebd-c268-45d8-9312-70f6e390a33b", + "id": "f4df7f84-d6fe-4a6c-9ecc-5e3c36bed268", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -26076,7 +26076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a9dad0a-220f-4619-b860-099cdcecbc06", + "id": "d5ae39ca-5928-4613-bc8f-e76921d142dc", "name": "Out of free quota.", "originalRequest": { "url": { @@ -26164,7 +26164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1999a4a2-7970-47ce-9c73-6373c2ddedd6", + "id": "d8aa0172-ab42-4edb-8a70-f98eb3c5bc6c", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -26252,7 +26252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "976e9de0-eab4-42cd-8080-bed12e684641", + "id": "c3156548-d15d-4dbd-a359-f21faa092957", "name": "Dataset was not found", "originalRequest": { "url": { @@ -26340,7 +26340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6156c061-0e6e-4ee2-a9a7-fde96a284747", + "id": "daea83aa-61bc-404c-97d0-a99b71973540", "name": "Validation Error", "originalRequest": { "url": { @@ -26428,7 +26428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "165da160-e35b-413f-9f56-4fbbf9e0d7df", + "id": "78a4889b-9de8-4da8-a263-0f11edaa5324", "name": "Rate limit reached", "originalRequest": { "url": { @@ -26522,7 +26522,7 @@ } }, { - "id": "f1276721-55ac-48c6-b2ee-79cdebf10462", + "id": "3c07b756-e84e-4bca-8fbb-e17a50c46d3a", "name": "Contains Features", "request": { "name": "Contains Features", @@ -26624,7 +26624,7 @@ }, "response": [ { - "id": "0f939d67-86f9-4e77-84d9-3485f87d9d63", + "id": "98a84a77-fe07-4499-bb47-3e50b2c3104a", "name": "Successful Response", "originalRequest": { "url": { @@ -26707,12 +26707,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"amet_d44\": -19452572,\n \"fugiat914\": \"esse nisi aliquip\"\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ut_c_c\": true\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"qui_c\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"non_\": \"elit in proident\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "010bb17f-3d3b-4271-9803-c76d3a372471", + "id": "717bdeea-99cb-407f-8600-7e429a176e76", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -26800,7 +26800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57a3c1ab-e998-4fc2-8194-20908bc5c534", + "id": "aee1163a-f053-4215-85a4-012ff1cf27a4", "name": "Out of free quota.", "originalRequest": { "url": { @@ -26888,7 +26888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ead932d9-0125-41bd-ad42-c3a4b47bfda1", + "id": "6eb126b2-0b67-4be5-86e2-0455924a2f2d", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -26976,7 +26976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db866170-832e-4c9a-8409-2a3a7d4751ac", + "id": "137d2ac5-eab9-40dc-823e-1da226f761e7", "name": "Dataset was not found", "originalRequest": { "url": { @@ -27064,7 +27064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4aec20e-a57a-4db1-a152-8e32ff0bd967", + "id": "7f89cd71-f0c7-403b-bea4-126f38fa0fc0", "name": "Validation Error", "originalRequest": { "url": { @@ -27152,7 +27152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de2e0748-0052-4e1c-a742-4ad65bf9482d", + "id": "08defa50-7a4c-4fbb-b1b5-fd76e52ae11d", "name": "Rate limit reached", "originalRequest": { "url": { @@ -27246,7 +27246,7 @@ } }, { - "id": "9de780e7-9086-4c8c-ad86-15124366f181", + "id": "2285976d-a4a9-49c7-9ad6-632e280d167e", "name": "Within Features", "request": { "name": "Within Features", @@ -27348,7 +27348,7 @@ }, "response": [ { - "id": "f51892e7-5aba-4c89-bc74-706ab558823f", + "id": "4315245a-c004-43a0-ad35-0b676e3ba972", "name": "Successful Response", "originalRequest": { "url": { @@ -27431,12 +27431,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"amet_d44\": -19452572,\n \"fugiat914\": \"esse nisi aliquip\"\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ut_c_c\": true\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"qui_c\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"non_\": \"elit in proident\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "641d23ea-8f2b-4876-b86c-7f442808ddeb", + "id": "a9367b2a-bd5b-44f9-9c86-c5458e8f0edd", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -27524,7 +27524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "643df14e-ef02-47cd-b3f6-9821a68accca", + "id": "3468b3cb-a1a2-4e0d-878c-fbc88e47952e", "name": "Out of free quota.", "originalRequest": { "url": { @@ -27612,7 +27612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f718cd18-f877-4a84-a435-2043a4420205", + "id": "2f9091ad-43ae-4f43-8464-613235d95ecf", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -27700,7 +27700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "549ee590-4a0c-4ba1-b2c2-6b4d9feab96f", + "id": "ad4a2acf-63df-4f83-9ab5-108b16b88adc", "name": "Dataset was not found", "originalRequest": { "url": { @@ -27788,7 +27788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d46ab3c0-5d21-4ebf-87be-27d94732346a", + "id": "407c1d26-8cb8-4523-83c8-fecd8907f079", "name": "Validation Error", "originalRequest": { "url": { @@ -27876,7 +27876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b45dc6a0-e266-4ecb-931e-333b1bb643b4", + "id": "fa05a633-1726-4516-bf1e-3a65a4052e97", "name": "Rate limit reached", "originalRequest": { "url": { @@ -27976,7 +27976,7 @@ "description": "Access and retrieve individual geographic features from your datasets by their unique ID. This endpoint provides direct access to the complete geometry and properties of specific features within your datasets.\n\nThe API supports field masking to optimize response size by retrieving only needed attributes. Output formats include both GeoJSON and WKB, allowing flexible integration with various mapping and analysis systems.\n", "item": [ { - "id": "999b70e2-84c1-4912-a2fe-4dab7a174235", + "id": "85725776-af5c-421b-8fb9-c4e63e683d62", "name": "Get Feature", "request": { "name": "Get Feature", @@ -28065,7 +28065,7 @@ }, "response": [ { - "id": "db091e25-0fc7-43c9-9415-146176470990", + "id": "ef3340b1-903a-492a-a6ae-013ad65bc54c", "name": "Successful Response", "originalRequest": { "url": { @@ -28125,12 +28125,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"in86b\": 4143743.187722042\n }\n}", + "body": "{\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"reprehenderit8\": 10112646\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "620a34bc-ce87-4024-adbf-6621bfa68c4d", + "id": "18cd86c9-fbeb-4927-863c-210c74845990", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -28195,7 +28195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d74e993-57bf-4ddd-aa5b-672fa6b2bf5f", + "id": "67402b88-2d5e-49ec-bf4a-ad427b83086f", "name": "Out of free quota.", "originalRequest": { "url": { @@ -28260,7 +28260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccbe5d84-806a-4ac8-b20e-9785dcfbb220", + "id": "c7f2fc28-8850-4706-9b8c-84aeb04ec87c", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -28325,7 +28325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "137d5bce-4138-43cd-95cd-e235475d7f16", + "id": "b7d19e50-c0d6-4974-8186-e16e557f1bf2", "name": "Feature or Dataset were not found", "originalRequest": { "url": { @@ -28390,7 +28390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d845de36-0430-4a6e-87f9-27d678106f2d", + "id": "3e2a25fd-ebe4-42f0-b013-e76e871e4e73", "name": "Validation Error", "originalRequest": { "url": { @@ -28455,7 +28455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35e276ec-6d90-4d4b-8e6b-984682ea3abe", + "id": "8cc65136-4ea3-47e0-89ea-84866602cc9d", "name": "Rate limit reached", "originalRequest": { "url": { @@ -28540,7 +28540,7 @@ } ], "info": { - "_postman_id": "3dcd2fb8-e32a-4f5f-98fc-803661d3b768", + "_postman_id": "937360c6-f706-44e5-8654-f6432b1c791f", "name": "Woosmap Platform API Reference", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { diff --git a/specification/parameters/localities/types.yml b/specification/parameters/localities/types.yml index 91c35993..98b26227 100644 --- a/specification/parameters/localities/types.yml +++ b/specification/parameters/localities/types.yml @@ -1,16 +1,15 @@ name: types description: > - The types of suggestion to return. Multiple types can be passed using the pipe character (`|`) as a separator. - For a complete list of types supported, please see [All Types](#/schemas/LocalitiesTypesAll) + Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. + This parameter supports a wide range of locality classifications, including: + - Standard locality types (e.g., cities, administrative areas, postal codes) + - Points of Interest (POI) categories + - POI aliases + These classifications enable flexible geographic data representation and querying. + schema: - default: - locality|postal_code + default: locality|postal_code example: locality|airport|admin_level $ref: "../../schemas/LocalitiesTypesAll.yml" - writeOnly: true -# anyOf: -# - $ref: "../../schemas/LocalitiesTypes.yml" -# - $ref: "../../schemas/LocalitiesTypesPoi.yml" - in: query diff --git a/specification/schemas/LocalitiesTypes.yml b/specification/schemas/LocalitiesTypes.yml index 406c01e6..85401712 100644 --- a/specification/schemas/LocalitiesTypes.yml +++ b/specification/schemas/LocalitiesTypes.yml @@ -1,8 +1,9 @@ -title: GenericTypes +title: LocalitiesTypes type: string description: > - Common types unrelated to points of interest. - The `locality` type is an alias that groups all types of settlements (`city`, `town`, `village`, `hamlet`, `borough`, `suburb`, `quarter` and `neighbourhood`) + Common types unrelated to points of interest (POI). + The `locality` type serves as an alias grouping various settlement types (see `enum` for details). + This grouping enables flexible and efficient querying of related geographic data. enum: - country - admin_level diff --git a/specification/schemas/LocalitiesTypesAll.yml b/specification/schemas/LocalitiesTypesAll.yml index 47e4776e..dd3165b2 100644 --- a/specification/schemas/LocalitiesTypesAll.yml +++ b/specification/schemas/LocalitiesTypesAll.yml @@ -1,8 +1,8 @@ title: LocalitiesTypesAll type: string description: > - All supported types: any of [GeneralTypes](#/schemas/LocalitiesTypes), [PoiTypes](#/schemas/LocalitiesTypesPoi) or [PoiAlias](#/schemas/LocalitiesTypesPoiAlias) -# writeOnly: true + A comprehensive string type that encompasses all supported locality classifications. This includes standard locality types (e.g., cities, regions), points of interest (POI) categories, and POI aliases for flexible geographic data representation and querying. + anyOf: - $ref: "./LocalitiesTypes.yml" - $ref: "./LocalitiesTypesPoi.yml" diff --git a/specification/schemas/LocalitiesTypesPoi.yml b/specification/schemas/LocalitiesTypesPoi.yml index 98b76d25..f7518e38 100644 --- a/specification/schemas/LocalitiesTypesPoi.yml +++ b/specification/schemas/LocalitiesTypesPoi.yml @@ -1,4 +1,6 @@ -title: PoiTypes +title: LocalitiesTypesPoi +description: > + Categories of points of interest (POI) supported for detailed classification in geographic data queries. type: string enum: - 'point_of_interest' diff --git a/specification/schemas/LocalitiesTypesPoiAlias.yml b/specification/schemas/LocalitiesTypesPoiAlias.yml index cd2521d0..93f5da1f 100644 --- a/specification/schemas/LocalitiesTypesPoiAlias.yml +++ b/specification/schemas/LocalitiesTypesPoiAlias.yml @@ -1,7 +1,12 @@ -title: PoiAliases +title: LocalitiesTypesPoiAlias type: string -description: aliases for some point_of_interest types -deprecated: true +description: > + Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. + For example: + - `airport` -> `transit.station.airport` + - `train_station` -> `transit.station.rail` + - `shopping` -> `business` + This ensures consistency and alignment with the updated schema. enum: - airport - train_station From 8447555504d0a330f526a50c45a58f982833674f Mon Sep 17 00:00:00 2001 From: galela Date: Mon, 27 Oct 2025 16:29:47 +0100 Subject: [PATCH 3/9] fix: Correct Markdown list --- ...ttp_parameters_localitiesautocomplete.html | 15 +- ..._http_parameters_localitiesautocomplete.md | 8 +- ...p_http_schema_localitiestypespoialias.html | 12 +- ...map_http_schema_localitiestypespoialias.md | 8 +- dist/merged-woosmap-openapi3.json | 4 +- dist/woosmap-openapi3.json | 4 +- dist/woosmap-openapi3.yml | 14 +- dist/woosmap-postman.json | 968 +++++++++--------- specification/parameters/localities/types.yml | 7 +- .../schemas/LocalitiesTypesPoiAlias.yml | 7 +- 10 files changed, 541 insertions(+), 506 deletions(-) diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.html b/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.html index 004cc81f..54593b39 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.html +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.html @@ -123,9 +123,18 @@

    types

    Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (|) as a separator. This parameter supports a wide range of locality classifications, - including: - Standard locality types (e.g., cities, administrative areas, - postal codes) - Points of Interest (POI) categories - POI aliases These - classifications enable flexible geographic data representation and + including: +

    +
      +
    • + Standard locality types (e.g., cities, administrative areas, postal + codes) +
    • +
    • Points of Interest (POI) categories
    • +
    • POI aliases
    • +
    +

    + These classifications enable flexible geographic data representation and querying.

    diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md b/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md index 17f068c3..020adc2e 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md @@ -44,7 +44,13 @@ -

    types

    - Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying. + Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: + + - Standard locality types (e.g., cities, administrative areas, postal codes) + - Points of Interest (POI) categories + - POI aliases + + These classifications enable flexible geographic data representation and querying.

    Generated from the OpenAPI specification. diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html index 65535a76..3402c157 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html +++ b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html @@ -6,12 +6,14 @@

    Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in - LocalitiesTypesPoi. For example: - airport -> - transit.station.airport - train_station -> - transit.station.rail - shopping -> - business This ensures consistency and alignment with the updated - schema. + LocalitiesTypesPoi. For example:

    +
      +
    • airporttransit.station.airport
    • +
    • train_stationtransit.station.rail
    • +
    • shoppingbusiness
    • +
    +

    This ensures consistency and alignment with the updated schema.

    Generated from the

    LocalitiesTypesPoiAlias

    -Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` -> `transit.station.airport` - `train_station` -> `transit.station.rail` - `shopping` -> `business` This ensures consistency and alignment with the updated schema. +Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: + +- `airport` → `transit.station.airport` +- `train_station` → `transit.station.rail` +- `shopping` → `business` + +This ensures consistency and alignment with the updated schema.

    Generated from the OpenAPI specification. ✎ Edit diff --git a/dist/merged-woosmap-openapi3.json b/dist/merged-woosmap-openapi3.json index 44ce6bb3..fe8a58b4 100755 --- a/dist/merged-woosmap-openapi3.json +++ b/dist/merged-woosmap-openapi3.json @@ -11153,7 +11153,7 @@ }, "Woosmap_Platform_API_Reference_types": { "name": "types", - "description": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", + "description": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n \nThese classifications enable flexible geographic data representation and querying.\n", "schema": { "default": "locality|postal_code", "example": "locality|airport|admin_level", @@ -13746,7 +13746,7 @@ "Woosmap_Platform_API_Reference_LocalitiesTypesPoiAlias": { "title": "LocalitiesTypesPoiAlias", "type": "string", - "description": "Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` -> `transit.station.airport` - `train_station` -> `transit.station.rail` - `shopping` -> `business` This ensures consistency and alignment with the updated schema.\n", + "description": "Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example:\n - `airport` → `transit.station.airport`\n - `train_station` → `transit.station.rail`\n - `shopping` → `business`\n\nThis ensures consistency and alignment with the updated schema.\n", "enum": [ "airport", "train_station", diff --git a/dist/woosmap-openapi3.json b/dist/woosmap-openapi3.json index 91145e36..256790bc 100755 --- a/dist/woosmap-openapi3.json +++ b/dist/woosmap-openapi3.json @@ -6411,7 +6411,7 @@ }, "types": { "name": "types", - "description": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", + "description": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n \nThese classifications enable flexible geographic data representation and querying.\n", "schema": { "default": "locality|postal_code", "example": "locality|airport|admin_level", @@ -9004,7 +9004,7 @@ "LocalitiesTypesPoiAlias": { "title": "LocalitiesTypesPoiAlias", "type": "string", - "description": "Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` -> `transit.station.airport` - `train_station` -> `transit.station.rail` - `shopping` -> `business` This ensures consistency and alignment with the updated schema.\n", + "description": "Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example:\n - `airport` → `transit.station.airport`\n - `train_station` → `transit.station.rail`\n - `shopping` → `business`\n\nThis ensures consistency and alignment with the updated schema.\n", "enum": [ "airport", "train_station", diff --git a/dist/woosmap-openapi3.yml b/dist/woosmap-openapi3.yml index 1f78db35..57797df5 100755 --- a/dist/woosmap-openapi3.yml +++ b/dist/woosmap-openapi3.yml @@ -5580,7 +5580,12 @@ components: types: name: types description: | - Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying. + Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: + - Standard locality types (e.g., cities, administrative areas, postal codes) + - Points of Interest (POI) categories + - POI aliases + + These classifications enable flexible geographic data representation and querying. schema: default: locality|postal_code example: locality|airport|admin_level @@ -7513,7 +7518,12 @@ components: title: LocalitiesTypesPoiAlias type: string description: | - Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` -> `transit.station.airport` - `train_station` -> `transit.station.rail` - `shopping` -> `business` This ensures consistency and alignment with the updated schema. + Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: + - `airport` → `transit.station.airport` + - `train_station` → `transit.station.rail` + - `shopping` → `business` + + This ensures consistency and alignment with the updated schema. enum: - airport - train_station diff --git a/dist/woosmap-postman.json b/dist/woosmap-postman.json index 725f4975..d65b2a45 100755 --- a/dist/woosmap-postman.json +++ b/dist/woosmap-postman.json @@ -5,7 +5,7 @@ "description": "Stores Search API lets you query the Assets which are returned as a [GeoJson](https://geojson.org/). Request is done over HTTPS using GET. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/). If your request returns a high number of assets, the result will be paginated. If so, you can request assets by page using `page` and `stores_by_page` parameters (Default is **100**, max is **300**).\n", "item": [ { - "id": "13123945-4139-456f-9fcb-76b3af59f1c6", + "id": "780b1a74-0f68-47bf-bd42-f1273199f6ae", "name": "Search for assets", "request": { "name": "Search for assets", @@ -128,7 +128,7 @@ }, "response": [ { - "id": "18128a64-63d2-40a6-abad-769a78801153", + "id": "76aa1691-ddd6-4838-9d13-e6674c36f41d", "name": "Assets successfully retrieved", "originalRequest": { "url": { @@ -243,12 +243,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"velita_\": -37750431,\n \"pariatur_37f\": \"ad commodo quis ullamco\",\n \"dolor1b\": true\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n}", + "body": "{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"laboris_a\": true\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"aliqua_796\": \"aute elit in eiusmod\",\n \"sunt_28\": 24192230\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63814e67-91fd-4fc2-8df6-bc7f26a53dbe", + "id": "71d97ecd-8a56-46e7-a4bc-6bac6fb6e4bf", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -368,7 +368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8116a972-e545-4812-8c4e-2caad53d1449", + "id": "33c0e322-9b31-4d5a-a59d-3e8635a2bede", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -488,7 +488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53b0d735-43d0-445c-9f99-be3e1a331832", + "id": "81ef9b59-25f5-46c0-994b-2879dc300573", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -614,7 +614,7 @@ } }, { - "id": "b706eac4-e486-4818-92ea-418631ac0284", + "id": "fd8db0c9-efad-4cda-b960-6d4b9776b004", "name": "Autocomplete for assets", "request": { "name": "Autocomplete for assets", @@ -692,7 +692,7 @@ }, "response": [ { - "id": "4492c4cf-73a3-4afa-aa4b-94d21e48f756", + "id": "1e34e91d-e36e-4d4c-b184-bd6b958bbe48", "name": "Assets Successfully Replaced", "originalRequest": { "url": { @@ -762,12 +762,12 @@ "value": "application/json" } ], - "body": "{\n \"predictions\": [\n {\n \"name\": \"pariatur\",\n \"highlighted\": \"laboris sunt aliquip nostrud quis\",\n \"store_id\": {},\n \"types\": {}\n },\n {\n \"name\": \"aliquip magna\",\n \"highlighted\": \"id dolore\",\n \"store_id\": {},\n \"types\": {}\n }\n ]\n}", + "body": "{\n \"predictions\": [\n {\n \"name\": \"minim irure consequat enim non\",\n \"highlighted\": \"quis voluptat\",\n \"store_id\": {},\n \"types\": {}\n },\n {\n \"name\": \"elit exercitation non Lorem\",\n \"highlighted\": \"Duis anim quis\",\n \"store_id\": {},\n \"types\": {}\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a33c98f0-a389-4a18-a245-0159240d5c76", + "id": "e188f6ef-621a-46f7-96d9-41e77a0e53ad", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -842,7 +842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15f91f0f-6ea1-4900-afe1-2f1d7c2000ab", + "id": "e517ba82-8a58-46a7-81ce-f0e79b6eac18", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -917,7 +917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8376abd-52ab-4e48-be85-1d50cd92e0be", + "id": "1bf4ff7b-eb89-4500-a4af-c67b66415d94", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -998,7 +998,7 @@ } }, { - "id": "93a7628e-ae76-4a1a-91b5-0191b2f518bb", + "id": "234b51f7-32d1-425c-958d-112bdaeff3b4", "name": "Bounds for assets", "request": { "name": "Bounds for assets", @@ -1086,7 +1086,7 @@ }, "response": [ { - "id": "075d86e2-d424-4006-b95a-ac39dae871c7", + "id": "b8cb974b-7589-4279-b657-6c78676c838f", "name": "Bounds successfully retrieved", "originalRequest": { "url": { @@ -1171,7 +1171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e0660f4-11c9-4a4b-a084-bb2301e797cf", + "id": "611efca5-7ef1-4bdd-b0b5-ffa65cb263af", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1256,7 +1256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e90cdff-f4f0-42cb-babc-6231d711cd7a", + "id": "c09ac893-b52b-40d8-8e8f-7fe55e0cebdf", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -1341,7 +1341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c35501f-27ad-41ec-9ba2-4e24ad92eb08", + "id": "e6cf2fa4-13a5-4215-9510-694f306fcbd1", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -1438,7 +1438,7 @@ "description": "The Data Management API is a web service that uses an HTTP request to manage, create or edit your Assets. The API only supports JSON. So you have to create a JSON file with your assets’ addresses and other information. You’ll need to convert, or geocode, the addresses in your file to latitude/longitude (`lat` / `long`) coordinates. Those coordinates will be used for most of Woosmap features like [local searches](https://developers.woosmap.com/products/search-api/get-started/), [stores nearby a user location](https://developers.woosmap.com/products/geolocation-api/stores/) or for displaying markers on a map with [Woosmap Javascript API](https://developers.woosmap.com/products/js-api/get-started/).\n", "item": [ { - "id": "1dee9156-8ba3-48b1-80e5-57d50209be3c", + "id": "e17cf7d1-5b89-4ba9-9e8f-12f4bb8b6a8c", "name": "Create your Assets", "request": { "name": "Create your Assets", @@ -1472,7 +1472,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1500,7 +1500,7 @@ }, "response": [ { - "id": "8ae1a9b7-2c24-4387-9143-2ba507275696", + "id": "b0cab54a-255c-43ae-ad77-0bfb36cfdf7c", "name": "Assets successfully created", "originalRequest": { "url": { @@ -1538,7 +1538,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1560,7 +1560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8186c67-a102-4ae3-845a-09ad62e46bc7", + "id": "60a1c714-f113-4756-84b8-60f5543aa8e4", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -1598,7 +1598,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1620,7 +1620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9b5e102-ce7f-4224-91de-88660578dd7a", + "id": "fb494de0-df2c-450c-a848-1a4e24ca0676", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1658,7 +1658,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1680,7 +1680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30b9c2a7-60d5-455d-bff9-c6f9109cdaff", + "id": "436ba208-2a69-4e8d-8f7e-ef90d0a291c3", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -1718,7 +1718,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1746,7 +1746,7 @@ } }, { - "id": "43136e22-c9b3-410b-afd9-e3da7b995e7b", + "id": "47ae731c-608d-477c-bc4f-2d5bc9087bde", "name": "Update the Assets", "request": { "name": "Update the Assets", @@ -1780,7 +1780,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1808,7 +1808,7 @@ }, "response": [ { - "id": "ab3c29d4-2d08-4267-8db1-1f01a30b1d44", + "id": "2a448e2d-2675-4aee-9c22-301d8c7d36d5", "name": "Assets successfully updated", "originalRequest": { "url": { @@ -1846,7 +1846,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1868,7 +1868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e777cc5a-8ef4-4ac7-9e00-1c1000d75cf2", + "id": "79a10059-5334-41e4-b37d-f9ecf2bcbf1e", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -1906,7 +1906,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1928,7 +1928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d78c4547-32c5-4854-8cb4-30b897eda55b", + "id": "b9117ee9-ef46-44da-872e-948d7ebb39b4", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1966,7 +1966,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1988,7 +1988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9d4588f-29d9-4fb0-98df-2df66bd68825", + "id": "50cdef43-edea-432c-86a0-b354ebcdb69b", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2026,7 +2026,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2054,7 +2054,7 @@ } }, { - "id": "afa15d7f-e931-4a54-bbad-49b96bd5ec0e", + "id": "423eac78-f9fd-4e11-93e6-6add512bb6c9", "name": "Delete the Assets", "request": { "name": "Delete the Assets", @@ -2113,7 +2113,7 @@ }, "response": [ { - "id": "271e83bd-ca30-4bb6-ba66-5f746cf029d4", + "id": "9dd9ff31-47b5-4d5c-9438-2de1c9e0a219", "name": "Assets successfully deleted", "originalRequest": { "url": { @@ -2169,7 +2169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6d470a9-3b7a-43ac-9bd9-8839cfa18be3", + "id": "a3bf6ab4-69d4-4b38-97d7-f95103371935", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2225,7 +2225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b61a9ed9-d14b-4727-ac25-79e15624510e", + "id": "2e38a475-abee-44b1-b31e-4b4b2e555aea", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2287,7 +2287,7 @@ } }, { - "id": "f055495e-a46e-4e37-95ca-0e293441314b", + "id": "2fc5b3db-229f-4739-adae-adbc41c3d92c", "name": "Get Asset from ID", "request": { "name": "Get Asset from ID", @@ -2348,7 +2348,7 @@ }, "response": [ { - "id": "8312034c-874a-45cc-bb7e-8a1a08cccf8d", + "id": "7ef58e1c-7468-4f74-bba5-152a49cbd649", "name": "Asset successfully retrieved", "originalRequest": { "url": { @@ -2391,12 +2391,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"consequat_bfc\": -83002354\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n}", + "body": "{\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"sint__\": false,\n \"fugiat2d\": true\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c59d772-3743-4cd3-b86f-170923415fe1", + "id": "e78ab366-8abc-4f3d-9531-0ca8d7a1dbb8", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2444,7 +2444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "129f8258-74d5-4a62-971b-7fbbe50dec30", + "id": "a006c735-e9d5-4468-adc2-08c7bb416fc6", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2492,7 +2492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f4cf436-9a92-45ef-83a2-5975d136d376", + "id": "0ba905b2-b21d-4583-801a-5d8f3892100f", "name": "Not Found - `storeId` do not exist.", "originalRequest": { "url": { @@ -2534,7 +2534,7 @@ } }, { - "id": "d8a8699e-9f99-4768-8754-6dbe2b4e3eab", + "id": "0fd603c9-2c7d-4e67-95d7-85e07adeb392", "name": "Replace all assets", "request": { "name": "Replace all assets", @@ -2569,7 +2569,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2597,7 +2597,7 @@ }, "response": [ { - "id": "a8e0b9f5-145d-41d9-b586-f6c415d7eadd", + "id": "9575d1e9-806f-452a-a5c4-7197711a7f65", "name": "Assets successfully replaced", "originalRequest": { "url": { @@ -2636,7 +2636,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2658,7 +2658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f96751c-95fd-4266-aacc-301deb39d60c", + "id": "10e03091-29a1-4a6c-a677-4ea2e99c7158", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -2697,7 +2697,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2719,7 +2719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ad67a5b-6896-4595-aa98-273b4d779b6e", + "id": "cb060fb8-0629-404b-b777-1fe1082129a6", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2758,7 +2758,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2780,7 +2780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b43a241-1c72-4a76-b724-cc3843d05e04", + "id": "ebbb57ff-66cf-4fec-b326-93d4c7d13155", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2819,7 +2819,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2853,7 +2853,7 @@ "description": "Geolocation API returns a location (or nearby stores) and accuracy radius based on an IP address. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "4aaed5d3-7651-4be6-9e9d-96b0bd517f09", + "id": "99a6a449-bebc-423b-9e1b-971780529589", "name": "Geolocation from an IP address", "request": { "name": "Geolocation from an IP address", @@ -2913,7 +2913,7 @@ }, "response": [ { - "id": "e27b7758-31ff-4279-8505-2daacfe6c106", + "id": "d2dd6261-4501-435f-b33d-79852e262092", "name": "Geolocation successfully retrieved", "originalRequest": { "url": { @@ -2970,7 +2970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "205f98f6-4dad-46e8-bb16-ba946052681c", + "id": "5742f106-8ae7-453d-8b59-fd4aabd3ad29", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3027,7 +3027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc4ed22b-0b02-4e42-b9ca-ecb1c953394d", + "id": "500fcf0c-add9-4d2e-8e9f-714713b41d76", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3084,7 +3084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "762fca20-f8d8-4f8d-9e07-c94ab4b8bf7d", + "id": "9c5a809e-3658-4741-bb94-3b119ddf08c7", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3147,7 +3147,7 @@ } }, { - "id": "d51a5932-5309-4bd9-a058-97a185863164", + "id": "6ebca354-a0c5-4ec9-b490-1a03efc9aaab", "name": "Assets nearby a Geolocation", "request": { "name": "Assets nearby a Geolocation", @@ -3225,7 +3225,7 @@ }, "response": [ { - "id": "ac1f2a93-ccd1-43b7-b21b-54691fbe3465", + "id": "5a785d06-f956-4b4f-9d68-c5a73e417a08", "name": "Geolocation and Stores successufully retrieved", "originalRequest": { "url": { @@ -3295,12 +3295,12 @@ "value": "application/json" } ], - "body": "{\n \"stores\": {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"dolor_f4\": \"quis ullamco fugiat commodo\",\n \"minim41\": \"deserunt velit cupidatat ullamco Duis\"\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"in3fd\": -83457967.33079198,\n \"incididunt_a8\": \"voluptate dolor reprehenderit\",\n \"ea94\": 17953500\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"accuracy\": \"\",\n \"latitude\": \"\",\n \"longitude\": \"\",\n \"country_code\": \"\",\n \"country_name\": \"\",\n \"continent\": \"\",\n \"region_state\": \"\",\n \"city\": \"\",\n \"postal_code\": \"\",\n \"timezone\": \"\",\n \"raw_offset\": \"\",\n \"dst_offset\": \"\"\n}", + "body": "{\n \"stores\": {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"enim2\": -18416870,\n \"veniam33\": -23505858\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"laboris1\": true\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"accuracy\": \"\",\n \"latitude\": \"\",\n \"longitude\": \"\",\n \"country_code\": \"\",\n \"country_name\": \"\",\n \"continent\": \"\",\n \"region_state\": \"\",\n \"city\": \"\",\n \"postal_code\": \"\",\n \"timezone\": \"\",\n \"raw_offset\": \"\",\n \"dst_offset\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "59483e42-74e9-4a4e-8ed4-f02be63daa40", + "id": "6c53cbf1-40c3-426b-aeed-84ebbc8457c4", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3375,7 +3375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe7d5b26-761a-4481-9940-139b249deaf3", + "id": "bf89e715-3bcb-4ad1-a13c-b17178dcff48", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3450,7 +3450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbcbf969-1978-42d9-8c63-97f1be8df60b", + "id": "b85ac92d-9214-4fac-8d77-f1943dca9159", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3531,7 +3531,7 @@ } }, { - "id": "e19f8260-9933-4118-aaae-e08780b10f17", + "id": "ae150230-4687-4696-b5d6-9c4e5f9790a5", "name": "Timezone", "request": { "name": "Timezone", @@ -3600,7 +3600,7 @@ }, "response": [ { - "id": "7e14f537-6ffd-4307-9a9b-4fe9e6feacf5", + "id": "7c5f8f83-5e42-48d5-9856-dea67b8dba36", "name": "Timezone successfully retrieved", "originalRequest": { "url": { @@ -3666,7 +3666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2a988a7-4b88-42e2-b019-e90f498b82a7", + "id": "1f4354ad-4188-43ba-9e83-0123d30c9c72", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3732,7 +3732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb0d6779-cc61-439a-a8ac-b1c299992ae8", + "id": "02a54f95-772f-4bec-9d60-16bfb011a405", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3798,7 +3798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b86fc213-a399-49c4-abb5-f0ee3567ce0e", + "id": "cb281794-5715-4ea8-b1a1-4eb0895234ac", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3876,7 +3876,7 @@ "description": "Woosmap Localities API is a web service that returns a great amount of geographical places in response to an HTTP request. Among others are city names, postal codes, suburbs, addresses or airports. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "ed4f35a5-20f4-4906-a32a-a8b94840965d", + "id": "12984938-06a7-4eaf-8770-04a801d1aa6c", "name": "Autocomplete for Localities", "request": { "name": "Autocomplete for Localities", @@ -3908,11 +3908,11 @@ { "disabled": false, "description": { - "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", + "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n \nThese classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "quarter" + "value": "village" }, { "disabled": false, @@ -4017,7 +4017,7 @@ }, "response": [ { - "id": "d959b842-fe78-4788-9ba3-6a8c8a637245", + "id": "9dca2930-ead8-4f2c-aaff-786ab9cc2745", "name": "Autocompletion Localities successfully retrieved", "originalRequest": { "url": { @@ -4044,11 +4044,11 @@ { "disabled": false, "description": { - "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", + "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n \nThese classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "quarter" + "value": "village" }, { "disabled": false, @@ -4150,12 +4150,12 @@ "value": "application/json" } ], - "body": "{\n \"localities\": [\n {\n \"public_id\": \"\",\n \"types\": [\n \"hamlet\",\n \"neighbourhood\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n },\n {\n \"public_id\": \"\",\n \"types\": [\n \"admin_level\",\n \"country\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n }\n ]\n}", + "body": "{\n \"localities\": [\n {\n \"public_id\": \"\",\n \"types\": [\n \"country\",\n \"village\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n },\n {\n \"public_id\": \"\",\n \"types\": [\n \"address\",\n \"town\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b60f8637-dbe0-4570-b6d2-b609d70b26e1", + "id": "4e6d0e84-fc6d-463e-81af-2c9bfac098c7", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -4182,11 +4182,11 @@ { "disabled": false, "description": { - "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", + "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n \nThese classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "quarter" + "value": "village" }, { "disabled": false, @@ -4293,7 +4293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7045dbd-fe39-424e-8719-670601eca24d", + "id": "d3b00a4f-afa3-4341-96b1-e20751e9b80d", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -4320,11 +4320,11 @@ { "disabled": false, "description": { - "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", + "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n \nThese classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "quarter" + "value": "village" }, { "disabled": false, @@ -4431,7 +4431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c31b2615-74a9-4b73-9dcc-9677fe4483d4", + "id": "49228158-7b3d-44aa-a77a-0875c42c2269", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -4458,11 +4458,11 @@ { "disabled": false, "description": { - "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying.\n", + "content": "Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n \nThese classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "quarter" + "value": "village" }, { "disabled": false, @@ -4575,7 +4575,7 @@ } }, { - "id": "704b8d57-b33a-4261-9daa-1b0da153dd22", + "id": "eed2be09-a05a-4926-b65c-45f184ffee41", "name": "Details of a Locality", "request": { "name": "Details of a Locality", @@ -4680,7 +4680,7 @@ }, "response": [ { - "id": "8b74387c-10de-4d6f-b2ab-d06913161deb", + "id": "8157f347-3cd2-4eda-b479-3497150c484a", "name": "Details Localities successfully retrieved", "originalRequest": { "url": { @@ -4777,12 +4777,12 @@ "value": "application/json" } ], - "body": "{\n \"result\": {\n \"public_id\": \"\",\n \"formatted_address\": \"\",\n \"types\": [\n \"town\",\n \"postal_code\"\n ],\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n },\n \"accuracy\": \"APPROXIMATE\"\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"name\": \"\",\n \"administrative_area_label\": \"\",\n \"status\": \"not_yet_built\",\n \"addresses\": {\n \"pagination\": {\n \"page\": \"\",\n \"page_count\": \"\",\n \"addresses_per_page\": \"\",\n \"address_count\": \"\"\n },\n \"list\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"result\": {\n \"public_id\": \"\",\n \"formatted_address\": \"\",\n \"types\": [\n \"suburb\",\n \"village\"\n ],\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"MultiPoligon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n },\n \"accuracy\": \"GEOMETRIC_CENTER\"\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"name\": \"\",\n \"administrative_area_label\": \"\",\n \"status\": \"not_yet_built\",\n \"addresses\": {\n \"pagination\": {\n \"page\": \"\",\n \"page_count\": \"\",\n \"addresses_per_page\": \"\",\n \"address_count\": \"\"\n },\n \"list\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a278222a-b1a7-464b-b619-68e1b037077e", + "id": "bc0bc808-2d4a-46b4-9790-aa8b12665132", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -4884,7 +4884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "724ae44c-9ddd-4356-b931-5ccbba62b0bd", + "id": "91bd7da8-a89d-41c4-981d-e75bb5d14ce6", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -4986,7 +4986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "547dae2d-37a5-4c53-894d-d2cbfb4025ff", + "id": "5b6ccbba-cba7-49ea-ac25-154972a9836a", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -5094,7 +5094,7 @@ } }, { - "id": "26152665-8d9c-437a-b60d-49699f708555", + "id": "874fce5e-a327-4d4d-b861-f3af163890c1", "name": "Geocode a locality or Reverse Geocode a latlng", "request": { "name": "Geocode a locality or Reverse Geocode a latlng", @@ -5139,7 +5139,7 @@ "type": "text/plain" }, "key": "types", - "value": "quarter" + "value": "village" }, { "disabled": false, @@ -5235,7 +5235,7 @@ }, "response": [ { - "id": "8f667606-4bbb-4b5b-99f3-7cd87b2790d2", + "id": "f4782d21-a5d0-4b01-ac4f-4da1964d719a", "name": "Request Localities Geocode successful", "originalRequest": { "url": { @@ -5275,7 +5275,7 @@ "type": "text/plain" }, "key": "types", - "value": "quarter" + "value": "village" }, { "disabled": false, @@ -5368,12 +5368,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"hamlet\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"MultiPoligon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"locality\",\n \"quarter\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"DISTRICT\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"suburb\",\n \"country\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"MultiPoligon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"hamlet\",\n \"village\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7ce03b06-7e25-4f30-8afc-251ec39760ab", + "id": "5165f134-2118-4264-8280-7f64ce5b66cc", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -5413,7 +5413,7 @@ "type": "text/plain" }, "key": "types", - "value": "quarter" + "value": "village" }, { "disabled": false, @@ -5511,7 +5511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92411dd2-89dd-43a2-b7eb-ab8eb29d9e40", + "id": "60833c9b-6284-4f53-8629-2fb3e8de7f4e", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -5551,7 +5551,7 @@ "type": "text/plain" }, "key": "types", - "value": "quarter" + "value": "village" }, { "disabled": false, @@ -5649,7 +5649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d3bbb20-1a25-46f0-b1c2-2f7e59e25985", + "id": "ffab6206-0a8e-48a2-867b-50fd9280f279", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -5689,7 +5689,7 @@ "type": "text/plain" }, "key": "types", - "value": "quarter" + "value": "village" }, { "disabled": false, @@ -5793,7 +5793,7 @@ } }, { - "id": "2838c18d-c592-4572-b633-68bef9987d84", + "id": "946655b8-d51b-447e-a759-149194ebf70b", "name": "Nearby points of interest", "request": { "name": "Nearby points of interest", @@ -5820,7 +5820,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.food_and_drinks.bar" + "value": "business.shop.butcher" }, { "disabled": false, @@ -5865,7 +5865,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.food_and_drinks.bar" + "value": "business.shop.butcher" } ], "variable": [] @@ -5898,7 +5898,7 @@ }, "response": [ { - "id": "69eac816-10c0-4ab0-8ff2-9c5a390b7580", + "id": "142a7d6b-8bef-405f-910b-4aa60ab47061", "name": "Points of interests surrounding `location` and matching provided `types`, sorted by distance to `location`.", "originalRequest": { "url": { @@ -5920,7 +5920,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.food_and_drinks.bar" + "value": "business.shop.butcher" }, { "disabled": false, @@ -5965,7 +5965,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.food_and_drinks.bar" + "value": "business.shop.butcher" }, { "description": { @@ -5995,12 +5995,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"types\": [\n \"business.shop.doityourself\",\n \"medical.hospital\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.car_rental\",\n \"education.kindergarten\"\n ],\n \"formatted_address\": \"\"\n },\n {\n \"types\": [\n \"business.shop.electronics\",\n \"business.car_repair\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.shop.sports\",\n \"business.cinema\"\n ],\n \"formatted_address\": \"\"\n }\n ],\n \"pagination\": {\n \"next_page\": \"\",\n \"previous_page\": \"\"\n }\n}", + "body": "{\n \"results\": [\n {\n \"types\": [\n \"beach\",\n \"business.shop.butcher\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"sports.winter\",\n \"education.library\"\n ],\n \"formatted_address\": \"\"\n },\n {\n \"types\": [\n \"medical.clinic\",\n \"hospitality.guest_house\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"tourism.monument\",\n \"business.shop.toys\"\n ],\n \"formatted_address\": \"\"\n }\n ],\n \"pagination\": {\n \"next_page\": \"\",\n \"previous_page\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90ec3b13-feb3-4c59-9c68-860c6b124c1e", + "id": "dc219852-a760-406e-a0ce-1c256b569fca", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6022,7 +6022,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.food_and_drinks.bar" + "value": "business.shop.butcher" }, { "disabled": false, @@ -6067,7 +6067,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.food_and_drinks.bar" + "value": "business.shop.butcher" }, { "description": { @@ -6102,7 +6102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f15c2591-eb1a-4f72-af8c-1c65f76a9390", + "id": "3eec8cb8-2993-4c59-bccc-953df9ad2075", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -6124,7 +6124,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.food_and_drinks.bar" + "value": "business.shop.butcher" }, { "disabled": false, @@ -6169,7 +6169,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.food_and_drinks.bar" + "value": "business.shop.butcher" }, { "description": { @@ -6204,7 +6204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e6c7394-6c85-4301-b3f6-263a8d766909", + "id": "0aef6c7c-6a1b-4327-8aa7-0584b50b7bbe", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -6226,7 +6226,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.food_and_drinks.bar" + "value": "business.shop.butcher" }, { "disabled": false, @@ -6271,7 +6271,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.food_and_drinks.bar" + "value": "business.shop.butcher" }, { "description": { @@ -6318,7 +6318,7 @@ "description": "Woosmap Address API is a web service that returns addresses and other geographical places in response to an HTTP request. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n>**⚠️ This API has been deprecated in favour of Localities API**\n", "item": [ { - "id": "1e8bdc52-4201-4fd1-8efa-e21c5f9de01f", + "id": "e453e15d-ca2e-43dd-8583-7c2c52854027", "name": "Autocomplete for Addresses", "request": { "name": "Autocomplete for Addresses", @@ -6406,7 +6406,7 @@ }, "response": [ { - "id": "e9fe7d14-a5bf-40c3-9b35-0e1827ddc5a6", + "id": "8a20b2c7-1fe5-47c5-b756-cf238ec6c939", "name": "Autocompletion Address successfully retrieved", "originalRequest": { "url": { @@ -6486,12 +6486,12 @@ "value": "application/json" } ], - "body": "{\n \"predictions\": [\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"country\",\n \"status\": \"REQUEST_DENIED\"\n },\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"country\",\n \"status\": \"UNKNOWN_ERROR\"\n }\n ],\n \"status\": \"INVALID_REQUEST\"\n}", + "body": "{\n \"predictions\": [\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"admin_level\",\n \"status\": \"INVALID_REQUEST\"\n },\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"house_number\",\n \"status\": \"INVALID_REQUEST\"\n }\n ],\n \"status\": \"OK\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09a820b6-de3a-4235-9868-afdd94c1c01b", + "id": "1c1ce66b-d44d-4d23-9ddf-7fce4ac50665", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6576,7 +6576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ff85be3-181a-4670-9627-f7843ffdcaf6", + "id": "23e74ba1-7c3e-4071-8877-de6ebce1b82e", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -6661,7 +6661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "debbef08-3b2e-4fb3-b798-f477e8baada5", + "id": "a22db90d-1147-44c3-b770-6c34964eec2f", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -6752,7 +6752,7 @@ } }, { - "id": "c7eb4683-3572-405a-9cb6-4552d4a9672f", + "id": "ccdd93dd-8e0a-44ec-a8b5-004c60d05d43", "name": "Details of an Address", "request": { "name": "Details of an Address", @@ -6831,7 +6831,7 @@ }, "response": [ { - "id": "1e05de41-8538-45d2-9763-e6f28b27ebde", + "id": "68f9397a-80f5-4b49-8269-b1e6fb9c98b8", "name": "Details Address successfully retrieved", "originalRequest": { "url": { @@ -6902,12 +6902,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"UNKNOWN_ERROR\",\n \"result\": {\n \"formatted_address\": \"\",\n \"types\": [\n \"locality\",\n \"route\"\n ],\n \"public_id\": \"\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n}", + "body": "{\n \"status\": \"UNKNOWN_ERROR\",\n \"result\": {\n \"formatted_address\": \"\",\n \"types\": [\n \"admin_level\",\n \"route\"\n ],\n \"public_id\": \"\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"APPROXIMATE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a4ef72c-03ce-4061-ac41-0145dc8473d2", + "id": "2771ee7e-364a-44bf-8621-490fa477336d", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6983,7 +6983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34a78d70-f1fe-4c03-a14e-47e26fa5f5eb", + "id": "195520ce-d4f1-4b99-99c8-871c194c4197", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -7059,7 +7059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6117e117-900e-4644-90a0-e2c861a24981", + "id": "067507df-ddbc-4742-8776-0a3cac90562b", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -7141,7 +7141,7 @@ } }, { - "id": "84ec4612-918e-416d-b1f7-e37b94f38b16", + "id": "eacdb7a6-af12-44fa-b007-4052d582687e", "name": "Geocode an Address or Reverse Geocode a latlng", "request": { "name": "Geocode an Address or Reverse Geocode a latlng", @@ -7256,7 +7256,7 @@ }, "response": [ { - "id": "d683c447-58ab-4b8b-b04d-316dadfe1be9", + "id": "19d2c4fd-ded0-4eec-8ef3-e5ce8288ab59", "name": "Request Address Geocode successful", "originalRequest": { "url": { @@ -7363,12 +7363,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"admin_level\",\n \"address_block\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"APPROXIMATE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"address_block\",\n \"admin_level\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"ROOFTOP\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"UNKNOWN_ERROR\"\n}", + "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"house_number\",\n \"country\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"locality\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"REQUEST_DENIED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e904dc65-d37c-4c5a-b40d-3ad5c733d8f2", + "id": "d60c77b1-e416-4625-b8d2-829a385a1319", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -7480,7 +7480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85b1a7ab-6cf2-4592-91bd-f64d1dd7d52c", + "id": "3a7b050f-fa61-4d69-a842-fed4245036ab", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -7592,7 +7592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b437ec3-6782-42f8-a960-f1a185d313b3", + "id": "84cb78c1-b3b7-4bce-a7c9-c0a7966ac22e", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -7716,7 +7716,7 @@ "description": "Woosmap Distance API is a service providing road travel distance and duration calculations, on a Worldwide scale. Request is done over HTTPS using GET or POST. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "814a2b9c-f1bd-4260-8dac-1717ec30b5dc", + "id": "a81a8809-57ef-4110-8e1c-aaac5256bc79", "name": "Distance Matrix", "request": { "name": "Distance Matrix", @@ -7762,7 +7762,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -7789,7 +7789,7 @@ "type": "text/plain" }, "key": "elements", - "value": "distance" + "value": "duration" }, { "disabled": false, @@ -7798,7 +7798,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -7849,7 +7849,7 @@ }, "response": [ { - "id": "46008cae-96a9-44d2-a35c-eade632cd37b", + "id": "d777bd18-84d3-4f4a-8d36-31b8ea7b1a4a", "name": "Distance Matrix successfully retrieved", "originalRequest": { "url": { @@ -7890,7 +7890,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -7917,7 +7917,7 @@ "type": "text/plain" }, "key": "elements", - "value": "distance" + "value": "duration" }, { "disabled": false, @@ -7926,7 +7926,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -7974,12 +7974,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"OK\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"OVER_QUERY_LIMIT\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "07799284-e79e-4ff0-9644-93ecc882571f", + "id": "018e027c-946f-4e30-a498-d5b05ce6bdbe", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -8020,7 +8020,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -8047,7 +8047,7 @@ "type": "text/plain" }, "key": "elements", - "value": "distance" + "value": "duration" }, { "disabled": false, @@ -8056,7 +8056,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -8109,7 +8109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e236d884-9711-43a1-ad96-605011cf310c", + "id": "9773edf5-1f54-4263-a33e-0969f249b916", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -8150,7 +8150,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -8177,7 +8177,7 @@ "type": "text/plain" }, "key": "elements", - "value": "distance" + "value": "duration" }, { "disabled": false, @@ -8186,7 +8186,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -8239,7 +8239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc3988c3-6b12-435e-84c7-18cf0e6e453c", + "id": "7b1cb59f-9964-4841-a12f-9c753cc5ad3b", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -8280,7 +8280,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -8307,7 +8307,7 @@ "type": "text/plain" }, "key": "elements", - "value": "distance" + "value": "duration" }, { "disabled": false, @@ -8316,7 +8316,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -8375,7 +8375,7 @@ } }, { - "id": "a4660560-051d-48ae-b3fa-6448da36e4a1", + "id": "acf2f273-2a8b-4300-807d-3c185f564212", "name": "Distance Matrix using POST", "request": { "name": "Distance Matrix using POST", @@ -8411,7 +8411,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8439,7 +8439,7 @@ }, "response": [ { - "id": "a78efda8-6699-4cd7-94ea-d384948b1010", + "id": "0fb179fd-bf23-4947-bb3d-c53994f8e9c8", "name": "Distance Matrix with POST successfully retrieved", "originalRequest": { "url": { @@ -8479,7 +8479,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8496,12 +8496,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"OK\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"OVER_QUERY_LIMIT\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "272074c1-5af2-4d07-9128-6b3eb8a12f9c", + "id": "9ff207dc-2ce4-4019-80c6-455e319afc0f", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -8541,7 +8541,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8563,7 +8563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce5816a3-4857-4091-a19e-4b0c33a3ed22", + "id": "0b20b3ac-fa74-4aba-9d2b-46bd68fba966", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -8603,7 +8603,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8625,7 +8625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "853f7933-d783-41dd-86f0-2a6e592f0439", + "id": "2ea147bc-af92-488d-b6a6-892e92b56170", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -8665,7 +8665,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8687,7 +8687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "910dc8dc-5b74-4ab4-ae3c-6964ab13b4eb", + "id": "39286e9f-aa2f-4224-9472-fe011a586eae", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -8727,7 +8727,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8755,7 +8755,7 @@ } }, { - "id": "082a9804-13c1-4fb2-8a25-0c8171b5ca9d", + "id": "76e22a0e-45b3-4fc8-85d6-0a5abb4785e3", "name": "Route", "request": { "name": "Route", @@ -8801,7 +8801,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -8846,7 +8846,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -8855,7 +8855,7 @@ "type": "text/plain" }, "key": "details", - "value": "full" + "value": "none" }, { "disabled": false, @@ -8915,7 +8915,7 @@ }, "response": [ { - "id": "40a16d0f-d759-4182-99f4-49e89aa4db19", + "id": "ed3fd37a-94b1-4a5c-83f9-186e723c6914", "name": "Route successfully retrieved", "originalRequest": { "url": { @@ -8956,7 +8956,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9001,7 +9001,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9010,7 +9010,7 @@ "type": "text/plain" }, "key": "details", - "value": "full" + "value": "none" }, { "disabled": false, @@ -9067,12 +9067,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"OK\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n }\n ]\n}", + "body": "{\n \"status\": \"BACKEND_ERROR\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7f314bb-e6e6-43fc-99c3-68ab29d35641", + "id": "e5d6c63c-e88d-4a8e-a66a-e398c5301635", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -9113,7 +9113,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9158,7 +9158,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9167,7 +9167,7 @@ "type": "text/plain" }, "key": "details", - "value": "full" + "value": "none" }, { "disabled": false, @@ -9229,7 +9229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba25bb72-9b5c-4d8a-af84-2f9568e1b8aa", + "id": "3b359928-c8e9-4b0d-99e1-43107e86fa65", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -9270,7 +9270,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9315,7 +9315,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9324,7 +9324,7 @@ "type": "text/plain" }, "key": "details", - "value": "full" + "value": "none" }, { "disabled": false, @@ -9386,7 +9386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "794b00f1-def7-4ef6-bbc9-568c1d42c3ca", + "id": "f9c6b29d-6b67-47d8-979f-bba0989cde8d", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -9427,7 +9427,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9472,7 +9472,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9481,7 +9481,7 @@ "type": "text/plain" }, "key": "details", - "value": "full" + "value": "none" }, { "disabled": false, @@ -9549,7 +9549,7 @@ } }, { - "id": "a93fa960-9d6d-41b5-9650-96ebfdbd6ba8", + "id": "30c4c5d1-a700-4702-a2a3-f9b252332d29", "name": "Tolls", "request": { "name": "Tolls", @@ -9595,7 +9595,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9640,7 +9640,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9691,7 +9691,7 @@ }, "response": [ { - "id": "f9faaa9a-428e-4732-8c93-4279f250393a", + "id": "9bb1c6ee-8ba5-4ece-897a-0f663a30cbef", "name": "Tolls successfully retrieved", "originalRequest": { "url": { @@ -9732,7 +9732,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9777,7 +9777,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9825,12 +9825,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"BACKEND_ERROR\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"incididuntef\": -18292961,\n \"cupidatat_0e6\": 38953076.60657212\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"fugiatf\": 18074965.10787639\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"reprehenderitae\": 87726245,\n \"doloreb1e\": true,\n \"ide\": \"adipisicing amet ipsum officia\"\n },\n {\n \"countryCode\": \"\",\n \"ida\": 12390065.641139045,\n \"voluptatee\": \"nostrud\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"proident_\": \"commodo sed cupidatat\",\n \"ut861\": \"ipsum sint qui\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"INVALID_REQUEST\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"fugiat_3\": -49746462\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"dolor_8_\": true\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"magnaf\": 20993029.05449027,\n \"occaecat_0\": -20982497.022343785\n },\n {\n \"countryCode\": \"\",\n \"sed_6\": -93895158,\n \"ullamco7a\": 77009168\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"magna4d\": \"adipisicing consequat ipsum\"\n },\n {\n \"countryCode\": \"\",\n \"Lorem_742\": false\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5f4e6af-2be1-4dd4-930f-3ac1324db956", + "id": "72758517-35f4-4fcb-801f-b4365b4ed22f", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -9871,7 +9871,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9916,7 +9916,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9969,7 +9969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0b3f044-4bdf-4edc-8a38-dd8aca7dc567", + "id": "3ca488a3-ef95-482e-aa45-8793a453d385", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -10010,7 +10010,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10055,7 +10055,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10108,7 +10108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbc12644-41f6-4280-ba94-c2936cf4c50d", + "id": "d3cec5db-7379-477a-972b-b0019c811dfc", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -10149,7 +10149,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10194,7 +10194,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10253,7 +10253,7 @@ } }, { - "id": "2d71d862-d09d-4f21-bfd8-f5927e402e05", + "id": "8ce7f31e-1792-4743-909f-f983a0734ec9", "name": "Isochrone (Early Access)", "request": { "name": "Isochrone (Early Access)", @@ -10299,7 +10299,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10326,7 +10326,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10368,7 +10368,7 @@ }, "response": [ { - "id": "1b2533a1-f327-4c84-b318-3f8083bb1402", + "id": "89039b45-d953-4b40-8766-844dbc7271ff", "name": "Isochrone successfully retrieved", "originalRequest": { "url": { @@ -10409,7 +10409,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10436,7 +10436,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10475,12 +10475,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"REQUEST_DENIED\",\n \"isoline\": {\n \"origin\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"time\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"geometry\": \"\"\n }\n}", + "body": "{\n \"status\": \"INVALID_REQUEST\",\n \"isoline\": {\n \"origin\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"time\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"geometry\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01fbaa2a-a0c1-46d8-9e12-be62957288bd", + "id": "873ad285-d854-4d6b-b61a-b9d228fc5ecd", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -10521,7 +10521,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10548,7 +10548,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10592,7 +10592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd1beeda-7e38-4ecf-85fb-0719d882e52f", + "id": "61268dbd-bf97-4ac1-9d2e-275feea3b0dc", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -10633,7 +10633,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10660,7 +10660,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10704,7 +10704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afb01d0d-5dee-4b77-949d-2d4cb50337bf", + "id": "4dfd7f20-6387-46e0-8db9-3f5537d391ec", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -10745,7 +10745,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10772,7 +10772,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10828,7 +10828,7 @@ "description": "Woosmap Zones API is a web service that uses an HTTP request to manage, create or edit your Zones (polygons) attached to your assets.\nThe general principle is that sometimes searching assets using crowfly distance is not good enough. For example to search the restaurant that will do the delivery for a specified address, each restaurant has a delivery zone and for topological or business reasons it’s not always the nearest restaurant in charge of your delivery. Woosmap Zones API allows you to associate a delivery zone to each of the restaurants.\n", "item": [ { - "id": "57a3f943-8980-4c67-afa6-55aa141d4bcb", + "id": "a1b0a241-b387-4ede-bdab-72a2d3d16204", "name": "List your Zones", "request": { "name": "List your Zones", @@ -10896,7 +10896,7 @@ }, "response": [ { - "id": "f15b3756-35b0-4028-806b-959690374b1c", + "id": "17ca6c91-b725-4a15-af94-a3d2fea1f94a", "name": "Zones successfully retrieved", "originalRequest": { "url": { @@ -10961,7 +10961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b163ec05-5a9b-449d-8d2f-5002032b1da5", + "id": "9f5a2f83-c614-47a8-8318-55a986dddd63", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11026,7 +11026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8239a94f-bc72-4e64-850d-23d373db4125", + "id": "ea86573a-57c1-499d-a1d7-9e3782d974f0", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11091,7 +11091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f98542a-c29c-4f49-bc86-7c0adc308858", + "id": "669d8fc0-982f-41d4-ad34-094ed0d43076", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -11162,7 +11162,7 @@ } }, { - "id": "4fde4ca8-6818-4b47-b244-6c9f6b119db0", + "id": "b6e95d14-cb23-44b3-bb61-078d6c581cff", "name": "Create your Zones", "request": { "name": "Create your Zones", @@ -11224,7 +11224,7 @@ }, "response": [ { - "id": "820f38e4-8f3c-4604-bdf7-57e090291c99", + "id": "6ed45b98-7c95-43d2-9b27-302c777a660e", "name": "Zones successfully created", "originalRequest": { "url": { @@ -11284,7 +11284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87acb79c-5d70-4b51-ad49-c744c6ea94c6", + "id": "7c83b3fc-cf0a-4a78-b37d-52b2a1a148d4", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -11344,7 +11344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f313ff5d-f611-4d90-8b9e-765163cd8da0", + "id": "e59a6f2e-83a3-4603-9e82-0e9c45812695", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11404,7 +11404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1510d68-6559-46dc-b280-1c564a148111", + "id": "3d195325-2cd5-4de0-837e-593830b83edc", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11470,7 +11470,7 @@ } }, { - "id": "64c1da35-5013-46b0-b816-3d3e05b8a22d", + "id": "147ad294-03ec-409d-9833-d0cdf6cefe77", "name": "Update the Zones", "request": { "name": "Update the Zones", @@ -11532,7 +11532,7 @@ }, "response": [ { - "id": "54c1c853-59e3-4652-ad0b-37bc9daa871c", + "id": "125cebe0-15d5-4087-815d-9c55fa8d9d2e", "name": "Zones successfully updated", "originalRequest": { "url": { @@ -11592,7 +11592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1745cb3-0d2f-4545-aa6e-80b682e8a9a6", + "id": "f68cc0b5-8b06-4e38-9d71-77e8492d6154", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -11652,7 +11652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69e1ebf7-6a80-46ec-b82c-dd67f10ecbb5", + "id": "9c5e3035-7cb3-4013-a18c-e61b32a29ca3", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11712,7 +11712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea5d071a-5399-4522-8cef-690c1379b35a", + "id": "24b3a8da-787d-44c5-85f1-a4e1a05bb370", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11778,7 +11778,7 @@ } }, { - "id": "69e58c45-f0fb-4ec0-a9e7-1eda0e91513b", + "id": "5218cb7e-a36a-4fcd-a853-17c70494eaec", "name": "Delete the Zones", "request": { "name": "Delete the Zones", @@ -11827,7 +11827,7 @@ }, "response": [ { - "id": "0f9aff8a-7f56-4d15-baf7-1c39e616ce65", + "id": "338d0996-d8c8-460d-bd01-23eb0bb6c6f0", "name": "Zones successfully deleted", "originalRequest": { "url": { @@ -11874,7 +11874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5179e252-f715-413b-8e6c-1bed6fdfd2fa", + "id": "7f5649a4-5939-470c-a1f0-b7f83c7396bd", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11921,7 +11921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50be67a8-9252-45ab-b2ff-19be5292207a", + "id": "b923afef-d849-4e63-a5b1-217d35abd5cf", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11974,7 +11974,7 @@ } }, { - "id": "e267be51-bae7-4704-befd-e47b8dbc8560", + "id": "9fc62b44-0b20-4d4a-82c3-d0fef0f06f26", "name": "Get Zone from ID", "request": { "name": "Get Zone from ID", @@ -12035,7 +12035,7 @@ }, "response": [ { - "id": "b833391c-f7f0-43ed-87b0-85e3d23bf8e5", + "id": "8ecc6c1a-c14e-4dab-a192-681456721fb5", "name": "Zone successfully retrieved", "originalRequest": { "url": { @@ -12083,7 +12083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d31cb81f-39e3-41f7-92f0-3ec368a47064", + "id": "e8a4132f-c753-4b56-966f-7ebf4cf7e45d", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -12131,7 +12131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "388887bc-edd8-4151-a8f1-b118fa61fda1", + "id": "a769cec7-eeb6-47a3-923d-59c031138ee3", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -12179,7 +12179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c85f2234-b170-46e4-bd9f-b296aa445c18", + "id": "0b424285-548f-4e07-b0c0-2323dc798c6e", "name": "Not Found - `zone_id` do not exist.", "originalRequest": { "url": { @@ -12221,7 +12221,7 @@ } }, { - "id": "cd81cf21-3100-40b2-9a09-5ce77cd65817", + "id": "b6147d9c-5d93-4f47-b917-cdf089de985f", "name": "Delete Zone from ID", "request": { "name": "Delete Zone from ID", @@ -12282,7 +12282,7 @@ }, "response": [ { - "id": "9c509ae7-36f1-40a8-b4f4-ec4eb34179f5", + "id": "e7afbbc3-545e-4768-9cb2-7c45454b0d89", "name": "Zones successfully deleted", "originalRequest": { "url": { @@ -12330,7 +12330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80fbbccf-e28b-4663-8859-7d27b8ceb248", + "id": "c8c72b69-42da-412b-84de-23a53ef6d20e", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -12378,7 +12378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb4dd34d-2a8e-4e9e-9be5-e43bac1fe3d6", + "id": "2b563a12-bf62-4c95-8714-a5912333be8a", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -12438,7 +12438,7 @@ "description": "The Woosmap Static Maps API lets you generate customizable, embeddable map images using simple HTTP requests. It’s a lightweight alternative to interactive maps—ideal for emails, reports, or websites where dynamic JavaScript maps aren't needed. \n\nYou provide parameters such as location, zoom level, size, and markers, and the API returns a map image that can be embedded directly into any webpage or application.\n", "item": [ { - "id": "01cc3a5d-3432-4b44-8d85-00d010c07aec", + "id": "5cfce892-c5c3-4dcc-84b2-3a5e2aed0e5b", "name": "Get Static Map", "request": { "name": "Get Static Map", @@ -12612,7 +12612,7 @@ }, "response": [ { - "id": "2ffa04ca-a16f-492a-9695-cce3b000ec8d", + "id": "3c4acf4c-a2f0-4fc7-9da7-cc74729b7caa", "name": "Successful Response", "originalRequest": { "url": { @@ -12756,7 +12756,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9ee9081c-56dc-4dcf-b2b1-c99ae3067ba2", + "id": "c430cbc9-4ff2-4002-a80b-7de417f1cc12", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -12900,7 +12900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d681f29-525a-49e3-b7de-e2a1e889be71", + "id": "5ca898af-4c11-455a-a5e2-4c0a36d60b81", "name": "Out of free quota.", "originalRequest": { "url": { @@ -13044,7 +13044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9537f01-f2e7-4a8d-a472-1ff81c2f8cad", + "id": "0d423414-b6ca-4d7f-aeef-92a74436dfc0", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -13188,7 +13188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5da525c4-92c2-4a11-aa17-f399ed7f49fd", + "id": "1de6738f-5ba5-4f47-a814-ebfd34cfcffd", "name": "Validation Error", "originalRequest": { "url": { @@ -13332,7 +13332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ccddb9e-5642-48cf-ae24-190e769dac95", + "id": "87e8a853-1345-45f4-8ae6-0d9cbf6ff0b2", "name": "Rate limit reached", "originalRequest": { "url": { @@ -13488,7 +13488,7 @@ "description": "Add What3Words capabilities to your address search.", "item": [ { - "id": "9e7379b1-dd0e-4f36-9102-ed50d432f2fa", + "id": "190fd203-a9ff-49b8-a01e-c555989dda8f", "name": "Convert To What 3 Words", "request": { "name": "Convert To What 3 Words", @@ -13563,7 +13563,7 @@ }, "response": [ { - "id": "f0d3a2a4-b4f8-49b7-89c0-c5bbe534e24c", + "id": "80cdf9c1-00b0-4d0d-8a41-28afb21d0e20", "name": "Successful Response", "originalRequest": { "url": { @@ -13635,7 +13635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53f51e90-ebb4-42d1-b05d-aed58a27275a", + "id": "3c95174e-2788-47b4-bd5c-72438441d384", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -13707,7 +13707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41fd9f88-0d92-4bbe-8095-a1e46905e5bf", + "id": "7fcf058f-a241-461d-bcfd-926a8c66b632", "name": "Out of free quota.", "originalRequest": { "url": { @@ -13779,7 +13779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "821ffcf3-1ae9-4c5f-b52d-618c0cffa25d", + "id": "a128fb4e-5115-4278-a539-2815438b42ff", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -13851,7 +13851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7cfc0b0-8b56-44ba-9be4-490783beb8ca", + "id": "27c94b0a-9b6f-449b-a8a5-b64511c67d6a", "name": "Validation Error", "originalRequest": { "url": { @@ -13923,7 +13923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb3eba0c-8220-47d6-a09f-b108122ce158", + "id": "7cc5619f-19a7-4f67-aecc-02bf507290a0", "name": "Rate limit reached", "originalRequest": { "url": { @@ -14001,7 +14001,7 @@ } }, { - "id": "97fe9d1f-4747-4d2a-8e70-32ee0785c19c", + "id": "80544f7b-197c-4868-a8f3-834a1ee78f8a", "name": "Convert To Address", "request": { "name": "Convert To Address", @@ -14067,7 +14067,7 @@ }, "response": [ { - "id": "3aa9e9f6-543f-48ac-81f7-873e5689b8d8", + "id": "f87575d9-677e-414c-8dc1-f4be9fba444b", "name": "Successful Response", "originalRequest": { "url": { @@ -14125,12 +14125,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"types\": [\n \"city\",\n \"named_place\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n {\n \"types\": [\n \"route\",\n \"locality\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"types\": [\n \"quarter\",\n \"route\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n {\n \"types\": [\n \"postal_code\",\n \"locality\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b4c49f20-5c52-4f6d-81df-c37ba52f409d", + "id": "84a6e287-2b2a-4d40-ab9c-289314cd43c4", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -14193,7 +14193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06d32ef4-6ca1-4286-9455-a792755ff965", + "id": "8e303707-a432-476c-a5cc-098858f2235e", "name": "Out of free quota.", "originalRequest": { "url": { @@ -14256,7 +14256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bbf9978-0848-4908-8034-01aaa2defc4c", + "id": "2d6b1435-f947-42a9-a044-87e6e49153d4", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -14319,7 +14319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f717258-38fd-42c1-afcd-cf7b40fcf440", + "id": "39f3b3ca-5cf6-47a2-9cd8-f6797a64a0ec", "name": "Validation Error", "originalRequest": { "url": { @@ -14382,7 +14382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35ad1aa6-1930-4ced-87a3-2530debd3f75", + "id": "ec186527-50f4-4838-b448-2f39fc33c6ad", "name": "Rate limit reached", "originalRequest": { "url": { @@ -14451,7 +14451,7 @@ } }, { - "id": "b95de47f-e00c-4118-b532-ab31c33901b2", + "id": "6119df4f-c043-49ff-8b8c-536b523c31c9", "name": "Autosuggest", "request": { "name": "Autosuggest", @@ -14580,7 +14580,7 @@ }, "response": [ { - "id": "156500ff-40e3-4830-af98-45c2ef63a7d1", + "id": "c2afe0de-07b5-4a16-a451-0c54adb5ceba", "name": "Successful Response", "originalRequest": { "url": { @@ -14706,7 +14706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "191a426c-51fb-4653-874f-8f4c4798e81e", + "id": "35a3a507-cbd5-4f33-8c62-a959b13e1f5c", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -14832,7 +14832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe2462ad-32fe-4ff8-81d5-346cadd1ddcc", + "id": "21c8f79e-b11f-49c7-8a4e-d671ce53861b", "name": "Out of free quota.", "originalRequest": { "url": { @@ -14958,7 +14958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef01cb60-3a5c-4d27-8365-93311a53d9f5", + "id": "280808ad-818a-4857-a7ce-08b09521affa", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -15084,7 +15084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d72a441f-3da0-4bab-b7c1-50e60de03968", + "id": "93db7677-8976-4ca4-ae1a-ef97440975c7", "name": "Validation Error", "originalRequest": { "url": { @@ -15210,7 +15210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a4b3f44-ddd0-4798-b99d-009cc1172e4d", + "id": "002ebe2d-f9da-4964-aab7-038b7754c571", "name": "Rate limit reached", "originalRequest": { "url": { @@ -15348,7 +15348,7 @@ "description": "The Indoor API suite provides comprehensive tools for indoor mapping, search, and navigation in complex venues.\n\nThe Indoor Map API renders detailed floor plans with customizable styling, while the Indoor Search API enables\nprecise location searching through an intelligent POI engine with autocompletion capabilities.\n\nFor wayfinding, the Indoor Distance API calculates optimal routes between indoor points, delivering polylines\nand turn-by-turn instructions. Advanced features include custom routing profiles for different user types\n(staff, visitors, etc.) and seamless integration with external systems.\n", "item": [ { - "id": "4aeb07b2-31b3-4da0-93b8-4bc3daf5c21d", + "id": "90015df3-0530-4aa3-82a7-db2dbc874788", "name": "Get Venue By Key", "request": { "name": "Get Venue By Key", @@ -15407,7 +15407,7 @@ }, "response": [ { - "id": "4da4656f-1bc8-4479-ac8b-caba39522d4c", + "id": "c3e935ad-2758-4643-b3c4-a58d2553dad0", "name": "OK", "originalRequest": { "url": { @@ -15453,7 +15453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b14e9e3-2ed5-47a5-a9d5-ea1fa52f9599", + "id": "38903307-12d4-40b9-bf65-6f204e6d7d5f", "name": "Unauthorized", "originalRequest": { "url": { @@ -15499,7 +15499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "905a3e74-8ca6-41a9-ada8-418cd22d177f", + "id": "70e72ae6-6980-4ce9-89da-024686bdec1c", "name": "Payment Required", "originalRequest": { "url": { @@ -15545,7 +15545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c99d89d-3d23-4e30-b1df-5ad5cd2268cd", + "id": "879ad80b-5954-4c87-bb61-eebb0cd245ce", "name": "Forbidden", "originalRequest": { "url": { @@ -15591,7 +15591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84e2292b-9afd-4692-b85b-8899ccb66ecc", + "id": "fa5fc2a8-7314-4d33-86b0-2eedce2fa1e3", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -15632,7 +15632,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", + "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15643,7 +15643,7 @@ } }, { - "id": "52c674cc-0a01-490c-aa1d-d95f517c91f2", + "id": "e6800718-9cfa-417a-89ff-c4e38b953d0a", "name": "Get Venues By Key", "request": { "name": "Get Venues By Key", @@ -15667,7 +15667,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" } ], "variable": [] @@ -15700,7 +15700,7 @@ }, "response": [ { - "id": "f78481aa-7efa-433b-8326-1e6ccc6c69b4", + "id": "f9df1aa6-854e-4e9f-8659-0c81e996250b", "name": "OK", "originalRequest": { "url": { @@ -15719,7 +15719,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" }, { "description": { @@ -15754,7 +15754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "485d52b3-4f38-4ab3-8330-f6aefc9127fd", + "id": "12332053-8b66-4f0a-ae58-01d676214db5", "name": "Unauthorized", "originalRequest": { "url": { @@ -15773,7 +15773,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" }, { "description": { @@ -15808,7 +15808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e864c5d-79fe-4dd4-ad5c-73475456374c", + "id": "899bca1b-56d5-4ff9-b23c-f51808f95274", "name": "Payment Required", "originalRequest": { "url": { @@ -15827,7 +15827,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" }, { "description": { @@ -15862,7 +15862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23b7150f-11be-4599-abc9-63f5f3afc9c4", + "id": "1962952f-4408-48a9-b773-e2fbc4c2ca79", "name": "Forbidden", "originalRequest": { "url": { @@ -15881,7 +15881,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" }, { "description": { @@ -15916,7 +15916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1976cbae-091b-49ef-baa3-cc67b8255806", + "id": "f28450a1-c6ec-482e-b4db-566aa6f5aca9", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -15935,7 +15935,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" }, { "description": { @@ -15965,7 +15965,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", + "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15976,7 +15976,7 @@ } }, { - "id": "a93e956f-f31c-412a-9e94-2b370d459bb6", + "id": "c5744fe0-ecf8-4167-a218-1a30e82ba120", "name": "Get Indoor Style", "request": { "name": "Get Indoor Style", @@ -16042,7 +16042,7 @@ }, "response": [ { - "id": "d0ff4149-8c4e-4f64-a418-a5f1848cb623", + "id": "df618d39-7331-4797-9358-2b32220416c5", "name": "OK", "originalRequest": { "url": { @@ -16100,12 +16100,12 @@ "value": "application/json" } ], - "body": "{\n \"doloreed\": -53392875,\n \"dolore_dc_\": \"Excepteur minim enim dolore\"\n}", + "body": "{\n \"ullamcoa\": -99984078.56400768,\n \"inc\": 29041224.38719496\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6fde487-0475-47c4-8cb6-0eeda3241273", + "id": "de83ca47-0194-43a8-8d92-f2d2192852bd", "name": "Unauthorized", "originalRequest": { "url": { @@ -16168,7 +16168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77d03a22-213f-4c69-ab4a-99905993c039", + "id": "2cb7fe63-70fd-4e34-90ad-d47413b55ae0", "name": "Payment Required", "originalRequest": { "url": { @@ -16231,7 +16231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df8e9d21-e058-45a9-ab9c-bb30a01b5238", + "id": "789aabbb-4b80-439e-9275-9ce12422b2c0", "name": "Forbidden", "originalRequest": { "url": { @@ -16294,7 +16294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d5ff83e-8fe1-46fa-8bd5-77f54ebcddfc", + "id": "c9e93b0a-17c7-4f8d-bc51-c040b79a3972", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -16352,7 +16352,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", + "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16363,7 +16363,7 @@ } }, { - "id": "dc82e954-9245-4442-95b0-e54cbc413b89", + "id": "e046fa4d-1595-447f-b81e-9fd795510e20", "name": "Distance Matrix", "request": { "name": "Distance Matrix", @@ -16468,7 +16468,7 @@ }, "response": [ { - "id": "d9452500-b592-4e05-8e05-c02330b60bcf", + "id": "6bbad3ff-2735-4a50-8bb3-f92ff20ce489", "name": "OK", "originalRequest": { "url": { @@ -16559,7 +16559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d99461b-95fd-4717-af34-45d13e28d219", + "id": "4ed8a7d1-29c9-46ee-bbc8-4d81daf933de", "name": "Bad Request", "originalRequest": { "url": { @@ -16650,7 +16650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "762ae408-48af-4e88-805f-a87d355f5c55", + "id": "836809d1-c17b-45fb-82b0-846b852b9e69", "name": "Unauthorized", "originalRequest": { "url": { @@ -16741,7 +16741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91281de6-d35c-49c2-bde5-7f815a965809", + "id": "f65d3337-5e76-4757-9030-e0d31a7ad512", "name": "Payment Required", "originalRequest": { "url": { @@ -16832,7 +16832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1350ad67-8116-4be5-a0bc-56c96cece74c", + "id": "54033f13-966a-4df7-b945-6a18e63bbc83", "name": "Forbidden", "originalRequest": { "url": { @@ -16923,7 +16923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "524bafa7-5a3a-4dfa-bcdc-d6fc8b0b1cda", + "id": "d75a73ff-73cb-4a56-b084-658db73e5660", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -17009,7 +17009,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", + "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17020,7 +17020,7 @@ } }, { - "id": "562ed52c-d6dd-4df8-89c0-16bd11a12079", + "id": "05decd0d-1d01-4498-bc56-d687fc4fdcea", "name": "Directions", "request": { "name": "Directions", @@ -17152,7 +17152,7 @@ }, "response": [ { - "id": "b03f6136-6ff7-40dd-94db-e640631b1e17", + "id": "a24c8565-241e-4f06-afbb-de376d21edc8", "name": "OK", "originalRequest": { "url": { @@ -17270,7 +17270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67274d9c-f95a-4e0f-942e-e4f40a3528a9", + "id": "6985229e-e438-4b96-9912-589fd9988edc", "name": "Bad Request", "originalRequest": { "url": { @@ -17388,7 +17388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85bee3dd-1377-4b8b-890d-eaff2c9ed728", + "id": "99ea2f7c-5f58-432d-9c08-54a066099b64", "name": "Unauthorized", "originalRequest": { "url": { @@ -17506,7 +17506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b3cac4d-e9a6-4bd7-8c51-7a703418260c", + "id": "f393a107-8930-4c2b-a3ab-09c8c981cc3f", "name": "Payment Required", "originalRequest": { "url": { @@ -17624,7 +17624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b99bd48-e47d-4645-b740-73eddd43196e", + "id": "87c7eab5-239c-4c3d-9123-620a39736e20", "name": "Forbidden", "originalRequest": { "url": { @@ -17742,7 +17742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d3fca4e-6e6c-4571-b3ea-f7d036177adf", + "id": "57381906-d1dc-4b6e-8bc3-2324b77c26b9", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -17855,7 +17855,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", + "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17866,7 +17866,7 @@ } }, { - "id": "35322348-23cd-42e8-af06-06021dd090a3", + "id": "0eb5700e-b185-4bb4-ad88-5d266ea726b8", "name": "Search Venue Pois By Key", "request": { "name": "Search Venue Pois By Key", @@ -18036,7 +18036,7 @@ }, "response": [ { - "id": "5f0ec613-0bf5-4c72-96ed-afbf4d0d5a15", + "id": "acec2e55-0639-45e2-a677-763aedfcba3a", "name": "OK", "originalRequest": { "url": { @@ -18192,7 +18192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9b3da5d-d3d0-4435-82c0-f51d0bff5e1f", + "id": "3feb5966-afc6-42e6-aead-4b2a8f9f7afb", "name": "Unauthorized", "originalRequest": { "url": { @@ -18348,7 +18348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20efdb43-0b99-4230-bafd-ba0bd0f3d710", + "id": "3a20234a-0a5d-4996-b0df-18e11273eee3", "name": "Payment Required", "originalRequest": { "url": { @@ -18504,7 +18504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c2e57a9-e2aa-4e63-ae66-b656f7108aa5", + "id": "0ff2c33e-cdbc-4208-a826-0d98525cc21f", "name": "Forbidden", "originalRequest": { "url": { @@ -18660,7 +18660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ab36cf-161d-4207-9c9d-96355470a510", + "id": "4dba68a7-20e7-4f46-b14d-258029966542", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -18811,7 +18811,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", + "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18822,7 +18822,7 @@ } }, { - "id": "d91986b9-148e-4642-82b9-4dff29f2e68d", + "id": "ff052ce4-6e18-4b0e-bf47-c3db56d5c3f2", "name": "Autocomplete Venue Pois By Key", "request": { "name": "Autocomplete Venue Pois By Key", @@ -18983,7 +18983,7 @@ }, "response": [ { - "id": "b20b7073-09f4-4d23-a644-e3375fb8690f", + "id": "4087591f-d629-41a1-9756-5eb460422474", "name": "OK", "originalRequest": { "url": { @@ -19130,7 +19130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c764839d-abd2-43b1-809a-f0920a9e5190", + "id": "7a45b2ba-a67e-499f-8759-ec8abc96ad09", "name": "Unauthorized", "originalRequest": { "url": { @@ -19277,7 +19277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d9b0629-f99c-43e2-ac0b-cd8ef9069c4a", + "id": "683d1370-bae0-40ab-bce9-ccc41d57b6d1", "name": "Payment Required", "originalRequest": { "url": { @@ -19424,7 +19424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d945929-0bf5-4188-bfb2-648180f28879", + "id": "795b3578-b28a-4c73-b9ed-75cafacc19c2", "name": "Forbidden", "originalRequest": { "url": { @@ -19571,7 +19571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "822666b9-bdfe-4979-a5a9-1bfe205564dc", + "id": "d935ed64-3906-4cfb-8e52-121e91d6e3ab", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -19713,7 +19713,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", + "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19724,7 +19724,7 @@ } }, { - "id": "baf4264e-d635-4ef0-973d-ba31afa60847", + "id": "9d9584f7-ebb2-49a3-a5ad-bdf07fdcfb13", "name": "Get Feature By Key", "request": { "name": "Get Feature By Key", @@ -19795,7 +19795,7 @@ }, "response": [ { - "id": "145afc9e-cebe-4e68-b754-1b5a08dc12ad", + "id": "9ec13ec1-f9dd-434b-a37c-cd6b1d517d00", "name": "OK", "originalRequest": { "url": { @@ -19838,12 +19838,12 @@ "value": "application/json" } ], - "body": "{\n \"properties\": {\n \"in_6\": true,\n \"etcf\": 23778201.841434002\n },\n \"geometry\": {\n \"type\": \"\",\n \"coordinates\": \"\",\n \"bbox\": \"\"\n },\n \"id\": \"\",\n \"type\": \"Feature\"\n}", + "body": "{\n \"properties\": {\n \"nostrud29e\": 31283098.483543277,\n \"veniam_411\": 20890938.30283186\n },\n \"geometry\": {\n \"type\": \"\",\n \"coordinates\": \"\",\n \"bbox\": \"\"\n },\n \"id\": \"\",\n \"type\": \"Feature\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cbaf789b-a8b7-4de9-b296-e85a976fd87c", + "id": "2d73faf9-2d89-4b2b-9bba-60c8b2de9147", "name": "Unauthorized", "originalRequest": { "url": { @@ -19891,7 +19891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e74e6211-5e92-4f17-b4fc-fc3be00be43c", + "id": "9cb81d3e-b55d-4ce6-8f33-4c2707be53e8", "name": "Payment Required", "originalRequest": { "url": { @@ -19939,7 +19939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bfe1673-80e2-4063-a30b-d34fda6dfb3c", + "id": "6f5a47cb-2eed-4c92-b8bf-d201bc8d66ba", "name": "Forbidden", "originalRequest": { "url": { @@ -19987,7 +19987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c269999-81c8-4c9f-8e59-ee08fbdc992f", + "id": "e813eebf-90c8-4c8f-ba1e-ec2c4c431958", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -20030,7 +20030,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", + "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20041,7 +20041,7 @@ } }, { - "id": "26399025-8348-42fb-b4b0-6f0b1f2febf0", + "id": "41d26f84-35d3-4e0b-88d7-7eef0be6afdb", "name": "Tiles By Key", "request": { "name": "Tiles By Key", @@ -20143,7 +20143,7 @@ }, "response": [ { - "id": "8c86b830-8d08-4a17-86a8-6214a76fe006", + "id": "da9cbef6-d42a-443d-9af7-8547f5db338b", "name": "OK", "originalRequest": { "url": { @@ -20211,7 +20211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4ac8d2d-63f1-4142-a37c-961207ce955c", + "id": "62914e69-97be-4a08-a08c-eecdd35d584f", "name": "Unauthorized", "originalRequest": { "url": { @@ -20279,7 +20279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa6a8df4-3b43-4e79-aa59-f3fd51fbccde", + "id": "93f795cf-4a32-46ed-a705-ecac2e8adaf9", "name": "Payment Required", "originalRequest": { "url": { @@ -20347,7 +20347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85d3250f-c6de-4061-b3ef-5492f6f523aa", + "id": "24506997-e3f6-49fa-85f4-11cf5cbbca02", "name": "Forbidden", "originalRequest": { "url": { @@ -20415,7 +20415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cc65c99-8cb2-4a82-86db-05bdb77d161d", + "id": "ac4f6642-95b0-48bc-9ef0-560f21a4b082", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -20478,7 +20478,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"ullamco_8\": false\n },\n {\n \"et_8e\": \"nisi ea sed\"\n }\n ],\n \"context\": {\n \"incididunt__b\": -93857962,\n \"quis_9\": -60070968.02084448\n }\n}", + "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20495,7 +20495,7 @@ "description": "The Transit API delivers comprehensive public transportation routing information by calculating optimal travel paths between \norigins and destinations. It provides detailed route data including distance, duration, polyline visualization, \nand complete step-by-step transit instructions with transfer points and transportation modes. The API is ideal for \napplications requiring accurate public transit navigation and trip planning capabilities.\n", "item": [ { - "id": "46ef5014-6e71-4a89-9c45-06edb8b23a36", + "id": "66db93dc-18d1-4f58-a5e9-42320421fb49", "name": "Transit Route", "request": { "name": "Transit Route", @@ -20588,7 +20588,7 @@ }, "response": [ { - "id": "47cdc7ad-cadf-41ac-abff-611f9ab61554", + "id": "56589e07-ece6-4be2-810e-95052ee451e5", "name": "Successful Response", "originalRequest": { "url": { @@ -20678,7 +20678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2783622e-97da-4b16-b483-0b449d65fef2", + "id": "0b3e03f5-4fec-451a-bb71-245949483f28", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -20768,7 +20768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92937575-6e63-49a1-8434-0d557a9a482a", + "id": "655742c6-dfc8-4f02-b583-847b806d6ba8", "name": "Out of free quota.", "originalRequest": { "url": { @@ -20858,7 +20858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5da05488-1e95-48bb-b953-570b4e146100", + "id": "51faef38-1a56-4a32-89dd-78356d90eac2", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -20948,7 +20948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d93c020-e623-4161-8b5f-65a8be2cc653", + "id": "9abe3132-cd99-4c90-8cd9-c47bb69232b4", "name": "Validation Error", "originalRequest": { "url": { @@ -21038,7 +21038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dce297aa-d441-4447-88e6-2b89400492e7", + "id": "40939d3f-477e-4f6e-aa1c-6cc9a9ab67c8", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21140,7 +21140,7 @@ "description": "The Datasets API enables you to store, manage, and analyze geospatial data collections. Work with custom datasets containing points, lines, or polygons - with each feature defined by its geometry and properties.\n\n* Create and manage datasets from uploaded Shapefile data\n* Import data from external sources via URL or scheduled updates\n* Monitor dataset status and processing through detailed status reports\n* Schedule dataset deletion for proper data lifecycle management\n* Leverage high accuracy storage for location-dependent business processes\n\nIdeal for applications that require precise location analysis, spatial queries and geographic data management.\n", "item": [ { - "id": "5ef80342-ed15-49b4-9156-645bfc1653ea", + "id": "65d5a4e0-375e-4f8e-bd35-8688434e563c", "name": "Get Dataset", "request": { "name": "Get Dataset", @@ -21198,7 +21198,7 @@ }, "response": [ { - "id": "425147d8-b028-4af6-8905-4ed05a04459f", + "id": "d1a08821-5364-4e8c-b1a7-b8b791f548cd", "name": "Successful Response", "originalRequest": { "url": { @@ -21243,7 +21243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b5c48f1-efb6-497f-b85c-1a169fdf7032", + "id": "7e7f6fc4-3b42-4bd5-a02b-3e0001bdf2e5", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -21288,7 +21288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91ebfa0f-0c07-423e-8c97-83d4cd6d7a1d", + "id": "700a684f-2a58-4889-8eea-40cae776cd3a", "name": "Out of free quota.", "originalRequest": { "url": { @@ -21333,7 +21333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6cb5783-1998-4ec3-8e78-00389bc06819", + "id": "15c5480f-f1d0-4c10-878a-7dcf97d678be", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -21378,7 +21378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d5cc840-93ce-4c20-a037-63ff29740ce6", + "id": "b5e60bfc-9e96-4e07-8765-eeadef0eff91", "name": "Dataset was not found", "originalRequest": { "url": { @@ -21423,7 +21423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2de35f7-f84c-4979-9e08-0d81a4adfc9f", + "id": "bb3a07ee-7245-45d8-b4f6-b65195857367", "name": "Validation Error", "originalRequest": { "url": { @@ -21468,7 +21468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fa2e45b-d781-4d29-8656-691f8f4d035f", + "id": "c3932b57-67d1-4a08-90ff-03283c0a09f5", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21519,7 +21519,7 @@ } }, { - "id": "afb5ba5c-225c-4907-8741-e9b160147bf7", + "id": "dee1a4ad-0558-4b90-b31f-94ab5e0923f1", "name": "Delete Dataset", "request": { "name": "Delete Dataset", @@ -21577,7 +21577,7 @@ }, "response": [ { - "id": "3bdf30c5-6415-450b-8137-27e755ee28dc", + "id": "1650c766-e521-41da-82c8-1ad0a71e3854", "name": "Successful Response", "originalRequest": { "url": { @@ -21617,12 +21617,12 @@ "value": "application/json" } ], - "body": "{\n \"mollit5\": -76287266\n}", + "body": "{\n \"culpa_d22\": \"Lorem\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93fdee7a-413d-4f5d-bb12-872b47ebb8b6", + "id": "adb160d6-ae28-431b-aec7-861067dd9dd0", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -21667,7 +21667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b0e43e1-7d02-4465-9db8-9bcc5a593568", + "id": "717ad976-9627-4d06-b20b-f6addc5a8ee6", "name": "Out of free quota.", "originalRequest": { "url": { @@ -21712,7 +21712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6f6a2f0-29e7-4428-bd0b-1e0360904c16", + "id": "d1a07f08-e469-45c0-aed4-52fadd1b75ed", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -21757,7 +21757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f843680-3866-4333-9ecf-3fa55be048be", + "id": "f4d8c7d1-892b-4291-8965-213eeef6de9a", "name": "Dataset was not found", "originalRequest": { "url": { @@ -21802,7 +21802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cefc80d-2c3d-41bc-aabf-65a1aa9abeb8", + "id": "cf23f6eb-ce61-437d-b73e-85de9f333668", "name": "The Dataset was already scheduled for deletion.", "originalRequest": { "url": { @@ -21847,7 +21847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b8d8ee8-116e-465b-b2df-9d1e2d547e79", + "id": "f0bf3371-a3fa-4937-8537-45fc19aed365", "name": "Validation Error", "originalRequest": { "url": { @@ -21892,7 +21892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75ca230e-fbd9-4386-821f-d7449a1c9d22", + "id": "6e8cb8a5-fc71-4bac-be06-698a5aef7c9f", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21943,7 +21943,7 @@ } }, { - "id": "3e53f954-dddd-4382-9acf-656dae7ff44e", + "id": "c6c864d3-e654-4cd9-83bb-828911c79b77", "name": "Update Dataset", "request": { "name": "Update Dataset", @@ -22014,7 +22014,7 @@ }, "response": [ { - "id": "351d86e0-d023-46f5-b54d-c0a89f523623", + "id": "3eb3a8fb-c7cb-471b-abaf-3cb72253345e", "name": "Successful Response", "originalRequest": { "url": { @@ -22072,7 +22072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2208b2c9-3669-464d-82a9-44efe563626f", + "id": "ab0c94cc-48d7-480e-b8ac-3a3cec7e9f32", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -22130,7 +22130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a9e2333-55d9-4739-ba93-e646a381df36", + "id": "f81b8dd1-8446-49ab-ba43-8c4ca99f1884", "name": "Out of free quota.", "originalRequest": { "url": { @@ -22188,7 +22188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65058358-9fed-48b9-a50c-8abb2a9012f0", + "id": "fe8b5db5-5974-4ae8-a4f3-127f14c934b9", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -22246,7 +22246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6bb166e-bd94-4c1b-a4f2-03a244cdf1a0", + "id": "9e3f96a2-a9bd-4ede-9800-c47ba3a05863", "name": "Dataset was not found", "originalRequest": { "url": { @@ -22304,7 +22304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ce5ab40-7c4b-4798-9963-dc70f6b3c2bf", + "id": "0ca9115b-e61c-4a48-9919-ad74b9c6cf74", "name": "Validation Error", "originalRequest": { "url": { @@ -22362,7 +22362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0f388aa-d408-45fa-a2d6-4193c5a41837", + "id": "4695eafc-6982-4cb1-ad90-d29ba59e2a95", "name": "Rate limit reached", "originalRequest": { "url": { @@ -22426,7 +22426,7 @@ } }, { - "id": "a75779e6-f693-4a62-a782-b9ec8e7f94ab", + "id": "1be2fece-047c-45ff-a1af-0b2ef66f28b5", "name": "List Datasets", "request": { "name": "List Datasets", @@ -22492,7 +22492,7 @@ }, "response": [ { - "id": "d11f82ce-5c20-4a6f-9b8c-200ce7f14b37", + "id": "d0909aa6-2992-4c63-9387-7c7fb2073026", "name": "Successful Response", "originalRequest": { "url": { @@ -22555,7 +22555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c46584cc-6d21-4b4d-8ff7-5cf50ee428cb", + "id": "5144fa94-6611-416a-8a62-baa3e523b81c", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -22618,7 +22618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dff8ea4-b4c3-45b5-a6cc-943b7df1ebae", + "id": "18acbf89-c88e-41e2-b6f8-ca1cc343af54", "name": "Out of free quota.", "originalRequest": { "url": { @@ -22681,7 +22681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb7d007e-9797-4ecf-8668-e8ffc0223bb5", + "id": "4716b185-1a87-4a31-9abe-0224da2628d1", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -22744,7 +22744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fc2f02a-b3fe-4927-a40c-6e6bce3c7dfe", + "id": "bf2f6ab6-fdd9-4909-889a-6a0ba93a7e83", "name": "Validation Error", "originalRequest": { "url": { @@ -22807,7 +22807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00109f70-aeda-4ecb-9854-4aa9d7d01b99", + "id": "13aed63f-bc13-4541-8a9a-da64de0e73a1", "name": "Rate limit reached", "originalRequest": { "url": { @@ -22876,7 +22876,7 @@ } }, { - "id": "be4c1437-99b0-4fcd-8082-0b995155425e", + "id": "aaf9874d-a4be-48f4-9898-7b5900e6e69c", "name": "Create Dataset", "request": { "name": "Create Dataset", @@ -22936,7 +22936,7 @@ }, "response": [ { - "id": "3606d198-f6fd-4fdd-abd7-770a897de252", + "id": "22105939-9467-465b-b14a-04f2c3c86a33", "name": "Successful Response", "originalRequest": { "url": { @@ -22994,7 +22994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b3c5e6a-5784-4b7f-ae60-f773bc243b03", + "id": "f6d54107-351e-4cc1-917a-b18fa39baa7a", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23052,7 +23052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf0224d1-aa3f-474f-8bab-bec2abeff898", + "id": "33b33bff-ed5f-45a5-a4b3-ebbf0c4ba0f5", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23110,7 +23110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03691555-89b0-4575-ad92-b43a48f61bf8", + "id": "8c31438d-9530-4d9e-a775-2aa924de90ec", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23168,7 +23168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e46d7f60-0ef2-4621-995b-880bf6024a76", + "id": "9932e48f-b604-4eb0-bb86-d9a9a2702398", "name": "Validation Error", "originalRequest": { "url": { @@ -23226,7 +23226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2251ba43-e389-4e0a-9d33-bca15eeebc78", + "id": "c27485ec-aed9-45f9-81b1-e63ed704d4f4", "name": "Rate limit reached", "originalRequest": { "url": { @@ -23290,7 +23290,7 @@ } }, { - "id": "85772213-841f-48fa-b636-34ba021e34bd", + "id": "ae200ec7-3dac-4a6a-81dc-31a91d074dd5", "name": "Get Dataset Status", "request": { "name": "Get Dataset Status", @@ -23349,7 +23349,7 @@ }, "response": [ { - "id": "10090301-7c3f-42de-b52c-de8b107f54ff", + "id": "1f679ad3-c5c6-4650-b0cc-b1f63a1da6e5", "name": "Successful Response", "originalRequest": { "url": { @@ -23390,12 +23390,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"steps\": [\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n }\n ],\n \"status\": \"in_progress\"\n },\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"info\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n }\n ],\n \"status\": \"in_progress\"\n }\n ],\n \"status\": \"success\"\n}", + "body": "{\n \"id\": \"\",\n \"steps\": [\n {\n \"name\": \"fetch\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n }\n ],\n \"status\": \"failed\"\n },\n {\n \"name\": \"fetch\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n }\n ],\n \"status\": \"success\"\n }\n ],\n \"status\": \"in_progress\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01854a87-9d33-4f1f-ac9e-8bb49196637f", + "id": "8a6e3ebd-a415-40c0-bdbb-f3145324563c", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23441,7 +23441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7906a604-1028-4125-b703-9d93475d2347", + "id": "f3cb6394-df90-4675-9903-2a76641baf38", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23487,7 +23487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c32e974-b92c-4695-bacd-36f9e6461176", + "id": "dce60fbe-4bde-4cf7-b80c-0f51509b462e", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23533,7 +23533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e419a37-802e-4021-8faf-bc92c54dfe84", + "id": "95b7e465-ed2f-4b99-a50c-e652a1cf5e0d", "name": "Dataset was not found", "originalRequest": { "url": { @@ -23579,7 +23579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e07bc613-b0ca-4ddf-a094-775c78bb464d", + "id": "f9f90671-f812-44bf-9ad5-7692d3b73255", "name": "Validation Error", "originalRequest": { "url": { @@ -23625,7 +23625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f7f9c13-28c7-43f5-9d35-522d9ebe557d", + "id": "b649b836-2fa3-4450-be81-03bd9e11d246", "name": "Rate limit reached", "originalRequest": { "url": { @@ -23677,7 +23677,7 @@ } }, { - "id": "23e6568f-ece3-4285-8f9c-caab3935f9d7", + "id": "02c8315c-a969-4cdb-aba3-60ee69602aef", "name": "Trigger Import", "request": { "name": "Trigger Import", @@ -23736,7 +23736,7 @@ }, "response": [ { - "id": "61ab7b2d-1683-4b85-a002-341af39e41f0", + "id": "b3413eff-27e9-4f69-83ca-f51a6cdb33fb", "name": "Successful Response", "originalRequest": { "url": { @@ -23782,7 +23782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2be117f2-b977-4e37-905d-dcb481ccb915", + "id": "84db5629-b4e6-4e54-b0a4-8084f837c86e", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23828,7 +23828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d610f91e-ecab-42ce-9dea-7586858f3222", + "id": "c24f59b9-9986-4cd9-b0cd-60b0c61489c6", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23874,7 +23874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40f17f4c-cf60-4853-bb0b-35f67ee697cf", + "id": "9ef6ac9c-cd9b-43bc-a83e-4e3fdffbd66c", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23920,7 +23920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dcf53a9-8b35-4536-abe1-8056fee37c6e", + "id": "530badfb-b31a-4118-a528-ff499a3e3029", "name": "Dataset was not found", "originalRequest": { "url": { @@ -23966,7 +23966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc2ea777-606d-4d88-ab4e-d332d073d9f6", + "id": "cceae322-fa38-4c27-8b73-eafce3da50f8", "name": "Validation Error", "originalRequest": { "url": { @@ -24012,7 +24012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4df12504-d85a-485b-a110-62dc0ae89046", + "id": "58ed5c53-f84f-43b3-b775-37f1bcb26c13", "name": "Rate limit reached", "originalRequest": { "url": { @@ -24064,7 +24064,7 @@ } }, { - "id": "aa32f4ef-5310-4ca9-b160-a9cecb074bd4", + "id": "c970faff-6aef-4223-9958-1a56af1a1544", "name": "Reimport Dataset Webhook", "request": { "name": "Reimport Dataset Webhook", @@ -24108,7 +24108,7 @@ }, "response": [ { - "id": "b29c3d1d-c5e5-4ef5-afc2-a61f35aef884", + "id": "7bf8ba58-caa6-44d8-a7ce-425d22da1ff2", "name": "Successful Response", "originalRequest": { "url": { @@ -24146,7 +24146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c65466fc-b6ef-44f1-b3e9-c92fa4fe60eb", + "id": "07ad8b78-6150-4872-ba70-b414490f82cf", "name": "Unauthorized", "originalRequest": { "url": { @@ -24172,7 +24172,7 @@ "_postman_previewlanguage": "text" }, { - "id": "78f95845-9437-40a9-937f-56c76e67fe15", + "id": "2ffeca0d-2b75-4437-aa9d-1d02955c4c6a", "name": "Payment Required", "originalRequest": { "url": { @@ -24198,7 +24198,7 @@ "_postman_previewlanguage": "text" }, { - "id": "59af17b6-32ee-40ea-95d9-dcdce874730f", + "id": "51c7602d-a383-4994-9ea7-10f045777cd8", "name": "Forbidden", "originalRequest": { "url": { @@ -24224,7 +24224,7 @@ "_postman_previewlanguage": "text" }, { - "id": "31235d3a-b6a8-4d6e-b5e5-e3be6690806b", + "id": "9839899e-d8b7-4ac6-9a81-c006adf3d4e9", "name": "Dataset was not found", "originalRequest": { "url": { @@ -24262,7 +24262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0648e60-7574-4c42-8349-2548a77a046c", + "id": "a1a97648-62ae-495e-a174-291915db28f6", "name": "Validation Error", "originalRequest": { "url": { @@ -24300,7 +24300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebceb307-6539-4cd8-b6df-6f77fee8fb60", + "id": "b8cf8c4a-9f03-40d5-9f91-d0aff1c22c1b", "name": "Rate limit reached", "originalRequest": { "url": { @@ -24350,7 +24350,7 @@ "description": "Perform powerful spatial analysis on your geospatial data with four key search capabilities:\n\n* Nearby search: Find features within a specified distance from a location\n* Contains search: Discover which features completely contain a point or geometry\n* Intersects search: Identify features that intersect with a given geometry\n* Within search: Locate features that fall entirely inside a specified boundary\n\nAll operations support attribute filtering with WHERE clauses, pagination for large results, and multiple geometry formats (GeoJSON, WKB, encoded polylines).\n", "item": [ { - "id": "5a02632c-f6a7-403b-89ce-9d3c8fb77a40", + "id": "980864fc-3b7f-47f5-9364-76f82663241f", "name": "Search Features", "request": { "name": "Search Features", @@ -24452,7 +24452,7 @@ }, "response": [ { - "id": "65edf584-3762-4c3f-a62d-a8aef3d984dc", + "id": "5efb0f7f-a4a8-4b16-8a1c-e1f6df4aa65f", "name": "Successful Response", "originalRequest": { "url": { @@ -24535,12 +24535,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"qui_c\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"non_\": \"elit in proident\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ine4\": true,\n \"fugiat_9\": -65326064.60477703,\n \"pariatur40\": -72591386.71769159,\n \"cupidatatf5\": -90052761.60302022\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"esse_1\": \"sint ut in\",\n \"ipsum_fad\": -58778101.651108816,\n \"qui7cf\": -3697575.31035088\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89ba043a-2305-4790-bc1a-ec16dc8bf22c", + "id": "787242e3-4a45-421d-ae45-45db7fc5ba44", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -24628,7 +24628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed220d2d-24d2-4eea-8fb8-17d74837bd7f", + "id": "b2a7c705-aa37-4f74-9879-47f8c6cb9d53", "name": "Out of free quota.", "originalRequest": { "url": { @@ -24716,7 +24716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c00b28d-23b4-48c0-ad40-2f18ca77c6fd", + "id": "2f9cbd13-b8a6-4dc9-ac2e-8dd5dc97f507", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -24804,7 +24804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e76e443-21a6-435d-97cf-197f640f489f", + "id": "87f94e4f-5fab-4817-a070-30b6eab1970b", "name": "Dataset was not found", "originalRequest": { "url": { @@ -24892,7 +24892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "522526a6-e5e7-4624-ad6e-170444f78cf7", + "id": "4bc0741a-04c5-49ab-9cae-952c5f0719bf", "name": "Validation Error", "originalRequest": { "url": { @@ -24980,7 +24980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef456856-5cf6-4c8e-9a2b-54517a7451ce", + "id": "2be411b4-96b5-4a76-b36d-358483691191", "name": "Rate limit reached", "originalRequest": { "url": { @@ -25074,7 +25074,7 @@ } }, { - "id": "179c70d2-369e-40ff-8a32-4d177587cb8f", + "id": "9736444a-78ad-463a-9040-d807eddb67bc", "name": "Nearby Features", "request": { "name": "Nearby Features", @@ -25176,7 +25176,7 @@ }, "response": [ { - "id": "c4611332-89cb-4ce6-8009-00114eb7cc4f", + "id": "3adec5a7-ee31-4e3d-8837-8284ae1281ff", "name": "Successful Response", "originalRequest": { "url": { @@ -25259,12 +25259,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"qui_c\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"non_\": \"elit in proident\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ine4\": true,\n \"fugiat_9\": -65326064.60477703,\n \"pariatur40\": -72591386.71769159,\n \"cupidatatf5\": -90052761.60302022\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"esse_1\": \"sint ut in\",\n \"ipsum_fad\": -58778101.651108816,\n \"qui7cf\": -3697575.31035088\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2933ce3f-eb5d-4498-8453-069d081148e0", + "id": "c1c25744-dfe0-4db7-9794-7f5b94b70c56", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -25352,7 +25352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1fd392c-3a2b-4bbe-8f86-6e6beb3ff0fd", + "id": "7546b31a-32f9-4dc4-be83-9825a0814bb6", "name": "Out of free quota.", "originalRequest": { "url": { @@ -25440,7 +25440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4de31a32-864c-4756-8ae5-d085aa45ce71", + "id": "539f383a-f3ab-46c2-ab47-9e98a0155ac6", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -25528,7 +25528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9819e6cc-b80f-4450-b493-ae3466684e0e", + "id": "f97d071a-6a55-45ad-9e43-b5acdecaa1e8", "name": "Dataset was not found", "originalRequest": { "url": { @@ -25616,7 +25616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "971a9e41-5629-42d1-bd76-46599aad42ca", + "id": "7a09e208-2549-4e15-a542-c720185eba26", "name": "Validation Error", "originalRequest": { "url": { @@ -25704,7 +25704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ad39e97-c5ce-42d9-aab2-cf4637b500fa", + "id": "551cbdb0-dafe-464e-b3f6-36c947db636c", "name": "Rate limit reached", "originalRequest": { "url": { @@ -25798,7 +25798,7 @@ } }, { - "id": "5e674d40-4132-442c-9a54-e8ab990ff1b7", + "id": "0876bfea-8e47-4619-95e2-6c12d6676a10", "name": "Intersect Features", "request": { "name": "Intersect Features", @@ -25900,7 +25900,7 @@ }, "response": [ { - "id": "c494355f-6f9b-4042-928b-932652ce8db4", + "id": "1a89fc3d-4633-41f4-8403-6d769146fcb7", "name": "Successful Response", "originalRequest": { "url": { @@ -25983,12 +25983,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"qui_c\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"non_\": \"elit in proident\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ine4\": true,\n \"fugiat_9\": -65326064.60477703,\n \"pariatur40\": -72591386.71769159,\n \"cupidatatf5\": -90052761.60302022\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"esse_1\": \"sint ut in\",\n \"ipsum_fad\": -58778101.651108816,\n \"qui7cf\": -3697575.31035088\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f4df7f84-d6fe-4a6c-9ecc-5e3c36bed268", + "id": "21327e7b-bc1b-48b2-8267-2399e9aa55cb", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -26076,7 +26076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5ae39ca-5928-4613-bc8f-e76921d142dc", + "id": "0f541657-ac64-4965-ba9f-1f4da8cad001", "name": "Out of free quota.", "originalRequest": { "url": { @@ -26164,7 +26164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8aa0172-ab42-4edb-8a70-f98eb3c5bc6c", + "id": "2f167b3c-45aa-4979-a4b9-5b1599ed74a5", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -26252,7 +26252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3156548-d15d-4dbd-a359-f21faa092957", + "id": "2816a3fc-0f54-4495-be0a-a1f1acc81e1e", "name": "Dataset was not found", "originalRequest": { "url": { @@ -26340,7 +26340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daea83aa-61bc-404c-97d0-a99b71973540", + "id": "bac80de2-52db-4f14-95b4-1741c615fcbb", "name": "Validation Error", "originalRequest": { "url": { @@ -26428,7 +26428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78a4889b-9de8-4da8-a263-0f11edaa5324", + "id": "989b7cf4-2403-407f-ab3f-d5ecc94c6046", "name": "Rate limit reached", "originalRequest": { "url": { @@ -26522,7 +26522,7 @@ } }, { - "id": "3c07b756-e84e-4bca-8fbb-e17a50c46d3a", + "id": "17f8bebc-daf4-416e-8bed-8e7d6781c873", "name": "Contains Features", "request": { "name": "Contains Features", @@ -26624,7 +26624,7 @@ }, "response": [ { - "id": "98a84a77-fe07-4499-bb47-3e50b2c3104a", + "id": "b2741fc1-b150-4dce-884d-215a097d504f", "name": "Successful Response", "originalRequest": { "url": { @@ -26707,12 +26707,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"qui_c\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"non_\": \"elit in proident\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ine4\": true,\n \"fugiat_9\": -65326064.60477703,\n \"pariatur40\": -72591386.71769159,\n \"cupidatatf5\": -90052761.60302022\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"esse_1\": \"sint ut in\",\n \"ipsum_fad\": -58778101.651108816,\n \"qui7cf\": -3697575.31035088\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "717bdeea-99cb-407f-8600-7e429a176e76", + "id": "c278584c-0eb2-4caf-9316-f66dfa5b186c", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -26800,7 +26800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aee1163a-f053-4215-85a4-012ff1cf27a4", + "id": "7ccfd468-f6ad-4200-9dd3-39d1bf680573", "name": "Out of free quota.", "originalRequest": { "url": { @@ -26888,7 +26888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6eb126b2-0b67-4be5-86e2-0455924a2f2d", + "id": "5441d82b-9999-4607-8a4d-124edb9c78b6", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -26976,7 +26976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "137d2ac5-eab9-40dc-823e-1da226f761e7", + "id": "31a7edb8-fcec-46bd-8c6c-408ded1cbd3f", "name": "Dataset was not found", "originalRequest": { "url": { @@ -27064,7 +27064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f89cd71-f0c7-403b-bea4-126f38fa0fc0", + "id": "ad43f411-44de-4225-a2a7-841257dbd0df", "name": "Validation Error", "originalRequest": { "url": { @@ -27152,7 +27152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08defa50-7a4c-4fbb-b1b5-fd76e52ae11d", + "id": "0c81921e-3c7f-4f7a-b38b-82b3a0a66b6b", "name": "Rate limit reached", "originalRequest": { "url": { @@ -27246,7 +27246,7 @@ } }, { - "id": "2285976d-a4a9-49c7-9ad6-632e280d167e", + "id": "253f9a20-d558-4a36-82e4-b4873007d8fd", "name": "Within Features", "request": { "name": "Within Features", @@ -27348,7 +27348,7 @@ }, "response": [ { - "id": "4315245a-c004-43a0-ad35-0b676e3ba972", + "id": "817a4a6b-7363-4d47-92a2-42dd25ac0798", "name": "Successful Response", "originalRequest": { "url": { @@ -27431,12 +27431,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"qui_c\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"non_\": \"elit in proident\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ine4\": true,\n \"fugiat_9\": -65326064.60477703,\n \"pariatur40\": -72591386.71769159,\n \"cupidatatf5\": -90052761.60302022\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"esse_1\": \"sint ut in\",\n \"ipsum_fad\": -58778101.651108816,\n \"qui7cf\": -3697575.31035088\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a9367b2a-bd5b-44f9-9c86-c5458e8f0edd", + "id": "4c14604e-1cea-43b4-a546-e5ae588514b3", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -27524,7 +27524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3468b3cb-a1a2-4e0d-878c-fbc88e47952e", + "id": "6ccaf242-e1fc-4c91-b741-355f86c9894d", "name": "Out of free quota.", "originalRequest": { "url": { @@ -27612,7 +27612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f9091ad-43ae-4f43-8464-613235d95ecf", + "id": "8d763d43-f711-4e29-81ce-91d34cc88813", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -27700,7 +27700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad4a2acf-63df-4f83-9ab5-108b16b88adc", + "id": "202fcef8-0a42-42d6-b998-9667dc8930fe", "name": "Dataset was not found", "originalRequest": { "url": { @@ -27788,7 +27788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "407c1d26-8cb8-4523-83c8-fecd8907f079", + "id": "087d5d9a-0a02-4188-b4da-dba7a20fafe7", "name": "Validation Error", "originalRequest": { "url": { @@ -27876,7 +27876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa05a633-1726-4516-bf1e-3a65a4052e97", + "id": "7dd7baa4-a6e2-4410-89cc-6d7605d4e922", "name": "Rate limit reached", "originalRequest": { "url": { @@ -27976,7 +27976,7 @@ "description": "Access and retrieve individual geographic features from your datasets by their unique ID. This endpoint provides direct access to the complete geometry and properties of specific features within your datasets.\n\nThe API supports field masking to optimize response size by retrieving only needed attributes. Output formats include both GeoJSON and WKB, allowing flexible integration with various mapping and analysis systems.\n", "item": [ { - "id": "85725776-af5c-421b-8fb9-c4e63e683d62", + "id": "698db405-c498-405d-8b91-ae5820334e76", "name": "Get Feature", "request": { "name": "Get Feature", @@ -28065,7 +28065,7 @@ }, "response": [ { - "id": "ef3340b1-903a-492a-a6ae-013ad65bc54c", + "id": "b5350fff-aff9-4ff6-b1ed-f84a07e7c105", "name": "Successful Response", "originalRequest": { "url": { @@ -28125,12 +28125,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"reprehenderit8\": 10112646\n }\n}", + "body": "{\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"Excepteur0b\": 7156268\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "18cd86c9-fbeb-4927-863c-210c74845990", + "id": "59d24dbd-b1bf-4e1c-a4d0-c2c58fb2a7d9", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -28195,7 +28195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67402b88-2d5e-49ec-bf4a-ad427b83086f", + "id": "e3a124b1-e4b8-41cf-9117-67e8d5831869", "name": "Out of free quota.", "originalRequest": { "url": { @@ -28260,7 +28260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7f2fc28-8850-4706-9b8c-84aeb04ec87c", + "id": "ba6976b1-99d8-4d24-a9dc-7e7d484bd5be", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -28325,7 +28325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7d19e50-c0d6-4974-8186-e16e557f1bf2", + "id": "48ea89be-5617-4dd6-9eed-606c59951b37", "name": "Feature or Dataset were not found", "originalRequest": { "url": { @@ -28390,7 +28390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e2a25fd-ebe4-42f0-b013-e76e871e4e73", + "id": "244c58af-579b-43cf-becd-b4e16a272806", "name": "Validation Error", "originalRequest": { "url": { @@ -28455,7 +28455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cc65136-4ea3-47e0-89ea-84866602cc9d", + "id": "21f676d5-934b-4b83-9c0e-0ba728cbd2d6", "name": "Rate limit reached", "originalRequest": { "url": { @@ -28540,7 +28540,7 @@ } ], "info": { - "_postman_id": "937360c6-f706-44e5-8654-f6432b1c791f", + "_postman_id": "3129b1cc-84df-4351-94ee-824a21b85e7b", "name": "Woosmap Platform API Reference", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { diff --git a/specification/parameters/localities/types.yml b/specification/parameters/localities/types.yml index 98b26227..35fe69bb 100644 --- a/specification/parameters/localities/types.yml +++ b/specification/parameters/localities/types.yml @@ -2,9 +2,10 @@ name: types description: > Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - - Standard locality types (e.g., cities, administrative areas, postal codes) - - Points of Interest (POI) categories - - POI aliases + - Standard locality types (e.g., cities, administrative areas, postal codes) + - Points of Interest (POI) categories + - POI aliases + These classifications enable flexible geographic data representation and querying. schema: diff --git a/specification/schemas/LocalitiesTypesPoiAlias.yml b/specification/schemas/LocalitiesTypesPoiAlias.yml index 93f5da1f..4648ac8b 100644 --- a/specification/schemas/LocalitiesTypesPoiAlias.yml +++ b/specification/schemas/LocalitiesTypesPoiAlias.yml @@ -3,9 +3,10 @@ type: string description: > Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - - `airport` -> `transit.station.airport` - - `train_station` -> `transit.station.rail` - - `shopping` -> `business` + - `airport` → `transit.station.airport` + - `train_station` → `transit.station.rail` + - `shopping` → `business` + This ensures consistency and alignment with the updated schema. enum: - airport From a9703d25ede7527c30a84aedf59c8c3a4ad050a2 Mon Sep 17 00:00:00 2001 From: christopher dartnell Date: Tue, 28 Oct 2025 18:02:00 +0100 Subject: [PATCH 4/9] fix: adapt geocode types --- .../parameters/localities/geocode_types.yml | 23 +++++++------------ .../schemas/LocalitiesGeocodeResponse.yml | 2 +- 2 files changed, 9 insertions(+), 16 deletions(-) diff --git a/specification/parameters/localities/geocode_types.yml b/specification/parameters/localities/geocode_types.yml index 1becc49e..beaac906 100644 --- a/specification/parameters/localities/geocode_types.yml +++ b/specification/parameters/localities/geocode_types.yml @@ -1,25 +1,18 @@ name: types description: > Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). + Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. - When executing a geocode request with the `address` parameter, use this to select the expected result type. - * `city`: includes city localities - * `town`: includes town localities - * `village`: includes village localities - * `hamlet`: includes hamlet localities - * `borough`: includes borough localities - * `suburb`: includes suburb localities - * `quarter`: includes quarter localities - * `neighbourhood`: includes neighbourhood localities - * `locality`: includes all previous locality names - * `postal_code`: publicly-used postal codes around the world - * `address`: addresses - * `admin_level`: most commonly used administrative areas - * `country`: countries as whole point of interest + When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including: + - Standard locality types (e.g., cities, administrative areas, postal codes) + - Points of Interest (POI) categories + - POI aliases + + These classifications enable flexible geographic data representation and querying. schema: default: locality|postal_code|address example: locality|admin_level - $ref: "../../schemas/LocalitiesTypes.yml" + $ref: "../../schemas/LocalitiesTypesAll.yml" in: query diff --git a/specification/schemas/LocalitiesGeocodeResponse.yml b/specification/schemas/LocalitiesGeocodeResponse.yml index 8359b0d1..885fedb9 100644 --- a/specification/schemas/LocalitiesGeocodeResponse.yml +++ b/specification/schemas/LocalitiesGeocodeResponse.yml @@ -8,7 +8,7 @@ properties: description: An array containing the types of the result type: array items: - $ref: "./LocalitiesTypes.yml" + $ref: "./LocalitiesTypesAll.yml" administrative_area_label: $ref: "./AdministrativeAreaLabel.yml" public_id: From afc41b62a098b279e744a2adf0bb3d6b61de0246 Mon Sep 17 00:00:00 2001 From: gaelsimon Date: Tue, 28 Oct 2025 17:08:20 +0000 Subject: [PATCH 5/9] chore: update dist folder [skip ci] --- ...map_http_parameters_localitiesgeocode.html | 31 +- ...osmap_http_parameters_localitiesgeocode.md | 22 +- ...http_schema_localitiesgeocoderesponse.html | 6 +- ...p_http_schema_localitiesgeocoderesponse.md | 2 +- dist/merged-woosmap-openapi3.json | 12 +- dist/woosmap-openapi3.json | 6 +- dist/woosmap-openapi3.yml | 24 +- dist/woosmap-postman.json | 996 +++++++++--------- 8 files changed, 541 insertions(+), 558 deletions(-) diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html index f660a06d..b00216a1 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html @@ -110,28 +110,25 @@

    list_sub_buildings

    types

    Specify the types of geocoding responses to return by separating multiple - types with a pipe character (|). This parameter is ignored when used with - the latlng parameter. When executing a geocode request with - the address parameter, use this to select the expected result - type. + types with a pipe character (|). Specifies the types of suggestions to + return in the query. Multiple types can be combined using the pipe + character (|) as a separator. This parameter is ignored when + used with the latlng parameter. When executing a geocode + request with the address parameter, this parameter supports a + wide range of locality classifications, including:

      -
    • city: includes city localities
    • -
    • town: includes town localities
    • -
    • village: includes village localities
    • -
    • hamlet: includes hamlet localities
    • -
    • borough: includes borough localities
    • -
    • suburb: includes suburb localities
    • -
    • quarter: includes quarter localities
    • -
    • neighbourhood: includes neighbourhood localities
    • -
    • locality: includes all previous locality names
    • - postal_code: publicly-used postal codes around the world + Standard locality types (e.g., cities, administrative areas, postal + codes)
    • -
    • address: addresses
    • -
    • admin_level: most commonly used administrative areas
    • -
    • country: countries as whole point of interest
    • +
    • Points of Interest (POI) categories
    • +
    • POI aliases
    +

    + These classifications enable flexible geographic data representation and + querying. +

    diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md index 24578d66..06ceef0c 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md @@ -43,21 +43,13 @@ -

    types

    - Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type. - - - `city`: includes city localities - - `town`: includes town localities - - `village`: includes village localities - - `hamlet`: includes hamlet localities - - `borough`: includes borough localities - - `suburb`: includes suburb localities - - `quarter`: includes quarter localities - - `neighbourhood`: includes neighbourhood localities - - `locality`: includes all previous locality names - - `postal_code`: publicly-used postal codes around the world - - `address`: addresses - - `admin_level`: most commonly used administrative areas - - `country`: countries as whole point of interest + Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including: + + - Standard locality types (e.g., cities, administrative areas, postal codes) + - Points of Interest (POI) categories + - POI aliases + + These classifications enable flexible geographic data representation and querying.

    Generated from the OpenAPI specification. diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.html b/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.html index fc1b066b..8af40dec 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.html +++ b/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.html @@ -251,15 +251,15 @@

    optional - Array<LocalitiesTypesLocalitiesTypesAll>

    An array containing the types of the result

    - See LocalitiesTypes for more + See LocalitiesTypesAll for more information.

    diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.md b/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.md index 5edf6569..f8b53a75 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.md +++ b/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.md @@ -15,7 +15,7 @@ Attributes describing a locality. Not all attributes will be available for all l |

    | optional | [LocalitiesScoresPerComponents](#LocalitiesScoresPerComponents "LocalitiesScoresPerComponents") |

    For each component (street_name, postal_code, and locality), it indicates the degree of correspondence with the original query. This value ranges from 0 to 1, with 0 indicating no match with the original query, and enables you to assess the quality of the Geocode’s result.

    See LocalitiesScoresPerComponents for more information.

    | | | optional | [LocalitiesStatus](#LocalitiesStatus "LocalitiesStatus") | See [LocalitiesStatus](#LocalitiesStatus "LocalitiesStatus") for more information. | | | optional | Array<[LocalitiesAddressSummary](#LocalitiesAddressSummary "LocalitiesAddressSummary")> |

    When reverse geocoding with list_sub_buildings=true, this field will contain a list of precise addresses that can be found at that location, i.e. all flats within a building.

    See LocalitiesAddressSummary for more information.

    | -| | optional | Array<[LocalitiesTypes](#LocalitiesTypes "LocalitiesTypes")> |

    An array containing the types of the result

    See LocalitiesTypes for more information.

    | +| | optional | Array<[LocalitiesTypesAll](#LocalitiesTypesAll "LocalitiesTypesAll")> |

    An array containing the types of the result

    See LocalitiesTypesAll for more information.

    |

    Generated from the OpenAPI specification. ✎ Edit diff --git a/dist/merged-woosmap-openapi3.json b/dist/merged-woosmap-openapi3.json index fe8a58b4..ee7e5e3e 100755 --- a/dist/merged-woosmap-openapi3.json +++ b/dist/merged-woosmap-openapi3.json @@ -11321,11 +11321,11 @@ }, "Woosmap_Platform_API_Reference_geocode_types": { "name": "types", - "description": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", + "description": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", "schema": { "default": "locality|postal_code|address", "example": "locality|admin_level", - "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypes" + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesAll" }, "in": "query" }, @@ -14462,7 +14462,7 @@ "description": "An array containing the types of the result", "type": "array", "items": { - "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypes" + "$ref": "#/components/schemas/Woosmap_Platform_API_Reference_LocalitiesTypesAll" } }, "administrative_area_label": { @@ -19767,7 +19767,8 @@ "minimum": -90 }, { - "type": "string" + "type": "string", + "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$" } ], "title": "Lat" @@ -19780,7 +19781,8 @@ "minimum": -180 }, { - "type": "string" + "type": "string", + "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$" } ], "title": "Lng" diff --git a/dist/woosmap-openapi3.json b/dist/woosmap-openapi3.json index 256790bc..48cd4c3b 100755 --- a/dist/woosmap-openapi3.json +++ b/dist/woosmap-openapi3.json @@ -6579,11 +6579,11 @@ }, "geocode_types": { "name": "types", - "description": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", + "description": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", "schema": { "default": "locality|postal_code|address", "example": "locality|admin_level", - "$ref": "#/components/schemas/LocalitiesTypes" + "$ref": "#/components/schemas/LocalitiesTypesAll" }, "in": "query" }, @@ -9720,7 +9720,7 @@ "description": "An array containing the types of the result", "type": "array", "items": { - "$ref": "#/components/schemas/LocalitiesTypes" + "$ref": "#/components/schemas/LocalitiesTypesAll" } }, "administrative_area_label": { diff --git a/dist/woosmap-openapi3.yml b/dist/woosmap-openapi3.yml index 57797df5..ef14716c 100755 --- a/dist/woosmap-openapi3.yml +++ b/dist/woosmap-openapi3.yml @@ -5734,24 +5734,16 @@ components: geocode_types: name: types description: | - Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type. - * `city`: includes city localities - * `town`: includes town localities - * `village`: includes village localities - * `hamlet`: includes hamlet localities - * `borough`: includes borough localities - * `suburb`: includes suburb localities - * `quarter`: includes quarter localities - * `neighbourhood`: includes neighbourhood localities - * `locality`: includes all previous locality names - * `postal_code`: publicly-used postal codes around the world - * `address`: addresses - * `admin_level`: most commonly used administrative areas - * `country`: countries as whole point of interest + Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including: + - Standard locality types (e.g., cities, administrative areas, postal codes) + - Points of Interest (POI) categories + - POI aliases + + These classifications enable flexible geographic data representation and querying. schema: default: locality|postal_code|address example: locality|admin_level - $ref: '#/components/schemas/LocalitiesTypes' + $ref: '#/components/schemas/LocalitiesTypesAll' in: query list_sub_buildings: name: list_sub_buildings @@ -8025,7 +8017,7 @@ components: description: An array containing the types of the result type: array items: - $ref: '#/components/schemas/LocalitiesTypes' + $ref: '#/components/schemas/LocalitiesTypesAll' administrative_area_label: $ref: '#/components/schemas/AdministrativeAreaLabel' public_id: diff --git a/dist/woosmap-postman.json b/dist/woosmap-postman.json index d65b2a45..5ffc223b 100755 --- a/dist/woosmap-postman.json +++ b/dist/woosmap-postman.json @@ -5,7 +5,7 @@ "description": "Stores Search API lets you query the Assets which are returned as a [GeoJson](https://geojson.org/). Request is done over HTTPS using GET. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/). If your request returns a high number of assets, the result will be paginated. If so, you can request assets by page using `page` and `stores_by_page` parameters (Default is **100**, max is **300**).\n", "item": [ { - "id": "780b1a74-0f68-47bf-bd42-f1273199f6ae", + "id": "e4b7ab7e-3fee-48cf-96be-83dd0063ff7f", "name": "Search for assets", "request": { "name": "Search for assets", @@ -128,7 +128,7 @@ }, "response": [ { - "id": "76aa1691-ddd6-4838-9d13-e6674c36f41d", + "id": "30b62c4b-ed4b-4b69-8b01-3cd86b9ab84e", "name": "Assets successfully retrieved", "originalRequest": { "url": { @@ -243,12 +243,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"laboris_a\": true\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"aliqua_796\": \"aute elit in eiusmod\",\n \"sunt_28\": 24192230\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n}", + "body": "{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"adipisicing_6\": false\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71d97ecd-8a56-46e7-a4bc-6bac6fb6e4bf", + "id": "2959031e-a150-4535-b9aa-7b80e7dbcfb8", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -368,7 +368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33c0e322-9b31-4d5a-a59d-3e8635a2bede", + "id": "3b828373-a9f9-499d-8f3a-e1a68b78a024", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -488,7 +488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81ef9b59-25f5-46c0-994b-2879dc300573", + "id": "3fccc3f9-cef5-4df5-8d37-cfe7b5cd3e25", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -614,7 +614,7 @@ } }, { - "id": "fd8db0c9-efad-4cda-b960-6d4b9776b004", + "id": "75aecc4c-15e5-4107-b21b-faad32626da2", "name": "Autocomplete for assets", "request": { "name": "Autocomplete for assets", @@ -692,7 +692,7 @@ }, "response": [ { - "id": "1e34e91d-e36e-4d4c-b184-bd6b958bbe48", + "id": "5d0f21f0-797e-4abc-90cb-72d14227631f", "name": "Assets Successfully Replaced", "originalRequest": { "url": { @@ -762,12 +762,12 @@ "value": "application/json" } ], - "body": "{\n \"predictions\": [\n {\n \"name\": \"minim irure consequat enim non\",\n \"highlighted\": \"quis voluptat\",\n \"store_id\": {},\n \"types\": {}\n },\n {\n \"name\": \"elit exercitation non Lorem\",\n \"highlighted\": \"Duis anim quis\",\n \"store_id\": {},\n \"types\": {}\n }\n ]\n}", + "body": "{\n \"predictions\": [\n {\n \"name\": \"irure in magna\",\n \"highlighted\": \"consequat fugiat\",\n \"store_id\": {},\n \"types\": {}\n },\n {\n \"name\": \"sunt labore enim id\",\n \"highlighted\": \"dolore Lorem dolor\",\n \"store_id\": {},\n \"types\": {}\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e188f6ef-621a-46f7-96d9-41e77a0e53ad", + "id": "79838fb3-065d-4ebc-abc1-58b9475a52ec", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -842,7 +842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e517ba82-8a58-46a7-81ce-f0e79b6eac18", + "id": "0a2a83b8-dd9a-44b1-a025-cd0421a7e61b", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -917,7 +917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bf4ff7b-eb89-4500-a4af-c67b66415d94", + "id": "51457d5d-cfa2-4663-b126-f1c8f05cc00b", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -998,7 +998,7 @@ } }, { - "id": "234b51f7-32d1-425c-958d-112bdaeff3b4", + "id": "fb73c672-022d-46e9-898b-03def423e945", "name": "Bounds for assets", "request": { "name": "Bounds for assets", @@ -1086,7 +1086,7 @@ }, "response": [ { - "id": "b8cb974b-7589-4279-b657-6c78676c838f", + "id": "fd15533b-5c16-4f30-bd41-6fd34ffed7de", "name": "Bounds successfully retrieved", "originalRequest": { "url": { @@ -1171,7 +1171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "611efca5-7ef1-4bdd-b0b5-ffa65cb263af", + "id": "2eb7fe9d-c36d-491e-9397-3adcc7c99973", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1256,7 +1256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c09ac893-b52b-40d8-8e8f-7fe55e0cebdf", + "id": "23b33b3b-1fa5-4100-a7d7-06792edc87fb", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -1341,7 +1341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6cf2fa4-13a5-4215-9510-694f306fcbd1", + "id": "7c6aed2d-70b2-450f-9190-29fd2ac657d8", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -1438,7 +1438,7 @@ "description": "The Data Management API is a web service that uses an HTTP request to manage, create or edit your Assets. The API only supports JSON. So you have to create a JSON file with your assets’ addresses and other information. You’ll need to convert, or geocode, the addresses in your file to latitude/longitude (`lat` / `long`) coordinates. Those coordinates will be used for most of Woosmap features like [local searches](https://developers.woosmap.com/products/search-api/get-started/), [stores nearby a user location](https://developers.woosmap.com/products/geolocation-api/stores/) or for displaying markers on a map with [Woosmap Javascript API](https://developers.woosmap.com/products/js-api/get-started/).\n", "item": [ { - "id": "e17cf7d1-5b89-4ba9-9e8f-12f4bb8b6a8c", + "id": "9b6ab4bf-a139-4cea-9e2c-b9110430da7e", "name": "Create your Assets", "request": { "name": "Create your Assets", @@ -1500,7 +1500,7 @@ }, "response": [ { - "id": "b0cab54a-255c-43ae-ad77-0bfb36cfdf7c", + "id": "1cd3bb3f-643a-49a9-86ad-d7c8c0cd3fa7", "name": "Assets successfully created", "originalRequest": { "url": { @@ -1560,7 +1560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60a1c714-f113-4756-84b8-60f5543aa8e4", + "id": "907c8155-dcaa-476a-b1d9-875f32daed66", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -1620,7 +1620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb494de0-df2c-450c-a848-1a4e24ca0676", + "id": "a396794a-46f4-46d5-9e33-894d21b7331c", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1680,7 +1680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "436ba208-2a69-4e8d-8f7e-ef90d0a291c3", + "id": "c9a40d35-bf3f-4613-b2f4-22447c67dfd2", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -1746,7 +1746,7 @@ } }, { - "id": "47ae731c-608d-477c-bc4f-2d5bc9087bde", + "id": "88cb22b4-97c8-4809-9ebc-486001455a4e", "name": "Update the Assets", "request": { "name": "Update the Assets", @@ -1808,7 +1808,7 @@ }, "response": [ { - "id": "2a448e2d-2675-4aee-9c22-301d8c7d36d5", + "id": "61a1ff51-5144-4817-9c9e-69fd11fb570a", "name": "Assets successfully updated", "originalRequest": { "url": { @@ -1868,7 +1868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79a10059-5334-41e4-b37d-f9ecf2bcbf1e", + "id": "450742a1-6675-4692-8f3d-bf43c18d1d88", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -1928,7 +1928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9117ee9-ef46-44da-872e-948d7ebb39b4", + "id": "4b6af240-f158-4749-a2e6-d0bc0f9d9ee8", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1988,7 +1988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50cdef43-edea-432c-86a0-b354ebcdb69b", + "id": "aa1b8d59-71af-4421-9f78-04247c354027", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2054,7 +2054,7 @@ } }, { - "id": "423eac78-f9fd-4e11-93e6-6add512bb6c9", + "id": "7e0b4478-3e47-4756-b60e-8fb480aef7ed", "name": "Delete the Assets", "request": { "name": "Delete the Assets", @@ -2113,7 +2113,7 @@ }, "response": [ { - "id": "9dd9ff31-47b5-4d5c-9438-2de1c9e0a219", + "id": "7380ccf4-9305-498c-abb3-4d042866359a", "name": "Assets successfully deleted", "originalRequest": { "url": { @@ -2169,7 +2169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3bf6ab4-69d4-4b38-97d7-f95103371935", + "id": "d58c5bb5-79e3-48d8-b8fe-47651b0b0e28", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2225,7 +2225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e38a475-abee-44b1-b31e-4b4b2e555aea", + "id": "c702a5d9-cd8d-418c-94e1-6ac2fe43375b", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2287,7 +2287,7 @@ } }, { - "id": "2fc5b3db-229f-4739-adae-adbc41c3d92c", + "id": "7026480a-3632-4d1a-9f4a-c42216eaef7a", "name": "Get Asset from ID", "request": { "name": "Get Asset from ID", @@ -2348,7 +2348,7 @@ }, "response": [ { - "id": "7ef58e1c-7468-4f74-bba5-152a49cbd649", + "id": "ff01c8d5-6f85-4e2b-81bc-cbbb5685c111", "name": "Asset successfully retrieved", "originalRequest": { "url": { @@ -2391,12 +2391,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"sint__\": false,\n \"fugiat2d\": true\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n}", + "body": "{\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e78ab366-8abc-4f3d-9531-0ca8d7a1dbb8", + "id": "bf5c7e36-78d6-483f-bb42-20051ef6d409", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2444,7 +2444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a006c735-e9d5-4468-adc2-08c7bb416fc6", + "id": "336d7e4f-2112-430c-a2eb-a1b8c91a7de6", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2492,7 +2492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ba905b2-b21d-4583-801a-5d8f3892100f", + "id": "3de357b3-a322-4048-a34a-62dca7720af5", "name": "Not Found - `storeId` do not exist.", "originalRequest": { "url": { @@ -2534,7 +2534,7 @@ } }, { - "id": "0fd603c9-2c7d-4e67-95d7-85e07adeb392", + "id": "3d75ce3f-c750-4895-82ea-37ebdd3de8c5", "name": "Replace all assets", "request": { "name": "Replace all assets", @@ -2597,7 +2597,7 @@ }, "response": [ { - "id": "9575d1e9-806f-452a-a5c4-7197711a7f65", + "id": "9524930d-6682-4aa9-b2c3-2a9ca4617b3a", "name": "Assets successfully replaced", "originalRequest": { "url": { @@ -2658,7 +2658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10e03091-29a1-4a6c-a677-4ea2e99c7158", + "id": "aa3bdaa5-0330-490b-b953-85786442fb60", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -2719,7 +2719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb060fb8-0629-404b-b777-1fe1082129a6", + "id": "831fa884-3171-456c-a60b-f275b6f897db", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2780,7 +2780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebbb57ff-66cf-4fec-b326-93d4c7d13155", + "id": "957819a3-297a-480f-8935-ca7bded32b41", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2853,7 +2853,7 @@ "description": "Geolocation API returns a location (or nearby stores) and accuracy radius based on an IP address. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "99a6a449-bebc-423b-9e1b-971780529589", + "id": "fcd2e926-497b-4775-97cc-a457786bbedd", "name": "Geolocation from an IP address", "request": { "name": "Geolocation from an IP address", @@ -2913,7 +2913,7 @@ }, "response": [ { - "id": "d2dd6261-4501-435f-b33d-79852e262092", + "id": "dd7f6380-ecdb-4cc8-8816-901e06433c9c", "name": "Geolocation successfully retrieved", "originalRequest": { "url": { @@ -2970,7 +2970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5742f106-8ae7-453d-8b59-fd4aabd3ad29", + "id": "b96d4672-3ed2-4438-a740-ab0e8cf0adbf", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3027,7 +3027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "500fcf0c-add9-4d2e-8e9f-714713b41d76", + "id": "2174474f-5068-421c-8cda-4f075932040b", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3084,7 +3084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c5a809e-3658-4741-bb94-3b119ddf08c7", + "id": "651fc320-a57a-4b0d-8aee-1598dcaffe74", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3147,7 +3147,7 @@ } }, { - "id": "6ebca354-a0c5-4ec9-b490-1a03efc9aaab", + "id": "c400c3b1-6909-464a-ac84-abc95f277c42", "name": "Assets nearby a Geolocation", "request": { "name": "Assets nearby a Geolocation", @@ -3225,7 +3225,7 @@ }, "response": [ { - "id": "5a785d06-f956-4b4f-9d68-c5a73e417a08", + "id": "ab037f13-f547-4cb5-b3f7-1c79d13eccf8", "name": "Geolocation and Stores successufully retrieved", "originalRequest": { "url": { @@ -3295,12 +3295,12 @@ "value": "application/json" } ], - "body": "{\n \"stores\": {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"enim2\": -18416870,\n \"veniam33\": -23505858\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"laboris1\": true\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"accuracy\": \"\",\n \"latitude\": \"\",\n \"longitude\": \"\",\n \"country_code\": \"\",\n \"country_name\": \"\",\n \"continent\": \"\",\n \"region_state\": \"\",\n \"city\": \"\",\n \"postal_code\": \"\",\n \"timezone\": \"\",\n \"raw_offset\": \"\",\n \"dst_offset\": \"\"\n}", + "body": "{\n \"stores\": {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"accuracy\": \"\",\n \"latitude\": \"\",\n \"longitude\": \"\",\n \"country_code\": \"\",\n \"country_name\": \"\",\n \"continent\": \"\",\n \"region_state\": \"\",\n \"city\": \"\",\n \"postal_code\": \"\",\n \"timezone\": \"\",\n \"raw_offset\": \"\",\n \"dst_offset\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6c53cbf1-40c3-426b-aeed-84ebbc8457c4", + "id": "2765b356-eba4-4a52-bda6-e0ad9b257621", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3375,7 +3375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf89e715-3bcb-4ad1-a13c-b17178dcff48", + "id": "58f1b4f0-3f57-417d-9ab9-c79946acc73a", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3450,7 +3450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b85ac92d-9214-4fac-8d77-f1943dca9159", + "id": "c7b3b3e5-0aa4-47e2-ba4e-bde681e4a63f", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3531,7 +3531,7 @@ } }, { - "id": "ae150230-4687-4696-b5d6-9c4e5f9790a5", + "id": "5c4f0889-0008-4f36-83c9-2f6ee350623e", "name": "Timezone", "request": { "name": "Timezone", @@ -3600,7 +3600,7 @@ }, "response": [ { - "id": "7c5f8f83-5e42-48d5-9856-dea67b8dba36", + "id": "412bc6d6-86ae-4df5-8353-a1cb814c70e0", "name": "Timezone successfully retrieved", "originalRequest": { "url": { @@ -3666,7 +3666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f4354ad-4188-43ba-9e83-0123d30c9c72", + "id": "d8ca4873-9b9f-4926-9e73-b81059831d3a", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3732,7 +3732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02a54f95-772f-4bec-9d60-16bfb011a405", + "id": "3593f14f-d923-4dff-9e45-f1341f04c582", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3798,7 +3798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb281794-5715-4ea8-b1a1-4eb0895234ac", + "id": "ab3224c8-d52c-4c90-8064-b84ad78ff13e", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3876,7 +3876,7 @@ "description": "Woosmap Localities API is a web service that returns a great amount of geographical places in response to an HTTP request. Among others are city names, postal codes, suburbs, addresses or airports. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "12984938-06a7-4eaf-8770-04a801d1aa6c", + "id": "4e769a6b-8d1f-4fff-a4d3-1ccba700886b", "name": "Autocomplete for Localities", "request": { "name": "Autocomplete for Localities", @@ -3912,7 +3912,7 @@ "type": "text/plain" }, "key": "types", - "value": "village" + "value": "neighbourhood" }, { "disabled": false, @@ -4017,7 +4017,7 @@ }, "response": [ { - "id": "9dca2930-ead8-4f2c-aaff-786ab9cc2745", + "id": "1626c1cb-c665-4de7-9a7a-987332dbd7c3", "name": "Autocompletion Localities successfully retrieved", "originalRequest": { "url": { @@ -4048,7 +4048,7 @@ "type": "text/plain" }, "key": "types", - "value": "village" + "value": "neighbourhood" }, { "disabled": false, @@ -4150,12 +4150,12 @@ "value": "application/json" } ], - "body": "{\n \"localities\": [\n {\n \"public_id\": \"\",\n \"types\": [\n \"country\",\n \"village\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n },\n {\n \"public_id\": \"\",\n \"types\": [\n \"address\",\n \"town\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n }\n ]\n}", + "body": "{\n \"localities\": [\n {\n \"public_id\": \"\",\n \"types\": [\n \"address\",\n \"address\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n },\n {\n \"public_id\": \"\",\n \"types\": [\n \"country\",\n \"postal_code\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e6d0e84-fc6d-463e-81af-2c9bfac098c7", + "id": "b5f54941-cab4-41e4-a89c-790d6697fd68", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -4186,7 +4186,7 @@ "type": "text/plain" }, "key": "types", - "value": "village" + "value": "neighbourhood" }, { "disabled": false, @@ -4293,7 +4293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3b00a4f-afa3-4341-96b1-e20751e9b80d", + "id": "8fed9dee-af21-4b09-9b06-7bef7ad7d3ee", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -4324,7 +4324,7 @@ "type": "text/plain" }, "key": "types", - "value": "village" + "value": "neighbourhood" }, { "disabled": false, @@ -4431,7 +4431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49228158-7b3d-44aa-a77a-0875c42c2269", + "id": "9d709fd3-908e-4d02-ab59-981602b783e9", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -4462,7 +4462,7 @@ "type": "text/plain" }, "key": "types", - "value": "village" + "value": "neighbourhood" }, { "disabled": false, @@ -4575,7 +4575,7 @@ } }, { - "id": "eed2be09-a05a-4926-b65c-45f184ffee41", + "id": "4a4ae748-3484-4a3e-83c6-355ce49b2164", "name": "Details of a Locality", "request": { "name": "Details of a Locality", @@ -4629,7 +4629,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "disabled": false, @@ -4680,7 +4680,7 @@ }, "response": [ { - "id": "8157f347-3cd2-4eda-b479-3497150c484a", + "id": "3cecb7cd-8cd5-45b3-b0c8-5e278696e834", "name": "Details Localities successfully retrieved", "originalRequest": { "url": { @@ -4729,7 +4729,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "disabled": false, @@ -4777,12 +4777,12 @@ "value": "application/json" } ], - "body": "{\n \"result\": {\n \"public_id\": \"\",\n \"formatted_address\": \"\",\n \"types\": [\n \"suburb\",\n \"village\"\n ],\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"MultiPoligon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n },\n \"accuracy\": \"GEOMETRIC_CENTER\"\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"name\": \"\",\n \"administrative_area_label\": \"\",\n \"status\": \"not_yet_built\",\n \"addresses\": {\n \"pagination\": {\n \"page\": \"\",\n \"page_count\": \"\",\n \"addresses_per_page\": \"\",\n \"address_count\": \"\"\n },\n \"list\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"result\": {\n \"public_id\": \"\",\n \"formatted_address\": \"\",\n \"types\": [\n \"route\",\n \"village\"\n ],\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n },\n \"accuracy\": \"ROUTE\"\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"name\": \"\",\n \"administrative_area_label\": \"\",\n \"status\": \"not_yet_built\",\n \"addresses\": {\n \"pagination\": {\n \"page\": \"\",\n \"page_count\": \"\",\n \"addresses_per_page\": \"\",\n \"address_count\": \"\"\n },\n \"list\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bc0bc808-2d4a-46b4-9790-aa8b12665132", + "id": "1fee22d5-952a-48a6-a6ee-277465c50cfe", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -4831,7 +4831,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "disabled": false, @@ -4884,7 +4884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91bd7da8-a89d-41c4-981d-e75bb5d14ce6", + "id": "4ea965b3-ec5e-482f-9232-10b41f13bd64", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -4933,7 +4933,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "disabled": false, @@ -4986,7 +4986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b6ccbba-cba7-49ea-ac25-154972a9836a", + "id": "0f4c4d20-03f3-4a3f-8564-e1cbe3a5b7a0", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -5035,7 +5035,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "disabled": false, @@ -5094,7 +5094,7 @@ } }, { - "id": "874fce5e-a327-4d4d-b861-f3af163890c1", + "id": "c5ab90ca-06be-4338-94dd-4421fc00300f", "name": "Geocode a locality or Reverse Geocode a latlng", "request": { "name": "Geocode a locality or Reverse Geocode a latlng", @@ -5135,11 +5135,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", + "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "village" + "value": "neighbourhood" }, { "disabled": false, @@ -5202,7 +5202,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" } ], "variable": [] @@ -5235,7 +5235,7 @@ }, "response": [ { - "id": "f4782d21-a5d0-4b01-ac4f-4da1964d719a", + "id": "b875aa3f-b8af-4861-b360-cc9c2b83f44e", "name": "Request Localities Geocode successful", "originalRequest": { "url": { @@ -5271,11 +5271,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", + "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "village" + "value": "neighbourhood" }, { "disabled": false, @@ -5338,7 +5338,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "description": { @@ -5368,12 +5368,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"suburb\",\n \"country\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"MultiPoligon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"hamlet\",\n \"village\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"quarter\",\n \"address\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"POSTAL_CODE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"quarter\",\n \"neighbourhood\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"ROOFTOP\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"MultiPoligon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5165f134-2118-4264-8280-7f64ce5b66cc", + "id": "ad6d9e2f-86f2-434e-8b8c-eb6337b32d0b", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -5409,11 +5409,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", + "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "village" + "value": "neighbourhood" }, { "disabled": false, @@ -5476,7 +5476,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "description": { @@ -5511,7 +5511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60833c9b-6284-4f53-8629-2fb3e8de7f4e", + "id": "c332e880-9a74-4349-82c4-8e0370c1eda2", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -5547,11 +5547,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", + "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "village" + "value": "neighbourhood" }, { "disabled": false, @@ -5614,7 +5614,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "description": { @@ -5649,7 +5649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffab6206-0a8e-48a2-867b-50fd9280f279", + "id": "62cbe03d-35ac-4465-9bce-a8cd33d4a747", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -5685,11 +5685,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, use this to select the expected result type.\n * `city`: includes city localities \n * `town`: includes town localities \n * `village`: includes village localities \n * `hamlet`: includes hamlet localities \n * `borough`: includes borough localities \n * `suburb`: includes suburb localities \n * `quarter`: includes quarter localities \n * `neighbourhood`: includes neighbourhood localities\n * `locality`: includes all previous locality names\n * `postal_code`: publicly-used postal codes around the world\n * `address`: addresses\n * `admin_level`: most commonly used administrative areas\n * `country`: countries as whole point of interest\n", + "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", "type": "text/plain" }, "key": "types", - "value": "village" + "value": "neighbourhood" }, { "disabled": false, @@ -5752,7 +5752,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "description": { @@ -5793,7 +5793,7 @@ } }, { - "id": "946655b8-d51b-447e-a759-149194ebf70b", + "id": "11f48fec-60b2-49b3-8592-467545014455", "name": "Nearby points of interest", "request": { "name": "Nearby points of interest", @@ -5820,7 +5820,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.shop.butcher" + "value": "business.shop.clothes" }, { "disabled": false, @@ -5865,7 +5865,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.shop.butcher" + "value": "business.shop.clothes" } ], "variable": [] @@ -5898,7 +5898,7 @@ }, "response": [ { - "id": "142a7d6b-8bef-405f-910b-4aa60ab47061", + "id": "2e1971d5-60b3-4c46-b49b-e70e22253ee8", "name": "Points of interests surrounding `location` and matching provided `types`, sorted by distance to `location`.", "originalRequest": { "url": { @@ -5920,7 +5920,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.shop.butcher" + "value": "business.shop.clothes" }, { "disabled": false, @@ -5965,7 +5965,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.shop.butcher" + "value": "business.shop.clothes" }, { "description": { @@ -5995,12 +5995,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"types\": [\n \"beach\",\n \"business.shop.butcher\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"sports.winter\",\n \"education.library\"\n ],\n \"formatted_address\": \"\"\n },\n {\n \"types\": [\n \"medical.clinic\",\n \"hospitality.guest_house\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"tourism.monument\",\n \"business.shop.toys\"\n ],\n \"formatted_address\": \"\"\n }\n ],\n \"pagination\": {\n \"next_page\": \"\",\n \"previous_page\": \"\"\n }\n}", + "body": "{\n \"results\": [\n {\n \"types\": [\n \"business.shop.clothes\",\n \"park\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.shop.clothes\",\n \"hospitality.bed_and_breakfast\"\n ],\n \"formatted_address\": \"\"\n },\n {\n \"types\": [\n \"business.car_repair\",\n \"business.finance.bank\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.car_repair\",\n \"business.nightclub\"\n ],\n \"formatted_address\": \"\"\n }\n ],\n \"pagination\": {\n \"next_page\": \"\",\n \"previous_page\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc219852-a760-406e-a0ce-1c256b569fca", + "id": "a4606739-445e-48c5-b2be-b66c9b35b07e", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6022,7 +6022,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.shop.butcher" + "value": "business.shop.clothes" }, { "disabled": false, @@ -6067,7 +6067,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.shop.butcher" + "value": "business.shop.clothes" }, { "description": { @@ -6102,7 +6102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eec8cb8-2993-4c59-bccc-953df9ad2075", + "id": "0f345861-25f7-49c0-8a34-0b739cb11fee", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -6124,7 +6124,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.shop.butcher" + "value": "business.shop.clothes" }, { "disabled": false, @@ -6169,7 +6169,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.shop.butcher" + "value": "business.shop.clothes" }, { "description": { @@ -6204,7 +6204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aef6c7c-6a1b-4327-8aa7-0584b50b7bbe", + "id": "2285232d-342e-4504-8b98-08ee0a144b7b", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -6226,7 +6226,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.shop.butcher" + "value": "business.shop.clothes" }, { "disabled": false, @@ -6271,7 +6271,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.shop.butcher" + "value": "business.shop.clothes" }, { "description": { @@ -6318,7 +6318,7 @@ "description": "Woosmap Address API is a web service that returns addresses and other geographical places in response to an HTTP request. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n>**⚠️ This API has been deprecated in favour of Localities API**\n", "item": [ { - "id": "e453e15d-ca2e-43dd-8583-7c2c52854027", + "id": "c5b3bb50-0d48-4b55-925a-4f13b6ad6685", "name": "Autocomplete for Addresses", "request": { "name": "Autocomplete for Addresses", @@ -6406,7 +6406,7 @@ }, "response": [ { - "id": "8a20b2c7-1fe5-47c5-b756-cf238ec6c939", + "id": "c7bd932f-1e34-4ebd-b6ef-c7ea6a95fee0", "name": "Autocompletion Address successfully retrieved", "originalRequest": { "url": { @@ -6486,12 +6486,12 @@ "value": "application/json" } ], - "body": "{\n \"predictions\": [\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"admin_level\",\n \"status\": \"INVALID_REQUEST\"\n },\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"house_number\",\n \"status\": \"INVALID_REQUEST\"\n }\n ],\n \"status\": \"OK\"\n}", + "body": "{\n \"predictions\": [\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"address_block\",\n \"status\": \"UNKNOWN_ERROR\"\n },\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"route\",\n \"status\": \"INVALID_REQUEST\"\n }\n ],\n \"status\": \"INVALID_REQUEST\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c1ce66b-d44d-4d23-9ddf-7fce4ac50665", + "id": "65026a9d-1180-4cc6-9628-0aa6b11c91a6", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6576,7 +6576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23e74ba1-7c3e-4071-8877-de6ebce1b82e", + "id": "32c47d32-7b33-4c69-afb3-286b1e36da8a", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -6661,7 +6661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a22db90d-1147-44c3-b770-6c34964eec2f", + "id": "56e1d7a0-2565-43c2-b7cf-448731bb5f04", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -6752,7 +6752,7 @@ } }, { - "id": "ccdd93dd-8e0a-44ec-a8b5-004c60d05d43", + "id": "9746fbc9-aaf9-41b4-9daf-fd6cf40df625", "name": "Details of an Address", "request": { "name": "Details of an Address", @@ -6798,7 +6798,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" } ], "variable": [] @@ -6831,7 +6831,7 @@ }, "response": [ { - "id": "68f9397a-80f5-4b49-8269-b1e6fb9c98b8", + "id": "da3850af-bef1-446d-826b-5f77f96f1736", "name": "Details Address successfully retrieved", "originalRequest": { "url": { @@ -6872,7 +6872,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "description": { @@ -6902,12 +6902,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"UNKNOWN_ERROR\",\n \"result\": {\n \"formatted_address\": \"\",\n \"types\": [\n \"admin_level\",\n \"route\"\n ],\n \"public_id\": \"\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"APPROXIMATE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n}", + "body": "{\n \"status\": \"REQUEST_DENIED\",\n \"result\": {\n \"formatted_address\": \"\",\n \"types\": [\n \"house_number\",\n \"country\"\n ],\n \"public_id\": \"\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"ROOFTOP\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2771ee7e-364a-44bf-8621-490fa477336d", + "id": "011e396c-96cf-4f15-89e4-8bd59e88a743", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6948,7 +6948,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "description": { @@ -6983,7 +6983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "195520ce-d4f1-4b99-99c8-871c194c4197", + "id": "e502f1c0-0afc-4bc9-b65c-e017d3ba17b3", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -7024,7 +7024,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "description": { @@ -7059,7 +7059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "067507df-ddbc-4742-8776-0a3cac90562b", + "id": "3dc0d7b1-bfaf-4695-8efc-38b90464d23c", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -7100,7 +7100,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "description": { @@ -7141,7 +7141,7 @@ } }, { - "id": "eacdb7a6-af12-44fa-b007-4052d582687e", + "id": "44b32653-1ada-4a0c-8deb-3e63cb6b91b6", "name": "Geocode an Address or Reverse Geocode a latlng", "request": { "name": "Geocode an Address or Reverse Geocode a latlng", @@ -7214,7 +7214,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "disabled": false, @@ -7256,7 +7256,7 @@ }, "response": [ { - "id": "19d2c4fd-ded0-4eec-8ef3-e5ce8288ab59", + "id": "68facdcf-35ce-445b-990a-269064ac09a7", "name": "Request Address Geocode successful", "originalRequest": { "url": { @@ -7324,7 +7324,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "disabled": false, @@ -7363,12 +7363,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"house_number\",\n \"country\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"locality\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"REQUEST_DENIED\"\n}", + "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"admin_level\",\n \"house_number\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"route\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"OK\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d60c77b1-e416-4625-b8d2-829a385a1319", + "id": "e0a15d3c-0aa3-400e-8683-296be076c0fb", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -7436,7 +7436,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "disabled": false, @@ -7480,7 +7480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a7b050f-fa61-4d69-a842-fed4245036ab", + "id": "5c028882-d8b6-4ff2-8820-75cc382dec12", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -7548,7 +7548,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "disabled": false, @@ -7592,7 +7592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84cb78c1-b3b7-4bce-a7c9-c0a7966ac22e", + "id": "7da1c54d-0a4c-40f4-8c5d-51de326e34ae", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -7660,7 +7660,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha3" + "value": "alpha2" }, { "disabled": false, @@ -7716,7 +7716,7 @@ "description": "Woosmap Distance API is a service providing road travel distance and duration calculations, on a Worldwide scale. Request is done over HTTPS using GET or POST. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "a81a8809-57ef-4110-8e1c-aaac5256bc79", + "id": "d020f11b-afdc-4419-90af-95787b0c0e4a", "name": "Distance Matrix", "request": { "name": "Distance Matrix", @@ -7762,7 +7762,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -7780,7 +7780,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -7798,7 +7798,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -7849,7 +7849,7 @@ }, "response": [ { - "id": "d777bd18-84d3-4f4a-8d36-31b8ea7b1a4a", + "id": "c5ec9649-2932-4cc0-9837-de0009bcd690", "name": "Distance Matrix successfully retrieved", "originalRequest": { "url": { @@ -7890,7 +7890,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -7908,7 +7908,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -7926,7 +7926,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -7974,12 +7974,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"OVER_QUERY_LIMIT\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"INVALID_REQUEST\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "018e027c-946f-4e30-a498-d5b05ce6bdbe", + "id": "e2b144bd-5c7d-4e74-965d-c41ace0dcd88", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -8020,7 +8020,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -8038,7 +8038,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -8056,7 +8056,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -8109,7 +8109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9773edf5-1f54-4263-a33e-0969f249b916", + "id": "4a70486d-1ce6-4896-9aed-0b3223703ce4", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -8150,7 +8150,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -8168,7 +8168,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -8186,7 +8186,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -8239,7 +8239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b1cb59f-9964-4841-a12f-9c753cc5ad3b", + "id": "b0e1e775-3854-4ff9-9f63-105a935ed5f0", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -8280,7 +8280,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -8298,7 +8298,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -8316,7 +8316,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -8375,7 +8375,7 @@ } }, { - "id": "acf2f273-2a8b-4300-807d-3c185f564212", + "id": "459cada6-b2f0-438f-8c28-ea9c1a89b3a6", "name": "Distance Matrix using POST", "request": { "name": "Distance Matrix using POST", @@ -8411,7 +8411,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8439,7 +8439,7 @@ }, "response": [ { - "id": "0fb179fd-bf23-4947-bb3d-c53994f8e9c8", + "id": "f87cd5b6-2b7a-4df1-914e-adedc0c8ab7e", "name": "Distance Matrix with POST successfully retrieved", "originalRequest": { "url": { @@ -8479,7 +8479,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8496,12 +8496,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"OVER_QUERY_LIMIT\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"INVALID_REQUEST\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ff207dc-2ce4-4019-80c6-455e319afc0f", + "id": "db411f6f-ccd0-4062-925f-2a5b7d1cbb29", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -8541,7 +8541,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8563,7 +8563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b20b3ac-fa74-4aba-9d2b-46bd68fba966", + "id": "43e81306-2737-4234-8180-22d57757155b", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -8603,7 +8603,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8625,7 +8625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ea147bc-af92-488d-b6a6-892e92b56170", + "id": "a8023694-0cd0-4312-90a8-a52fb85db6ad", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -8665,7 +8665,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8687,7 +8687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39286e9f-aa2f-4224-9472-fe011a586eae", + "id": "22299b90-7bd6-405c-8c45-0beeee8ce938", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -8727,7 +8727,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"walking\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"distance\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8755,7 +8755,7 @@ } }, { - "id": "76e22a0e-45b3-4fc8-85d6-0a5abb4785e3", + "id": "1fe18d9f-cd1d-4adc-8569-a521d8dae591", "name": "Route", "request": { "name": "Route", @@ -8801,7 +8801,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -8819,7 +8819,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -8846,7 +8846,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -8915,7 +8915,7 @@ }, "response": [ { - "id": "ed3fd37a-94b1-4a5c-83f9-186e723c6914", + "id": "1307495c-ab96-4f07-8c05-7409d071fe3f", "name": "Route successfully retrieved", "originalRequest": { "url": { @@ -8956,7 +8956,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -8974,7 +8974,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9001,7 +9001,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -9067,12 +9067,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"BACKEND_ERROR\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n }\n ]\n}", + "body": "{\n \"status\": \"OK\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5d6c63c-e88d-4a8e-a66a-e398c5301635", + "id": "da544cdf-bd84-4989-b7a0-8c73d1a5ab31", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -9113,7 +9113,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9131,7 +9131,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9158,7 +9158,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -9229,7 +9229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b359928-c8e9-4b0d-99e1-43107e86fa65", + "id": "2820fe4b-3b01-48d9-9ec5-2a514a73899b", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -9270,7 +9270,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9288,7 +9288,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9315,7 +9315,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -9386,7 +9386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9c6b29d-6b67-47d8-979f-bba0989cde8d", + "id": "d34bc1f0-f00f-4db3-9fc8-18628b22e3f3", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -9427,7 +9427,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9445,7 +9445,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9472,7 +9472,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -9549,7 +9549,7 @@ } }, { - "id": "30c4c5d1-a700-4702-a2a3-f9b252332d29", + "id": "f3c06e53-5c78-4a47-88b6-91a7a3917176", "name": "Tolls", "request": { "name": "Tolls", @@ -9595,7 +9595,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9613,7 +9613,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9640,7 +9640,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -9691,7 +9691,7 @@ }, "response": [ { - "id": "9bb1c6ee-8ba5-4ece-897a-0f663a30cbef", + "id": "ba79fa79-43e8-475e-8b94-175137fc9158", "name": "Tolls successfully retrieved", "originalRequest": { "url": { @@ -9732,7 +9732,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9750,7 +9750,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9777,7 +9777,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -9825,12 +9825,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"INVALID_REQUEST\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"fugiat_3\": -49746462\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"dolor_8_\": true\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"magnaf\": 20993029.05449027,\n \"occaecat_0\": -20982497.022343785\n },\n {\n \"countryCode\": \"\",\n \"sed_6\": -93895158,\n \"ullamco7a\": 77009168\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"magna4d\": \"adipisicing consequat ipsum\"\n },\n {\n \"countryCode\": \"\",\n \"Lorem_742\": false\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"MAX_ELEMENTS_EXCEEDED\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"deserunt_bd\": -27690493\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"dolor4f4\": -62400235,\n \"sunt20\": -14198816\n },\n {\n \"countryCode\": \"\",\n \"culpa3\": 12261292.787978023\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"consequat06_\": -50657958.48369441\n },\n {\n \"countryCode\": \"\",\n \"voluptatea3\": 90715325,\n \"fugiatc\": true,\n \"deserunt2a\": \"laborum irure\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"nisidc\": true\n },\n {\n \"countryCode\": \"\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "72758517-35f4-4fcb-801f-b4365b4ed22f", + "id": "e4e21888-68dc-43e4-acc7-ab74c6ef0b75", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -9871,7 +9871,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9889,7 +9889,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9916,7 +9916,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -9969,7 +9969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ca488a3-ef95-482e-aa45-8793a453d385", + "id": "5137335f-9a45-4880-a449-3b57f5cf33e8", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -10010,7 +10010,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10028,7 +10028,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10055,7 +10055,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -10108,7 +10108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3cec5db-7379-477a-972b-b0019c811dfc", + "id": "a4974cdc-3572-45a4-ae7b-f6f9cfb10658", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -10149,7 +10149,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10167,7 +10167,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10194,7 +10194,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -10253,7 +10253,7 @@ } }, { - "id": "8ce7f31e-1792-4743-909f-f983a0734ec9", + "id": "162a0a23-f6d0-486c-89d2-d19e4da9a42b", "name": "Isochrone (Early Access)", "request": { "name": "Isochrone (Early Access)", @@ -10299,7 +10299,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10317,7 +10317,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10326,7 +10326,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -10368,7 +10368,7 @@ }, "response": [ { - "id": "89039b45-d953-4b40-8766-844dbc7271ff", + "id": "50ec35ad-968a-405f-b33c-c3ab001edb41", "name": "Isochrone successfully retrieved", "originalRequest": { "url": { @@ -10409,7 +10409,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10427,7 +10427,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10436,7 +10436,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -10480,7 +10480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "873ad285-d854-4d6b-b61a-b9d228fc5ecd", + "id": "83854051-972a-4a68-b41a-3bc83ebbea38", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -10521,7 +10521,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10539,7 +10539,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10548,7 +10548,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -10592,7 +10592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61268dbd-bf97-4ac1-9d2e-275feea3b0dc", + "id": "61eba1d7-9fba-4d65-b126-8eb293bfd584", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -10633,7 +10633,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10651,7 +10651,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10660,7 +10660,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -10704,7 +10704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dfd7f20-6387-46e0-8db9-3f5537d391ec", + "id": "bc02593e-09ac-4fb1-9495-6d4b137c348d", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -10745,7 +10745,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10763,7 +10763,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10772,7 +10772,7 @@ "type": "text/plain" }, "key": "method", - "value": "time" + "value": "distance" }, { "disabled": false, @@ -10828,7 +10828,7 @@ "description": "Woosmap Zones API is a web service that uses an HTTP request to manage, create or edit your Zones (polygons) attached to your assets.\nThe general principle is that sometimes searching assets using crowfly distance is not good enough. For example to search the restaurant that will do the delivery for a specified address, each restaurant has a delivery zone and for topological or business reasons it’s not always the nearest restaurant in charge of your delivery. Woosmap Zones API allows you to associate a delivery zone to each of the restaurants.\n", "item": [ { - "id": "a1b0a241-b387-4ede-bdab-72a2d3d16204", + "id": "b40a4aa1-7bb7-4879-ab9a-8305faf642e3", "name": "List your Zones", "request": { "name": "List your Zones", @@ -10896,7 +10896,7 @@ }, "response": [ { - "id": "17ca6c91-b725-4a15-af94-a3d2fea1f94a", + "id": "168f8a03-d72c-4db6-b733-ad689f279c32", "name": "Zones successfully retrieved", "originalRequest": { "url": { @@ -10961,7 +10961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f5a2f83-c614-47a8-8318-55a986dddd63", + "id": "5661178f-a2e3-4f12-8110-210b5697435c", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11026,7 +11026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea86573a-57c1-499d-a1d7-9e3782d974f0", + "id": "9cbc81e0-1f4b-4371-8fe0-8a90abe20c70", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11091,7 +11091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "669d8fc0-982f-41d4-ad34-094ed0d43076", + "id": "aa59bff7-32de-4f58-a105-0d966a0ea29d", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -11162,7 +11162,7 @@ } }, { - "id": "b6e95d14-cb23-44b3-bb61-078d6c581cff", + "id": "cfaf73e8-6276-4fab-b8b3-0a6062846cdd", "name": "Create your Zones", "request": { "name": "Create your Zones", @@ -11224,7 +11224,7 @@ }, "response": [ { - "id": "6ed45b98-7c95-43d2-9b27-302c777a660e", + "id": "381c3792-d702-4fd5-ad4b-10a6aafcfc33", "name": "Zones successfully created", "originalRequest": { "url": { @@ -11284,7 +11284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c83b3fc-cf0a-4a78-b37d-52b2a1a148d4", + "id": "6efb5edb-f50f-456b-97d9-4fae30fd3274", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -11344,7 +11344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e59a6f2e-83a3-4603-9e82-0e9c45812695", + "id": "6160a412-4534-4a45-993b-407b22ea749e", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11404,7 +11404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d195325-2cd5-4de0-837e-593830b83edc", + "id": "33a5f6d5-7660-44d4-82c1-0f46b79e5d12", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11470,7 +11470,7 @@ } }, { - "id": "147ad294-03ec-409d-9833-d0cdf6cefe77", + "id": "35024424-117d-4061-a369-e6d3630dac27", "name": "Update the Zones", "request": { "name": "Update the Zones", @@ -11532,7 +11532,7 @@ }, "response": [ { - "id": "125cebe0-15d5-4087-815d-9c55fa8d9d2e", + "id": "1f122996-bfb3-4d6b-9a29-6c79c2738dcb", "name": "Zones successfully updated", "originalRequest": { "url": { @@ -11592,7 +11592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f68cc0b5-8b06-4e38-9d71-77e8492d6154", + "id": "8265825a-132e-4bb2-b71d-c034d87b264b", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -11652,7 +11652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c5e3035-7cb3-4013-a18c-e61b32a29ca3", + "id": "36c765d8-d6e6-40f7-85eb-357b0990b468", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11712,7 +11712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24b3a8da-787d-44c5-85f1-a4e1a05bb370", + "id": "be1f8597-d0f7-46ad-a2b2-3bd25d97ba3a", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11778,7 +11778,7 @@ } }, { - "id": "5218cb7e-a36a-4fcd-a853-17c70494eaec", + "id": "72fda7b1-8892-4805-aa1d-e71be185112e", "name": "Delete the Zones", "request": { "name": "Delete the Zones", @@ -11827,7 +11827,7 @@ }, "response": [ { - "id": "338d0996-d8c8-460d-bd01-23eb0bb6c6f0", + "id": "97a7f4c7-81cd-4a84-8fda-90d454819061", "name": "Zones successfully deleted", "originalRequest": { "url": { @@ -11874,7 +11874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f5649a4-5939-470c-a1f0-b7f83c7396bd", + "id": "4ffc107b-bbad-4e36-b650-26df2010e4d8", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11921,7 +11921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b923afef-d849-4e63-a5b1-217d35abd5cf", + "id": "26e3c6ed-8968-472a-aca7-57057aaf4158", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11974,7 +11974,7 @@ } }, { - "id": "9fc62b44-0b20-4d4a-82c3-d0fef0f06f26", + "id": "1537c2f8-8d24-47f4-b840-61d473e15dbb", "name": "Get Zone from ID", "request": { "name": "Get Zone from ID", @@ -12035,7 +12035,7 @@ }, "response": [ { - "id": "8ecc6c1a-c14e-4dab-a192-681456721fb5", + "id": "801bdc10-ec47-4302-855e-9cb76e6facb5", "name": "Zone successfully retrieved", "originalRequest": { "url": { @@ -12083,7 +12083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8a4132f-c753-4b56-966f-7ebf4cf7e45d", + "id": "8c3e6c4e-9485-4cb4-ae55-abfb1e318c7c", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -12131,7 +12131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a769cec7-eeb6-47a3-923d-59c031138ee3", + "id": "e3860b9f-ccdb-4cd7-bad1-e3a8547789ae", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -12179,7 +12179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b424285-548f-4e07-b0c0-2323dc798c6e", + "id": "a4c6b847-300b-4b76-9c80-f346e55ee9f6", "name": "Not Found - `zone_id` do not exist.", "originalRequest": { "url": { @@ -12221,7 +12221,7 @@ } }, { - "id": "b6147d9c-5d93-4f47-b917-cdf089de985f", + "id": "5d1e8e9d-e21b-4ccf-b2c4-f5b42cd1efde", "name": "Delete Zone from ID", "request": { "name": "Delete Zone from ID", @@ -12282,7 +12282,7 @@ }, "response": [ { - "id": "e7afbbc3-545e-4768-9cb2-7c45454b0d89", + "id": "aed8ee5f-560a-447b-8f60-f1aa5f89db2f", "name": "Zones successfully deleted", "originalRequest": { "url": { @@ -12330,7 +12330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8c72b69-42da-412b-84de-23a53ef6d20e", + "id": "28f37321-bd4e-4d6c-b53a-b2882f13ab6f", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -12378,7 +12378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b563a12-bf62-4c95-8714-a5912333be8a", + "id": "1cc278ed-3953-4286-8927-6528550a2d95", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -12438,7 +12438,7 @@ "description": "The Woosmap Static Maps API lets you generate customizable, embeddable map images using simple HTTP requests. It’s a lightweight alternative to interactive maps—ideal for emails, reports, or websites where dynamic JavaScript maps aren't needed. \n\nYou provide parameters such as location, zoom level, size, and markers, and the API returns a map image that can be embedded directly into any webpage or application.\n", "item": [ { - "id": "5cfce892-c5c3-4dcc-84b2-3a5e2aed0e5b", + "id": "8b298908-485f-4374-90e9-6e56f719770c", "name": "Get Static Map", "request": { "name": "Get Static Map", @@ -12612,7 +12612,7 @@ }, "response": [ { - "id": "3c4acf4c-a2f0-4fc7-9da7-cc74729b7caa", + "id": "d754e1a8-a234-43f1-8759-1152193d3c18", "name": "Successful Response", "originalRequest": { "url": { @@ -12756,7 +12756,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c430cbc9-4ff2-4002-a80b-7de417f1cc12", + "id": "7063ff95-02bd-4648-8ced-44f22eccb9bd", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -12900,7 +12900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca898af-4c11-455a-a5e2-4c0a36d60b81", + "id": "4877d09c-b184-47e3-b173-66957e362db0", "name": "Out of free quota.", "originalRequest": { "url": { @@ -13044,7 +13044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d423414-b6ca-4d7f-aeef-92a74436dfc0", + "id": "9f87f9db-c7b3-4bc0-81d7-840452349de5", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -13188,7 +13188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1de6738f-5ba5-4f47-a814-ebfd34cfcffd", + "id": "1486524d-f461-4d81-843b-db0c839a44ca", "name": "Validation Error", "originalRequest": { "url": { @@ -13332,7 +13332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87e8a853-1345-45f4-8ae6-0d9cbf6ff0b2", + "id": "7ae2a7de-9b7c-4ce5-ac13-912fda24f940", "name": "Rate limit reached", "originalRequest": { "url": { @@ -13488,7 +13488,7 @@ "description": "Add What3Words capabilities to your address search.", "item": [ { - "id": "190fd203-a9ff-49b8-a01e-c555989dda8f", + "id": "3f9501c0-fcde-4889-a133-24a5ee92a011", "name": "Convert To What 3 Words", "request": { "name": "Convert To What 3 Words", @@ -13563,7 +13563,7 @@ }, "response": [ { - "id": "80cdf9c1-00b0-4d0d-8a41-28afb21d0e20", + "id": "0dfa6c4d-6762-4f26-bb44-6a19fca06873", "name": "Successful Response", "originalRequest": { "url": { @@ -13635,7 +13635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c95174e-2788-47b4-bd5c-72438441d384", + "id": "a7cf6243-1cda-4b91-8d59-83ae92ee1c63", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -13707,7 +13707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fcf058f-a241-461d-bcfd-926a8c66b632", + "id": "25e94c4f-ae8b-4782-8ff2-db98b1560618", "name": "Out of free quota.", "originalRequest": { "url": { @@ -13779,7 +13779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a128fb4e-5115-4278-a539-2815438b42ff", + "id": "a66612cc-b58b-487e-88b0-162d52e41fc6", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -13851,7 +13851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27c94b0a-9b6f-449b-a8a5-b64511c67d6a", + "id": "8b786ca3-935c-4f4f-9db3-1f01838ebdaf", "name": "Validation Error", "originalRequest": { "url": { @@ -13923,7 +13923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cc5619f-19a7-4f67-aecc-02bf507290a0", + "id": "24127b4b-bc88-4ab4-a863-6eb11beb0949", "name": "Rate limit reached", "originalRequest": { "url": { @@ -14001,7 +14001,7 @@ } }, { - "id": "80544f7b-197c-4868-a8f3-834a1ee78f8a", + "id": "33f9a378-5063-4f7a-82f6-420cf4ec379b", "name": "Convert To Address", "request": { "name": "Convert To Address", @@ -14067,7 +14067,7 @@ }, "response": [ { - "id": "f87575d9-677e-414c-8dc1-f4be9fba444b", + "id": "7ee4c346-30e4-4a64-832b-37239de00e63", "name": "Successful Response", "originalRequest": { "url": { @@ -14125,12 +14125,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"types\": [\n \"quarter\",\n \"route\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n {\n \"types\": [\n \"postal_code\",\n \"locality\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"types\": [\n \"town\",\n \"locality\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n {\n \"types\": [\n \"named_place\",\n \"admin_level\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84a6e287-2b2a-4d40-ab9c-289314cd43c4", + "id": "970a0246-74f3-4250-a765-6481b8fd813e", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -14193,7 +14193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e303707-a432-476c-a5cc-098858f2235e", + "id": "0f403261-86d1-4004-84a9-113e4300aa32", "name": "Out of free quota.", "originalRequest": { "url": { @@ -14256,7 +14256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d6b1435-f947-42a9-a044-87e6e49153d4", + "id": "382b26d7-d342-400d-8b04-0cfa8968d381", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -14319,7 +14319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39f3b3ca-5cf6-47a2-9cd8-f6797a64a0ec", + "id": "a05040c9-9fc1-41df-a6b5-328a9af397d5", "name": "Validation Error", "originalRequest": { "url": { @@ -14382,7 +14382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec186527-50f4-4838-b448-2f39fc33c6ad", + "id": "00d9a79c-f9e3-443f-90da-781a879fa061", "name": "Rate limit reached", "originalRequest": { "url": { @@ -14451,7 +14451,7 @@ } }, { - "id": "6119df4f-c043-49ff-8b8c-536b523c31c9", + "id": "8fdcbb1c-7273-4cfc-8860-2e0482a9d50c", "name": "Autosuggest", "request": { "name": "Autosuggest", @@ -14580,7 +14580,7 @@ }, "response": [ { - "id": "c2afe0de-07b5-4a16-a451-0c54adb5ceba", + "id": "33712c3b-98b6-4945-b5ab-eafaa249522b", "name": "Successful Response", "originalRequest": { "url": { @@ -14706,7 +14706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35a3a507-cbd5-4f33-8c62-a959b13e1f5c", + "id": "67588d47-facc-4f8a-a09b-d2768df6d9dd", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -14832,7 +14832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21c8f79e-b11f-49c7-8a4e-d671ce53861b", + "id": "67975a88-c573-4371-86f2-3d90cb165389", "name": "Out of free quota.", "originalRequest": { "url": { @@ -14958,7 +14958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "280808ad-818a-4857-a7ce-08b09521affa", + "id": "165125cf-9c92-4dfe-8bd6-f16f2e07b15a", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -15084,7 +15084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93db7677-8976-4ca4-ae1a-ef97440975c7", + "id": "7373fa81-a9bc-4852-baca-faef584c4626", "name": "Validation Error", "originalRequest": { "url": { @@ -15210,7 +15210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "002ebe2d-f9da-4964-aab7-038b7754c571", + "id": "601e1067-ef89-4d5d-9226-ceddd29e24c2", "name": "Rate limit reached", "originalRequest": { "url": { @@ -15348,7 +15348,7 @@ "description": "The Indoor API suite provides comprehensive tools for indoor mapping, search, and navigation in complex venues.\n\nThe Indoor Map API renders detailed floor plans with customizable styling, while the Indoor Search API enables\nprecise location searching through an intelligent POI engine with autocompletion capabilities.\n\nFor wayfinding, the Indoor Distance API calculates optimal routes between indoor points, delivering polylines\nand turn-by-turn instructions. Advanced features include custom routing profiles for different user types\n(staff, visitors, etc.) and seamless integration with external systems.\n", "item": [ { - "id": "90015df3-0530-4aa3-82a7-db2dbc874788", + "id": "e202a424-082f-490c-99a0-7398caf7b473", "name": "Get Venue By Key", "request": { "name": "Get Venue By Key", @@ -15407,7 +15407,7 @@ }, "response": [ { - "id": "c3e935ad-2758-4643-b3c4-a58d2553dad0", + "id": "233c66b5-2105-4b62-93bf-a4269206134e", "name": "OK", "originalRequest": { "url": { @@ -15453,7 +15453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38903307-12d4-40b9-bf65-6f204e6d7d5f", + "id": "598b4c27-b109-4d2c-850c-743e740210e7", "name": "Unauthorized", "originalRequest": { "url": { @@ -15499,7 +15499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70e72ae6-6980-4ce9-89da-024686bdec1c", + "id": "e9fc1388-5f63-4ec4-bdde-86578401ad68", "name": "Payment Required", "originalRequest": { "url": { @@ -15545,7 +15545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "879ad80b-5954-4c87-bb61-eebb0cd245ce", + "id": "c99afb31-3178-4aae-888f-77bc8ea6ac2b", "name": "Forbidden", "originalRequest": { "url": { @@ -15591,7 +15591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa5fc2a8-7314-4d33-86b0-2eedce2fa1e3", + "id": "126c57ed-19b1-469f-875b-5133e9924de5", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -15632,7 +15632,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", + "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15643,7 +15643,7 @@ } }, { - "id": "e6800718-9cfa-417a-89ff-c4e38b953d0a", + "id": "e64327df-0bc2-4267-b425-64693d9a6ef2", "name": "Get Venues By Key", "request": { "name": "Get Venues By Key", @@ -15667,7 +15667,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "name" + "value": "created_at" } ], "variable": [] @@ -15700,7 +15700,7 @@ }, "response": [ { - "id": "f9df1aa6-854e-4e9f-8659-0c81e996250b", + "id": "8faa4a33-cfcd-4d0d-b196-1e11353d15c7", "name": "OK", "originalRequest": { "url": { @@ -15719,7 +15719,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "name" + "value": "created_at" }, { "description": { @@ -15754,7 +15754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12332053-8b66-4f0a-ae58-01d676214db5", + "id": "bdf5f233-82f4-4d43-a535-98b9be934800", "name": "Unauthorized", "originalRequest": { "url": { @@ -15773,7 +15773,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "name" + "value": "created_at" }, { "description": { @@ -15808,7 +15808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "899bca1b-56d5-4ff9-b23c-f51808f95274", + "id": "b8f1d49e-02f8-4c9f-9300-5c182cdceeb3", "name": "Payment Required", "originalRequest": { "url": { @@ -15827,7 +15827,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "name" + "value": "created_at" }, { "description": { @@ -15862,7 +15862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1962952f-4408-48a9-b773-e2fbc4c2ca79", + "id": "f83d2c8a-dcb5-4929-a7ae-bea17c4b7bb5", "name": "Forbidden", "originalRequest": { "url": { @@ -15881,7 +15881,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "name" + "value": "created_at" }, { "description": { @@ -15916,7 +15916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f28450a1-c6ec-482e-b4db-566aa6f5aca9", + "id": "a7c578cd-00cc-4c6a-b8b3-3ee21371cc75", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -15935,7 +15935,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "name" + "value": "created_at" }, { "description": { @@ -15965,7 +15965,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", + "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15976,7 +15976,7 @@ } }, { - "id": "c5744fe0-ecf8-4167-a218-1a30e82ba120", + "id": "b22ae2ad-042d-494f-b2c7-9ca784a6be2f", "name": "Get Indoor Style", "request": { "name": "Get Indoor Style", @@ -16042,7 +16042,7 @@ }, "response": [ { - "id": "df618d39-7331-4797-9358-2b32220416c5", + "id": "391cea6e-1c9e-4ac3-8fc3-dab3a4fda43a", "name": "OK", "originalRequest": { "url": { @@ -16100,12 +16100,12 @@ "value": "application/json" } ], - "body": "{\n \"ullamcoa\": -99984078.56400768,\n \"inc\": 29041224.38719496\n}", + "body": "{\n \"occaecat_9\": true,\n \"dolore_3b4\": -29662553,\n \"ad_9_5\": -42893810\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de83ca47-0194-43a8-8d92-f2d2192852bd", + "id": "a4312aa9-0ebe-4fff-96a6-d0fa70a4644f", "name": "Unauthorized", "originalRequest": { "url": { @@ -16168,7 +16168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cb7fe63-70fd-4e34-90ad-d47413b55ae0", + "id": "3b219522-d46f-4315-9342-67b98762c88d", "name": "Payment Required", "originalRequest": { "url": { @@ -16231,7 +16231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "789aabbb-4b80-439e-9275-9ce12422b2c0", + "id": "c94d077b-8676-4aa5-9bda-6f962780d10c", "name": "Forbidden", "originalRequest": { "url": { @@ -16294,7 +16294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9e93b0a-17c7-4f8d-bc51-c040b79a3972", + "id": "36be3d56-eead-49c8-9634-2c62f007b950", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -16352,7 +16352,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", + "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16363,7 +16363,7 @@ } }, { - "id": "e046fa4d-1595-447f-b81e-9fd795510e20", + "id": "67ad5c2b-95a7-4a50-a564-f55ce834c2f5", "name": "Distance Matrix", "request": { "name": "Distance Matrix", @@ -16468,7 +16468,7 @@ }, "response": [ { - "id": "6bbad3ff-2735-4a50-8bb3-f92ff20ce489", + "id": "7497a242-149a-4671-9c7b-f27904ab42a4", "name": "OK", "originalRequest": { "url": { @@ -16559,7 +16559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ed8a7d1-29c9-46ee-bbc8-4d81daf933de", + "id": "fb42926b-812c-4ae4-8dec-3483caf313a7", "name": "Bad Request", "originalRequest": { "url": { @@ -16650,7 +16650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "836809d1-c17b-45fb-82b0-846b852b9e69", + "id": "dcd0bb60-96d0-433c-9694-8ec4c84be1c2", "name": "Unauthorized", "originalRequest": { "url": { @@ -16741,7 +16741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f65d3337-5e76-4757-9030-e0d31a7ad512", + "id": "ecb4ce23-5070-4cdc-8e6b-1b8b435a576c", "name": "Payment Required", "originalRequest": { "url": { @@ -16832,7 +16832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54033f13-966a-4df7-b945-6a18e63bbc83", + "id": "ad5bca95-efff-4573-81f4-0a159885c847", "name": "Forbidden", "originalRequest": { "url": { @@ -16923,7 +16923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d75a73ff-73cb-4a56-b084-658db73e5660", + "id": "8ffd372b-c4d7-431f-adcf-f43594b78519", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -17009,7 +17009,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", + "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17020,7 +17020,7 @@ } }, { - "id": "05decd0d-1d01-4498-bc56-d687fc4fdcea", + "id": "22f3b675-6084-412f-aa8f-21bff6cc44b2", "name": "Directions", "request": { "name": "Directions", @@ -17152,7 +17152,7 @@ }, "response": [ { - "id": "a24c8565-241e-4f06-afbb-de376d21edc8", + "id": "27fea5f5-b028-4357-9c05-9c4c00c689be", "name": "OK", "originalRequest": { "url": { @@ -17270,7 +17270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6985229e-e438-4b96-9912-589fd9988edc", + "id": "21ac3572-1366-4e4a-9294-253acc1dc4dd", "name": "Bad Request", "originalRequest": { "url": { @@ -17388,7 +17388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99ea2f7c-5f58-432d-9c08-54a066099b64", + "id": "23ce0192-42f4-4417-90ca-129ec4a7ff5a", "name": "Unauthorized", "originalRequest": { "url": { @@ -17506,7 +17506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f393a107-8930-4c2b-a3ab-09c8c981cc3f", + "id": "844153b5-1adb-4183-b049-1a6879aaf6b9", "name": "Payment Required", "originalRequest": { "url": { @@ -17624,7 +17624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87c7eab5-239c-4c3d-9123-620a39736e20", + "id": "d0a6daff-970d-4235-ad23-fffcf916a7d0", "name": "Forbidden", "originalRequest": { "url": { @@ -17742,7 +17742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57381906-d1dc-4b6e-8bc3-2324b77c26b9", + "id": "77248da5-504f-47f6-b46e-707b243219c4", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -17855,7 +17855,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", + "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17866,7 +17866,7 @@ } }, { - "id": "0eb5700e-b185-4bb4-ad88-5d266ea726b8", + "id": "4ee99928-5f8a-470e-a97f-f9eebcc8b7b5", "name": "Search Venue Pois By Key", "request": { "name": "Search Venue Pois By Key", @@ -18036,7 +18036,7 @@ }, "response": [ { - "id": "acec2e55-0639-45e2-a677-763aedfcba3a", + "id": "a490babe-ad5e-424c-a07a-c5e7cfb126d8", "name": "OK", "originalRequest": { "url": { @@ -18192,7 +18192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3feb5966-afc6-42e6-aead-4b2a8f9f7afb", + "id": "743c0aa1-9d88-4f16-b29e-1fe3580454ea", "name": "Unauthorized", "originalRequest": { "url": { @@ -18348,7 +18348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a20234a-0a5d-4996-b0df-18e11273eee3", + "id": "cc26ae00-7467-4c52-a47f-83ee7808dead", "name": "Payment Required", "originalRequest": { "url": { @@ -18504,7 +18504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ff2c33e-cdbc-4208-a826-0d98525cc21f", + "id": "873758cb-206d-4542-b8a2-61cde77a1d01", "name": "Forbidden", "originalRequest": { "url": { @@ -18660,7 +18660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dba68a7-20e7-4f46-b14d-258029966542", + "id": "898cc8c6-2c4d-4c19-9b8d-da6076c08d22", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -18811,7 +18811,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", + "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18822,7 +18822,7 @@ } }, { - "id": "ff052ce4-6e18-4b0e-bf47-c3db56d5c3f2", + "id": "dbd4384f-64bf-4ff1-a134-1b2fb81e7bb2", "name": "Autocomplete Venue Pois By Key", "request": { "name": "Autocomplete Venue Pois By Key", @@ -18983,7 +18983,7 @@ }, "response": [ { - "id": "4087591f-d629-41a1-9756-5eb460422474", + "id": "e48138e4-6f93-4037-86e0-e2893c758246", "name": "OK", "originalRequest": { "url": { @@ -19130,7 +19130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a45b2ba-a67e-499f-8759-ec8abc96ad09", + "id": "7e668ad1-debd-492c-b0ed-8272fe3a63cc", "name": "Unauthorized", "originalRequest": { "url": { @@ -19277,7 +19277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "683d1370-bae0-40ab-bce9-ccc41d57b6d1", + "id": "af811d8d-7014-443e-82a7-b05fbddea912", "name": "Payment Required", "originalRequest": { "url": { @@ -19424,7 +19424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "795b3578-b28a-4c73-b9ed-75cafacc19c2", + "id": "04b7f050-efb2-4b3d-997a-59eda5b7df11", "name": "Forbidden", "originalRequest": { "url": { @@ -19571,7 +19571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d935ed64-3906-4cfb-8e52-121e91d6e3ab", + "id": "d1a11719-1842-4de0-9db3-05ca8cb4030b", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -19713,7 +19713,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", + "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19724,7 +19724,7 @@ } }, { - "id": "9d9584f7-ebb2-49a3-a5ad-bdf07fdcfb13", + "id": "0a988b4b-9397-471b-8d6e-274df2f353be", "name": "Get Feature By Key", "request": { "name": "Get Feature By Key", @@ -19795,7 +19795,7 @@ }, "response": [ { - "id": "9ec13ec1-f9dd-434b-a37c-cd6b1d517d00", + "id": "f28a8c83-bc19-4e0e-bd2f-d704b284333a", "name": "OK", "originalRequest": { "url": { @@ -19838,12 +19838,12 @@ "value": "application/json" } ], - "body": "{\n \"properties\": {\n \"nostrud29e\": 31283098.483543277,\n \"veniam_411\": 20890938.30283186\n },\n \"geometry\": {\n \"type\": \"\",\n \"coordinates\": \"\",\n \"bbox\": \"\"\n },\n \"id\": \"\",\n \"type\": \"Feature\"\n}", + "body": "{\n \"properties\": {\n \"ut9\": \"aliquip incididunt\",\n \"sunt_\": -49513277.9418356,\n \"consectetur97\": true\n },\n \"geometry\": {\n \"type\": \"\",\n \"coordinates\": \"\",\n \"bbox\": \"\"\n },\n \"id\": \"\",\n \"type\": \"Feature\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d73faf9-2d89-4b2b-9bba-60c8b2de9147", + "id": "45a83488-3db3-49d3-a8bf-495f379f5de4", "name": "Unauthorized", "originalRequest": { "url": { @@ -19891,7 +19891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cb81d3e-b55d-4ce6-8f33-4c2707be53e8", + "id": "53d280e9-0f1c-4278-b84c-fb3f9aa000d4", "name": "Payment Required", "originalRequest": { "url": { @@ -19939,7 +19939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f5a47cb-2eed-4c92-b8bf-d201bc8d66ba", + "id": "ba8d7058-0026-4ac2-9851-7054984285bd", "name": "Forbidden", "originalRequest": { "url": { @@ -19987,7 +19987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e813eebf-90c8-4c8f-ba1e-ec2c4c431958", + "id": "2cee3015-a577-4ce8-9449-9a7fab0b5247", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -20030,7 +20030,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", + "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20041,7 +20041,7 @@ } }, { - "id": "41d26f84-35d3-4e0b-88d7-7eef0be6afdb", + "id": "086969bf-2c7c-4ac1-a25f-f6d5fb82d556", "name": "Tiles By Key", "request": { "name": "Tiles By Key", @@ -20143,7 +20143,7 @@ }, "response": [ { - "id": "da9cbef6-d42a-443d-9af7-8547f5db338b", + "id": "6858df0e-d1d6-4e8f-addd-461100e20830", "name": "OK", "originalRequest": { "url": { @@ -20211,7 +20211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62914e69-97be-4a08-a08c-eecdd35d584f", + "id": "bd815da3-0725-4363-a3b9-7dbc4fc4b170", "name": "Unauthorized", "originalRequest": { "url": { @@ -20279,7 +20279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93f795cf-4a32-46ed-a705-ecac2e8adaf9", + "id": "f66ec3ba-fcb2-4e44-a94e-76f46cab4841", "name": "Payment Required", "originalRequest": { "url": { @@ -20347,7 +20347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24506997-e3f6-49fa-85f4-11cf5cbbca02", + "id": "6a2a9547-99d2-4d44-aa47-d76c7758172e", "name": "Forbidden", "originalRequest": { "url": { @@ -20415,7 +20415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac4f6642-95b0-48bc-9ef0-560f21a4b082", + "id": "5db13f31-1d70-422c-8ef4-eeb8680da14f", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -20478,7 +20478,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"magna_5\": -96482640.78555386,\n \"aliquip_7c0\": -93863236.51035444\n },\n {\n \"in__1\": 56726911.50766802,\n \"quis__d4\": 7517441.83647953\n }\n ],\n \"context\": {\n \"reprehenderit76_\": true,\n \"in_4\": true,\n \"velit50\": 26539212\n }\n}", + "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20495,7 +20495,7 @@ "description": "The Transit API delivers comprehensive public transportation routing information by calculating optimal travel paths between \norigins and destinations. It provides detailed route data including distance, duration, polyline visualization, \nand complete step-by-step transit instructions with transfer points and transportation modes. The API is ideal for \napplications requiring accurate public transit navigation and trip planning capabilities.\n", "item": [ { - "id": "66db93dc-18d1-4f58-a5e9-42320421fb49", + "id": "c27179eb-f96d-4531-8c4c-b7aacaf25beb", "name": "Transit Route", "request": { "name": "Transit Route", @@ -20588,7 +20588,7 @@ }, "response": [ { - "id": "56589e07-ece6-4be2-810e-95052ee451e5", + "id": "8821893b-1ec5-4552-b70a-d0cf0b06c2d8", "name": "Successful Response", "originalRequest": { "url": { @@ -20678,7 +20678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b3e03f5-4fec-451a-bb71-245949483f28", + "id": "261fdc6c-d3c0-4f18-931c-db1f985f6583", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -20768,7 +20768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "655742c6-dfc8-4f02-b583-847b806d6ba8", + "id": "6af0e352-2a0e-45b8-8f95-b50ae526673c", "name": "Out of free quota.", "originalRequest": { "url": { @@ -20858,7 +20858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51faef38-1a56-4a32-89dd-78356d90eac2", + "id": "76cde9d4-14b8-49aa-bad7-dfad51d5f65f", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -20948,7 +20948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9abe3132-cd99-4c90-8cd9-c47bb69232b4", + "id": "98572c2e-2826-4143-ab08-7a28ce1b2399", "name": "Validation Error", "originalRequest": { "url": { @@ -21038,7 +21038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40939d3f-477e-4f6e-aa1c-6cc9a9ab67c8", + "id": "09d9e3d1-7050-44e4-a520-359b6f460f88", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21140,7 +21140,7 @@ "description": "The Datasets API enables you to store, manage, and analyze geospatial data collections. Work with custom datasets containing points, lines, or polygons - with each feature defined by its geometry and properties.\n\n* Create and manage datasets from uploaded Shapefile data\n* Import data from external sources via URL or scheduled updates\n* Monitor dataset status and processing through detailed status reports\n* Schedule dataset deletion for proper data lifecycle management\n* Leverage high accuracy storage for location-dependent business processes\n\nIdeal for applications that require precise location analysis, spatial queries and geographic data management.\n", "item": [ { - "id": "65d5a4e0-375e-4f8e-bd35-8688434e563c", + "id": "51a80ec6-e345-4e90-be80-c78492480c7c", "name": "Get Dataset", "request": { "name": "Get Dataset", @@ -21198,7 +21198,7 @@ }, "response": [ { - "id": "d1a08821-5364-4e8c-b1a7-b8b791f548cd", + "id": "ace7effe-f4a9-4d4d-ad20-e67a996fc395", "name": "Successful Response", "originalRequest": { "url": { @@ -21243,7 +21243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e7f6fc4-3b42-4bd5-a02b-3e0001bdf2e5", + "id": "44dcfb50-43fe-457a-9168-60804eff747d", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -21288,7 +21288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "700a684f-2a58-4889-8eea-40cae776cd3a", + "id": "47cb7900-5cc9-4cf0-8a22-0db0dbb9cac6", "name": "Out of free quota.", "originalRequest": { "url": { @@ -21333,7 +21333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15c5480f-f1d0-4c10-878a-7dcf97d678be", + "id": "de6e973f-bca2-4686-b7c4-f513cc8ce0d3", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -21378,7 +21378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5e60bfc-9e96-4e07-8765-eeadef0eff91", + "id": "38a4ca86-a6ee-42ae-8ced-5d7db06f6a9e", "name": "Dataset was not found", "originalRequest": { "url": { @@ -21423,7 +21423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb3a07ee-7245-45d8-b4f6-b65195857367", + "id": "a6967fc1-a1c0-41c0-9224-80e68cb5cd43", "name": "Validation Error", "originalRequest": { "url": { @@ -21468,7 +21468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3932b57-67d1-4a08-90ff-03283c0a09f5", + "id": "e5282cd4-d890-4d0b-a5b8-6f4d91f5d20c", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21519,7 +21519,7 @@ } }, { - "id": "dee1a4ad-0558-4b90-b31f-94ab5e0923f1", + "id": "a86149ca-20b3-4166-9e96-b5b6c1bd4d8b", "name": "Delete Dataset", "request": { "name": "Delete Dataset", @@ -21577,7 +21577,7 @@ }, "response": [ { - "id": "1650c766-e521-41da-82c8-1ad0a71e3854", + "id": "cb9269c0-0747-47fd-877a-37a178f71b98", "name": "Successful Response", "originalRequest": { "url": { @@ -21617,12 +21617,12 @@ "value": "application/json" } ], - "body": "{\n \"culpa_d22\": \"Lorem\"\n}", + "body": "{\n \"elit8a5\": false,\n \"dolor_af\": false\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "adb160d6-ae28-431b-aec7-861067dd9dd0", + "id": "a044b214-e9fa-4cd8-b760-152fb9afcc64", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -21667,7 +21667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "717ad976-9627-4d06-b20b-f6addc5a8ee6", + "id": "73ea8200-fc11-4bf7-b800-f8b1d82b51eb", "name": "Out of free quota.", "originalRequest": { "url": { @@ -21712,7 +21712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1a07f08-e469-45c0-aed4-52fadd1b75ed", + "id": "052322cc-4979-4d57-82cb-b85dcc98bae8", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -21757,7 +21757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4d8c7d1-892b-4291-8965-213eeef6de9a", + "id": "6c3889ab-419c-4195-91d1-e82b7e94c033", "name": "Dataset was not found", "originalRequest": { "url": { @@ -21802,7 +21802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf23f6eb-ce61-437d-b73e-85de9f333668", + "id": "bddb5a0a-05f1-427a-886a-acca3547267c", "name": "The Dataset was already scheduled for deletion.", "originalRequest": { "url": { @@ -21847,7 +21847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0bf3371-a3fa-4937-8537-45fc19aed365", + "id": "861b6891-e18c-417f-8544-19f1ee4d97d2", "name": "Validation Error", "originalRequest": { "url": { @@ -21892,7 +21892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e8cb8a5-fc71-4bac-be06-698a5aef7c9f", + "id": "a7b4a00d-f4db-4e74-8ed0-0dc017839eef", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21943,7 +21943,7 @@ } }, { - "id": "c6c864d3-e654-4cd9-83bb-828911c79b77", + "id": "63dd34d5-7a1b-4d41-8555-9cb56390e9d2", "name": "Update Dataset", "request": { "name": "Update Dataset", @@ -22014,7 +22014,7 @@ }, "response": [ { - "id": "3eb3a8fb-c7cb-471b-abaf-3cb72253345e", + "id": "b6437f96-4815-45bd-970c-0fae32e719be", "name": "Successful Response", "originalRequest": { "url": { @@ -22072,7 +22072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab0c94cc-48d7-480e-b8ac-3a3cec7e9f32", + "id": "f12e2d62-221f-4c8a-9fd8-0ebbb6f057ed", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -22130,7 +22130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f81b8dd1-8446-49ab-ba43-8c4ca99f1884", + "id": "84116432-fae2-4fc3-b5ae-d218031c1b6a", "name": "Out of free quota.", "originalRequest": { "url": { @@ -22188,7 +22188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe8b5db5-5974-4ae8-a4f3-127f14c934b9", + "id": "31a680d4-187c-4b1e-bda6-62403e2c77ee", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -22246,7 +22246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e3f96a2-a9bd-4ede-9800-c47ba3a05863", + "id": "f257a931-0037-4506-97a6-29413b03a814", "name": "Dataset was not found", "originalRequest": { "url": { @@ -22304,7 +22304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ca9115b-e61c-4a48-9919-ad74b9c6cf74", + "id": "deac6775-6fbe-45c9-8f0a-c360168622eb", "name": "Validation Error", "originalRequest": { "url": { @@ -22362,7 +22362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4695eafc-6982-4cb1-ad90-d29ba59e2a95", + "id": "f280e8cb-21e8-4e07-81c0-7cc43431c91b", "name": "Rate limit reached", "originalRequest": { "url": { @@ -22426,7 +22426,7 @@ } }, { - "id": "1be2fece-047c-45ff-a1af-0b2ef66f28b5", + "id": "74f763fc-8de7-46b3-91a9-68092291d173", "name": "List Datasets", "request": { "name": "List Datasets", @@ -22492,7 +22492,7 @@ }, "response": [ { - "id": "d0909aa6-2992-4c63-9387-7c7fb2073026", + "id": "5658b49a-a363-4b49-81ef-f092ff888eb3", "name": "Successful Response", "originalRequest": { "url": { @@ -22555,7 +22555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5144fa94-6611-416a-8a62-baa3e523b81c", + "id": "3f6d195f-97f1-46eb-97cb-cdeaf1b09256", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -22618,7 +22618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18acbf89-c88e-41e2-b6f8-ca1cc343af54", + "id": "175d3343-0015-4590-999a-d1d24230075d", "name": "Out of free quota.", "originalRequest": { "url": { @@ -22681,7 +22681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4716b185-1a87-4a31-9abe-0224da2628d1", + "id": "749191e2-cc58-476d-9979-1957431404a0", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -22744,7 +22744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf2f6ab6-fdd9-4909-889a-6a0ba93a7e83", + "id": "c56617ea-3cb6-4de3-a965-19a1a3906612", "name": "Validation Error", "originalRequest": { "url": { @@ -22807,7 +22807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13aed63f-bc13-4541-8a9a-da64de0e73a1", + "id": "644ac419-59d3-400b-9817-be91b873bce6", "name": "Rate limit reached", "originalRequest": { "url": { @@ -22876,7 +22876,7 @@ } }, { - "id": "aaf9874d-a4be-48f4-9898-7b5900e6e69c", + "id": "d7cc62b7-0878-44cf-990f-46a7cdea3b88", "name": "Create Dataset", "request": { "name": "Create Dataset", @@ -22936,7 +22936,7 @@ }, "response": [ { - "id": "22105939-9467-465b-b14a-04f2c3c86a33", + "id": "c863b7c0-be89-40bb-89e1-de6194d8148a", "name": "Successful Response", "originalRequest": { "url": { @@ -22994,7 +22994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6d54107-351e-4cc1-917a-b18fa39baa7a", + "id": "04bd6825-fc3b-4f28-b74a-8215e61c0eb9", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23052,7 +23052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33b33bff-ed5f-45a5-a4b3-ebbf0c4ba0f5", + "id": "1c566b8a-dd58-46e7-8f4e-a4eefa2490ea", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23110,7 +23110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c31438d-9530-4d9e-a775-2aa924de90ec", + "id": "0bae7085-915d-40c9-a917-0b4d7ac4bbf4", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23168,7 +23168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9932e48f-b604-4eb0-bb86-d9a9a2702398", + "id": "42f0014e-f9df-402c-9efc-7dbfbd82ea06", "name": "Validation Error", "originalRequest": { "url": { @@ -23226,7 +23226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c27485ec-aed9-45f9-81b1-e63ed704d4f4", + "id": "33debf13-b638-428c-af70-4393d32d136c", "name": "Rate limit reached", "originalRequest": { "url": { @@ -23290,7 +23290,7 @@ } }, { - "id": "ae200ec7-3dac-4a6a-81dc-31a91d074dd5", + "id": "037979fe-4f09-43e5-89c4-032d85313425", "name": "Get Dataset Status", "request": { "name": "Get Dataset Status", @@ -23349,7 +23349,7 @@ }, "response": [ { - "id": "1f679ad3-c5c6-4650-b0cc-b1f63a1da6e5", + "id": "1c2ced27-564b-4d5d-bddb-69e8308a5ae0", "name": "Successful Response", "originalRequest": { "url": { @@ -23390,12 +23390,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"steps\": [\n {\n \"name\": \"fetch\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n }\n ],\n \"status\": \"failed\"\n },\n {\n \"name\": \"fetch\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n }\n ],\n \"status\": \"success\"\n }\n ],\n \"status\": \"in_progress\"\n}", + "body": "{\n \"id\": \"\",\n \"steps\": [\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"info\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n }\n ],\n \"status\": \"failed\"\n },\n {\n \"name\": \"fetch\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n }\n ],\n \"status\": \"success\"\n }\n ],\n \"status\": \"success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a6e3ebd-a415-40c0-bdbb-f3145324563c", + "id": "101e0183-77b8-4b34-afba-d83a4afd179d", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23441,7 +23441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3cb6394-df90-4675-9903-2a76641baf38", + "id": "105d1451-fd34-4f13-baf0-3241b1fae99e", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23487,7 +23487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dce60fbe-4bde-4cf7-b80c-0f51509b462e", + "id": "078a6407-f7a0-4292-908c-f8da42cfa757", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23533,7 +23533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95b7e465-ed2f-4b99-a50c-e652a1cf5e0d", + "id": "b388aedd-ce0d-4618-8d8f-205eb4e5f0cc", "name": "Dataset was not found", "originalRequest": { "url": { @@ -23579,7 +23579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9f90671-f812-44bf-9ad5-7692d3b73255", + "id": "a09e74d7-391e-43b1-93bd-9e37b9ec69b2", "name": "Validation Error", "originalRequest": { "url": { @@ -23625,7 +23625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b649b836-2fa3-4450-be81-03bd9e11d246", + "id": "d5c2b39f-8d17-48bc-8ff4-b1c47976b7a9", "name": "Rate limit reached", "originalRequest": { "url": { @@ -23677,7 +23677,7 @@ } }, { - "id": "02c8315c-a969-4cdb-aba3-60ee69602aef", + "id": "02731512-7758-4307-b8e4-22a8377fdd88", "name": "Trigger Import", "request": { "name": "Trigger Import", @@ -23736,7 +23736,7 @@ }, "response": [ { - "id": "b3413eff-27e9-4f69-83ca-f51a6cdb33fb", + "id": "0a1d8b71-87c4-496e-9f96-47e6f88dd9ca", "name": "Successful Response", "originalRequest": { "url": { @@ -23782,7 +23782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84db5629-b4e6-4e54-b0a4-8084f837c86e", + "id": "808b5563-fc06-47ab-a9ec-ad86a724cd00", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23828,7 +23828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c24f59b9-9986-4cd9-b0cd-60b0c61489c6", + "id": "dae8299c-cdc7-4506-9604-cea0e4b77252", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23874,7 +23874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ef6ac9c-cd9b-43bc-a83e-4e3fdffbd66c", + "id": "4c6c2ccc-f2b2-4c09-b518-7bc50b37bbbf", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23920,7 +23920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "530badfb-b31a-4118-a528-ff499a3e3029", + "id": "682c066a-22a1-45b2-a661-e436389af61c", "name": "Dataset was not found", "originalRequest": { "url": { @@ -23966,7 +23966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cceae322-fa38-4c27-8b73-eafce3da50f8", + "id": "1f462a0e-74d4-45c7-a193-31f8e1fd2380", "name": "Validation Error", "originalRequest": { "url": { @@ -24012,7 +24012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58ed5c53-f84f-43b3-b775-37f1bcb26c13", + "id": "e6b5751f-2d64-4653-991b-7b6160b54a5d", "name": "Rate limit reached", "originalRequest": { "url": { @@ -24064,7 +24064,7 @@ } }, { - "id": "c970faff-6aef-4223-9958-1a56af1a1544", + "id": "3f23ac43-15b8-4880-9de0-97417391f716", "name": "Reimport Dataset Webhook", "request": { "name": "Reimport Dataset Webhook", @@ -24108,7 +24108,7 @@ }, "response": [ { - "id": "7bf8ba58-caa6-44d8-a7ce-425d22da1ff2", + "id": "e49048ee-ebb4-45a7-959b-01ed392193b7", "name": "Successful Response", "originalRequest": { "url": { @@ -24146,7 +24146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07ad8b78-6150-4872-ba70-b414490f82cf", + "id": "2a567814-907b-4630-b4ab-4b06cea9b865", "name": "Unauthorized", "originalRequest": { "url": { @@ -24172,7 +24172,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2ffeca0d-2b75-4437-aa9d-1d02955c4c6a", + "id": "f7d557ec-89a1-4f5a-9692-a6a06279b22b", "name": "Payment Required", "originalRequest": { "url": { @@ -24198,7 +24198,7 @@ "_postman_previewlanguage": "text" }, { - "id": "51c7602d-a383-4994-9ea7-10f045777cd8", + "id": "bf1032db-93b0-498d-82e5-9d0cc50b3e74", "name": "Forbidden", "originalRequest": { "url": { @@ -24224,7 +24224,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9839899e-d8b7-4ac6-9a81-c006adf3d4e9", + "id": "b6d573fe-c637-4201-8a90-9b4f27aefb6c", "name": "Dataset was not found", "originalRequest": { "url": { @@ -24262,7 +24262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1a97648-62ae-495e-a174-291915db28f6", + "id": "82de3364-fbde-434f-8b70-69c36be05240", "name": "Validation Error", "originalRequest": { "url": { @@ -24300,7 +24300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8cf8c4a-9f03-40d5-9f91-d0aff1c22c1b", + "id": "3283841b-82c1-4760-acf8-5dcfda788d71", "name": "Rate limit reached", "originalRequest": { "url": { @@ -24350,7 +24350,7 @@ "description": "Perform powerful spatial analysis on your geospatial data with four key search capabilities:\n\n* Nearby search: Find features within a specified distance from a location\n* Contains search: Discover which features completely contain a point or geometry\n* Intersects search: Identify features that intersect with a given geometry\n* Within search: Locate features that fall entirely inside a specified boundary\n\nAll operations support attribute filtering with WHERE clauses, pagination for large results, and multiple geometry formats (GeoJSON, WKB, encoded polylines).\n", "item": [ { - "id": "980864fc-3b7f-47f5-9364-76f82663241f", + "id": "9b7d1b14-e660-4dfa-8c87-1ffac08bc1bb", "name": "Search Features", "request": { "name": "Search Features", @@ -24452,7 +24452,7 @@ }, "response": [ { - "id": "5efb0f7f-a4a8-4b16-8a1c-e1f6df4aa65f", + "id": "0dc3549d-95c3-4bd5-bfb0-29a66b37bdcb", "name": "Successful Response", "originalRequest": { "url": { @@ -24535,12 +24535,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ine4\": true,\n \"fugiat_9\": -65326064.60477703,\n \"pariatur40\": -72591386.71769159,\n \"cupidatatf5\": -90052761.60302022\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"esse_1\": \"sint ut in\",\n \"ipsum_fad\": -58778101.651108816,\n \"qui7cf\": -3697575.31035088\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"do74\": 32202358.778785944,\n \"sit_1_d\": true,\n \"officia_87\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"voluptate7ca\": -66427598.60904533,\n \"sedd\": true,\n \"laboref1b\": \"in anim Ut adipisicing\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "787242e3-4a45-421d-ae45-45db7fc5ba44", + "id": "4fa3ce0e-3042-4587-af58-159caa9a0a78", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -24628,7 +24628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2a7c705-aa37-4f74-9879-47f8c6cb9d53", + "id": "d0e3a131-a085-418d-a64b-bb78c54cebcd", "name": "Out of free quota.", "originalRequest": { "url": { @@ -24716,7 +24716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f9cbd13-b8a6-4dc9-ac2e-8dd5dc97f507", + "id": "e20803d9-52d7-41f3-8d60-452f272c4f4f", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -24804,7 +24804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87f94e4f-5fab-4817-a070-30b6eab1970b", + "id": "8c40497c-bddd-48bb-a588-8ecea5faf76b", "name": "Dataset was not found", "originalRequest": { "url": { @@ -24892,7 +24892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bc0741a-04c5-49ab-9cae-952c5f0719bf", + "id": "96e923ad-c196-459b-921b-eca8b9375737", "name": "Validation Error", "originalRequest": { "url": { @@ -24980,7 +24980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2be411b4-96b5-4a76-b36d-358483691191", + "id": "1d99b8dd-7910-498b-a5b7-07bddd40ca35", "name": "Rate limit reached", "originalRequest": { "url": { @@ -25074,7 +25074,7 @@ } }, { - "id": "9736444a-78ad-463a-9040-d807eddb67bc", + "id": "1631dfce-75e5-4d4d-9d0f-d3de8c3caed4", "name": "Nearby Features", "request": { "name": "Nearby Features", @@ -25176,7 +25176,7 @@ }, "response": [ { - "id": "3adec5a7-ee31-4e3d-8837-8284ae1281ff", + "id": "848d4ba2-f3f9-4dba-8dc6-6f6951588a54", "name": "Successful Response", "originalRequest": { "url": { @@ -25259,12 +25259,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ine4\": true,\n \"fugiat_9\": -65326064.60477703,\n \"pariatur40\": -72591386.71769159,\n \"cupidatatf5\": -90052761.60302022\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"esse_1\": \"sint ut in\",\n \"ipsum_fad\": -58778101.651108816,\n \"qui7cf\": -3697575.31035088\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"do74\": 32202358.778785944,\n \"sit_1_d\": true,\n \"officia_87\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"voluptate7ca\": -66427598.60904533,\n \"sedd\": true,\n \"laboref1b\": \"in anim Ut adipisicing\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c1c25744-dfe0-4db7-9794-7f5b94b70c56", + "id": "6a5db3c9-165f-4cae-9180-938c62a64d00", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -25352,7 +25352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7546b31a-32f9-4dc4-be83-9825a0814bb6", + "id": "ef9527c3-11da-4924-94ad-478fabfca778", "name": "Out of free quota.", "originalRequest": { "url": { @@ -25440,7 +25440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "539f383a-f3ab-46c2-ab47-9e98a0155ac6", + "id": "6f6a5b98-0c37-42c3-b895-2506baddec7d", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -25528,7 +25528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f97d071a-6a55-45ad-9e43-b5acdecaa1e8", + "id": "9877154d-c812-45bb-a454-0ba2479ab2fb", "name": "Dataset was not found", "originalRequest": { "url": { @@ -25616,7 +25616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a09e208-2549-4e15-a542-c720185eba26", + "id": "d5f0fdfb-d0c9-4045-ab34-3e70a6685876", "name": "Validation Error", "originalRequest": { "url": { @@ -25704,7 +25704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "551cbdb0-dafe-464e-b3f6-36c947db636c", + "id": "e60adbd2-265d-482a-b586-ff5157b544f7", "name": "Rate limit reached", "originalRequest": { "url": { @@ -25798,7 +25798,7 @@ } }, { - "id": "0876bfea-8e47-4619-95e2-6c12d6676a10", + "id": "63f28aeb-67d0-4ce0-8360-bbb2f93717f0", "name": "Intersect Features", "request": { "name": "Intersect Features", @@ -25900,7 +25900,7 @@ }, "response": [ { - "id": "1a89fc3d-4633-41f4-8403-6d769146fcb7", + "id": "d3ff2a0f-c686-4aaf-b714-a37afe43a2d6", "name": "Successful Response", "originalRequest": { "url": { @@ -25983,12 +25983,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ine4\": true,\n \"fugiat_9\": -65326064.60477703,\n \"pariatur40\": -72591386.71769159,\n \"cupidatatf5\": -90052761.60302022\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"esse_1\": \"sint ut in\",\n \"ipsum_fad\": -58778101.651108816,\n \"qui7cf\": -3697575.31035088\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"do74\": 32202358.778785944,\n \"sit_1_d\": true,\n \"officia_87\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"voluptate7ca\": -66427598.60904533,\n \"sedd\": true,\n \"laboref1b\": \"in anim Ut adipisicing\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "21327e7b-bc1b-48b2-8267-2399e9aa55cb", + "id": "4d807c89-379b-4b15-b557-05dfa04d7e14", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -26076,7 +26076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f541657-ac64-4965-ba9f-1f4da8cad001", + "id": "be2fdca1-68e7-49d9-87b0-b3ed53e1ee91", "name": "Out of free quota.", "originalRequest": { "url": { @@ -26164,7 +26164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f167b3c-45aa-4979-a4b9-5b1599ed74a5", + "id": "f09f2454-f1d8-4ab8-bf85-4a378ef9d678", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -26252,7 +26252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2816a3fc-0f54-4495-be0a-a1f1acc81e1e", + "id": "51921bd5-6428-4f6a-899f-2a22c3293bc9", "name": "Dataset was not found", "originalRequest": { "url": { @@ -26340,7 +26340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bac80de2-52db-4f14-95b4-1741c615fcbb", + "id": "aad1ff72-f9c7-4a61-a2bb-70aca0cbdf45", "name": "Validation Error", "originalRequest": { "url": { @@ -26428,7 +26428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "989b7cf4-2403-407f-ab3f-d5ecc94c6046", + "id": "b1958c02-0bd6-484f-b72a-143a79c7bfac", "name": "Rate limit reached", "originalRequest": { "url": { @@ -26522,7 +26522,7 @@ } }, { - "id": "17f8bebc-daf4-416e-8bed-8e7d6781c873", + "id": "2c378b50-a492-4d7d-b1f5-7e2fbb3422cd", "name": "Contains Features", "request": { "name": "Contains Features", @@ -26624,7 +26624,7 @@ }, "response": [ { - "id": "b2741fc1-b150-4dce-884d-215a097d504f", + "id": "0e840563-fa4e-4260-956a-4659fba97404", "name": "Successful Response", "originalRequest": { "url": { @@ -26707,12 +26707,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ine4\": true,\n \"fugiat_9\": -65326064.60477703,\n \"pariatur40\": -72591386.71769159,\n \"cupidatatf5\": -90052761.60302022\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"esse_1\": \"sint ut in\",\n \"ipsum_fad\": -58778101.651108816,\n \"qui7cf\": -3697575.31035088\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"do74\": 32202358.778785944,\n \"sit_1_d\": true,\n \"officia_87\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"voluptate7ca\": -66427598.60904533,\n \"sedd\": true,\n \"laboref1b\": \"in anim Ut adipisicing\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c278584c-0eb2-4caf-9316-f66dfa5b186c", + "id": "3bfd06f3-d33b-4ed9-bf95-a1974bdf1a5d", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -26800,7 +26800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ccfd468-f6ad-4200-9dd3-39d1bf680573", + "id": "d27efb65-13bb-4585-8eca-d21afba5188b", "name": "Out of free quota.", "originalRequest": { "url": { @@ -26888,7 +26888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5441d82b-9999-4607-8a4d-124edb9c78b6", + "id": "0faf7d8c-96d9-4756-903f-54508c952a03", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -26976,7 +26976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31a7edb8-fcec-46bd-8c6c-408ded1cbd3f", + "id": "8b632759-a899-47f4-8dad-b9bb9e01d2dc", "name": "Dataset was not found", "originalRequest": { "url": { @@ -27064,7 +27064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad43f411-44de-4225-a2a7-841257dbd0df", + "id": "e056c494-9e33-4914-ba35-f3319fec6f00", "name": "Validation Error", "originalRequest": { "url": { @@ -27152,7 +27152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c81921e-3c7f-4f7a-b38b-82b3a0a66b6b", + "id": "759c92bf-fecc-45a3-a9d6-66053e252e7b", "name": "Rate limit reached", "originalRequest": { "url": { @@ -27246,7 +27246,7 @@ } }, { - "id": "253f9a20-d558-4a36-82e4-b4873007d8fd", + "id": "d64c7e72-ad92-4ae1-aa11-c40c33d955f9", "name": "Within Features", "request": { "name": "Within Features", @@ -27348,7 +27348,7 @@ }, "response": [ { - "id": "817a4a6b-7363-4d47-92a2-42dd25ac0798", + "id": "f09f2890-4ce2-4600-9762-7b4ab33a04e7", "name": "Successful Response", "originalRequest": { "url": { @@ -27431,12 +27431,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ine4\": true,\n \"fugiat_9\": -65326064.60477703,\n \"pariatur40\": -72591386.71769159,\n \"cupidatatf5\": -90052761.60302022\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"esse_1\": \"sint ut in\",\n \"ipsum_fad\": -58778101.651108816,\n \"qui7cf\": -3697575.31035088\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"do74\": 32202358.778785944,\n \"sit_1_d\": true,\n \"officia_87\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"voluptate7ca\": -66427598.60904533,\n \"sedd\": true,\n \"laboref1b\": \"in anim Ut adipisicing\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c14604e-1cea-43b4-a546-e5ae588514b3", + "id": "bd12de8f-101f-4b08-b9f5-6c415e96de14", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -27524,7 +27524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ccaf242-e1fc-4c91-b741-355f86c9894d", + "id": "2d3943c6-5ec6-4868-9134-ff130d52be8f", "name": "Out of free quota.", "originalRequest": { "url": { @@ -27612,7 +27612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d763d43-f711-4e29-81ce-91d34cc88813", + "id": "8fd01d6f-b342-49ec-a12d-8692fed6695d", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -27700,7 +27700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "202fcef8-0a42-42d6-b998-9667dc8930fe", + "id": "5d46536c-510a-4b2b-b714-e30528bc3e63", "name": "Dataset was not found", "originalRequest": { "url": { @@ -27788,7 +27788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "087d5d9a-0a02-4188-b4da-dba7a20fafe7", + "id": "a8d9ff92-1c66-4379-9bb1-5069e5af0354", "name": "Validation Error", "originalRequest": { "url": { @@ -27876,7 +27876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dd7baa4-a6e2-4410-89cc-6d7605d4e922", + "id": "b049a5dc-abd4-49a4-8dce-7242bde85683", "name": "Rate limit reached", "originalRequest": { "url": { @@ -27976,7 +27976,7 @@ "description": "Access and retrieve individual geographic features from your datasets by their unique ID. This endpoint provides direct access to the complete geometry and properties of specific features within your datasets.\n\nThe API supports field masking to optimize response size by retrieving only needed attributes. Output formats include both GeoJSON and WKB, allowing flexible integration with various mapping and analysis systems.\n", "item": [ { - "id": "698db405-c498-405d-8b91-ae5820334e76", + "id": "9b05d90e-6f14-4168-b24c-5e079c813738", "name": "Get Feature", "request": { "name": "Get Feature", @@ -28065,7 +28065,7 @@ }, "response": [ { - "id": "b5350fff-aff9-4ff6-b1ed-f84a07e7c105", + "id": "57b5d877-4361-4977-b97b-032de7506554", "name": "Successful Response", "originalRequest": { "url": { @@ -28125,12 +28125,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"Excepteur0b\": 7156268\n }\n}", + "body": "{\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"tempor6_e\": \"ex e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "59d24dbd-b1bf-4e1c-a4d0-c2c58fb2a7d9", + "id": "90f27a50-8cb7-497a-a011-723ff11e0d83", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -28195,7 +28195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3a124b1-e4b8-41cf-9117-67e8d5831869", + "id": "e51900ac-9a67-4a0e-8df6-f3b3a3e6dee6", "name": "Out of free quota.", "originalRequest": { "url": { @@ -28260,7 +28260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba6976b1-99d8-4d24-a9dc-7e7d484bd5be", + "id": "116867af-21ab-406a-a577-23bc5d8140ee", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -28325,7 +28325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48ea89be-5617-4dd6-9eed-606c59951b37", + "id": "97cc6224-df2d-44b7-b2c0-56e7e1698ba2", "name": "Feature or Dataset were not found", "originalRequest": { "url": { @@ -28390,7 +28390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "244c58af-579b-43cf-becd-b4e16a272806", + "id": "0d583190-ca43-4a47-bcf6-d50c04f6aa70", "name": "Validation Error", "originalRequest": { "url": { @@ -28455,7 +28455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21f676d5-934b-4b83-9c0e-0ba728cbd2d6", + "id": "050ddc6e-494c-4e9c-8e9e-b030355874e5", "name": "Rate limit reached", "originalRequest": { "url": { @@ -28540,7 +28540,7 @@ } ], "info": { - "_postman_id": "3129b1cc-84df-4351-94ee-824a21b85e7b", + "_postman_id": "fdbc8693-e9f1-4a50-a94b-e51e9e4c031c", "name": "Woosmap Platform API Reference", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { From 6fc1d7ba42e3ffa9b9cc48f4de2f0e6d270f0d85 Mon Sep 17 00:00:00 2001 From: christopher dartnell Date: Tue, 28 Oct 2025 18:13:21 +0100 Subject: [PATCH 6/9] fix: poi alias examples --- specification/schemas/LocalitiesTypesPoiAlias.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/specification/schemas/LocalitiesTypesPoiAlias.yml b/specification/schemas/LocalitiesTypesPoiAlias.yml index 4648ac8b..35d0390f 100644 --- a/specification/schemas/LocalitiesTypesPoiAlias.yml +++ b/specification/schemas/LocalitiesTypesPoiAlias.yml @@ -4,8 +4,7 @@ description: > Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` → `transit.station.airport` - - `train_station` → `transit.station.rail` - - `shopping` → `business` + - `train_station` → `transit.station.rail.train` This ensures consistency and alignment with the updated schema. enum: From 15f17e6da2458bd69e505d6dc7f7cf8e1cba03ef Mon Sep 17 00:00:00 2001 From: gaelsimon Date: Tue, 28 Oct 2025 17:16:28 +0000 Subject: [PATCH 7/9] chore: update dist folder [skip ci] --- ...p_http_schema_localitiestypespoialias.html | 3 +- ...map_http_schema_localitiestypespoialias.md | 3 +- dist/merged-woosmap-openapi3.json | 2 +- dist/woosmap-openapi3.json | 2 +- dist/woosmap-openapi3.yml | 3 +- dist/woosmap-postman.json | 926 +++++++++--------- 6 files changed, 468 insertions(+), 471 deletions(-) diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html index 3402c157..68a06b60 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html +++ b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.html @@ -10,8 +10,7 @@

    • airporttransit.station.airport
    • -
    • train_stationtransit.station.rail
    • -
    • shoppingbusiness
    • +
    • train_stationtransit.station.rail.train

    This ensures consistency and alignment with the updated schema.

    diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.md b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.md index 4752986c..fdd347f0 100644 --- a/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.md +++ b/dist/documentation/schemas/woosmap_http_schema_localitiestypespoialias.md @@ -5,8 +5,7 @@ Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` → `transit.station.airport` -- `train_station` → `transit.station.rail` -- `shopping` → `business` +- `train_station` → `transit.station.rail.train` This ensures consistency and alignment with the updated schema. diff --git a/dist/merged-woosmap-openapi3.json b/dist/merged-woosmap-openapi3.json index ee7e5e3e..79839219 100755 --- a/dist/merged-woosmap-openapi3.json +++ b/dist/merged-woosmap-openapi3.json @@ -13746,7 +13746,7 @@ "Woosmap_Platform_API_Reference_LocalitiesTypesPoiAlias": { "title": "LocalitiesTypesPoiAlias", "type": "string", - "description": "Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example:\n - `airport` → `transit.station.airport`\n - `train_station` → `transit.station.rail`\n - `shopping` → `business`\n\nThis ensures consistency and alignment with the updated schema.\n", + "description": "Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example:\n - `airport` → `transit.station.airport`\n - `train_station` → `transit.station.rail.train`\n\nThis ensures consistency and alignment with the updated schema.\n", "enum": [ "airport", "train_station", diff --git a/dist/woosmap-openapi3.json b/dist/woosmap-openapi3.json index 48cd4c3b..cb1c5e84 100755 --- a/dist/woosmap-openapi3.json +++ b/dist/woosmap-openapi3.json @@ -9004,7 +9004,7 @@ "LocalitiesTypesPoiAlias": { "title": "LocalitiesTypesPoiAlias", "type": "string", - "description": "Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example:\n - `airport` → `transit.station.airport`\n - `train_station` → `transit.station.rail`\n - `shopping` → `business`\n\nThis ensures consistency and alignment with the updated schema.\n", + "description": "Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example:\n - `airport` → `transit.station.airport`\n - `train_station` → `transit.station.rail.train`\n\nThis ensures consistency and alignment with the updated schema.\n", "enum": [ "airport", "train_station", diff --git a/dist/woosmap-openapi3.yml b/dist/woosmap-openapi3.yml index ef14716c..b424e943 100755 --- a/dist/woosmap-openapi3.yml +++ b/dist/woosmap-openapi3.yml @@ -7512,8 +7512,7 @@ components: description: | Aliases for some point_of_interest types. These aliases are deprecated and should be replaced with the corresponding types in `LocalitiesTypesPoi`. For example: - `airport` → `transit.station.airport` - - `train_station` → `transit.station.rail` - - `shopping` → `business` + - `train_station` → `transit.station.rail.train` This ensures consistency and alignment with the updated schema. enum: diff --git a/dist/woosmap-postman.json b/dist/woosmap-postman.json index 5ffc223b..480f0aa7 100755 --- a/dist/woosmap-postman.json +++ b/dist/woosmap-postman.json @@ -5,7 +5,7 @@ "description": "Stores Search API lets you query the Assets which are returned as a [GeoJson](https://geojson.org/). Request is done over HTTPS using GET. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/). If your request returns a high number of assets, the result will be paginated. If so, you can request assets by page using `page` and `stores_by_page` parameters (Default is **100**, max is **300**).\n", "item": [ { - "id": "e4b7ab7e-3fee-48cf-96be-83dd0063ff7f", + "id": "9d845d2b-f556-456e-84a4-b4fd57bdd034", "name": "Search for assets", "request": { "name": "Search for assets", @@ -128,7 +128,7 @@ }, "response": [ { - "id": "30b62c4b-ed4b-4b69-8b01-3cd86b9ab84e", + "id": "3e998904-5d4c-48bc-a455-451b283bbf5b", "name": "Assets successfully retrieved", "originalRequest": { "url": { @@ -243,12 +243,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"adipisicing_6\": false\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n}", + "body": "{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2959031e-a150-4535-b9aa-7b80e7dbcfb8", + "id": "d18ff304-2857-4fcd-8108-f6c3663c6828", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -368,7 +368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b828373-a9f9-499d-8f3a-e1a68b78a024", + "id": "9752aecd-2e73-4dc9-84e0-6ce688a93df5", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -488,7 +488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fccc3f9-cef5-4df5-8d37-cfe7b5cd3e25", + "id": "28b0ee3f-c369-47c1-89dd-f9c60633cc37", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -614,7 +614,7 @@ } }, { - "id": "75aecc4c-15e5-4107-b21b-faad32626da2", + "id": "db54de25-acf9-4b72-a188-e49999e13464", "name": "Autocomplete for assets", "request": { "name": "Autocomplete for assets", @@ -692,7 +692,7 @@ }, "response": [ { - "id": "5d0f21f0-797e-4abc-90cb-72d14227631f", + "id": "ce1bdfca-c645-4614-8ce2-9b62ad3dafcb", "name": "Assets Successfully Replaced", "originalRequest": { "url": { @@ -762,12 +762,12 @@ "value": "application/json" } ], - "body": "{\n \"predictions\": [\n {\n \"name\": \"irure in magna\",\n \"highlighted\": \"consequat fugiat\",\n \"store_id\": {},\n \"types\": {}\n },\n {\n \"name\": \"sunt labore enim id\",\n \"highlighted\": \"dolore Lorem dolor\",\n \"store_id\": {},\n \"types\": {}\n }\n ]\n}", + "body": "{\n \"predictions\": [\n {\n \"name\": \"consequat mollit est nostrud\",\n \"highlighted\": \"l\",\n \"store_id\": {},\n \"types\": {}\n },\n {\n \"name\": \"cillum mollit est incididunt\",\n \"highlighted\": \"u\",\n \"store_id\": {},\n \"types\": {}\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79838fb3-065d-4ebc-abc1-58b9475a52ec", + "id": "b0ddf279-3776-4e1e-a357-59ba9f9a8062", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -842,7 +842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a2a83b8-dd9a-44b1-a025-cd0421a7e61b", + "id": "d857db75-b405-46c0-8264-a8789d700470", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -917,7 +917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51457d5d-cfa2-4663-b126-f1c8f05cc00b", + "id": "ce1b7532-67ec-4dd5-acc3-8866440aee0e", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -998,7 +998,7 @@ } }, { - "id": "fb73c672-022d-46e9-898b-03def423e945", + "id": "d4ff8fc5-e44e-4367-a9f0-e1fd1b9e885d", "name": "Bounds for assets", "request": { "name": "Bounds for assets", @@ -1086,7 +1086,7 @@ }, "response": [ { - "id": "fd15533b-5c16-4f30-bd41-6fd34ffed7de", + "id": "30581120-ec53-43bd-8445-9b2f8d66363b", "name": "Bounds successfully retrieved", "originalRequest": { "url": { @@ -1171,7 +1171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eb7fe9d-c36d-491e-9397-3adcc7c99973", + "id": "3cf58e16-375c-4022-a6ee-dc19182cec31", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1256,7 +1256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23b33b3b-1fa5-4100-a7d7-06792edc87fb", + "id": "6ee6cf2a-a6b5-4181-80c0-5966a4ed69d2", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -1341,7 +1341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c6aed2d-70b2-450f-9190-29fd2ac657d8", + "id": "a3756de1-0aca-47a6-9061-1dcef8e5a92e", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -1438,7 +1438,7 @@ "description": "The Data Management API is a web service that uses an HTTP request to manage, create or edit your Assets. The API only supports JSON. So you have to create a JSON file with your assets’ addresses and other information. You’ll need to convert, or geocode, the addresses in your file to latitude/longitude (`lat` / `long`) coordinates. Those coordinates will be used for most of Woosmap features like [local searches](https://developers.woosmap.com/products/search-api/get-started/), [stores nearby a user location](https://developers.woosmap.com/products/geolocation-api/stores/) or for displaying markers on a map with [Woosmap Javascript API](https://developers.woosmap.com/products/js-api/get-started/).\n", "item": [ { - "id": "9b6ab4bf-a139-4cea-9e2c-b9110430da7e", + "id": "477b2bdc-cc3d-4bb0-b92e-c0d316be6a22", "name": "Create your Assets", "request": { "name": "Create your Assets", @@ -1500,7 +1500,7 @@ }, "response": [ { - "id": "1cd3bb3f-643a-49a9-86ad-d7c8c0cd3fa7", + "id": "95d38841-c3d3-4446-81a7-96003fa51239", "name": "Assets successfully created", "originalRequest": { "url": { @@ -1560,7 +1560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "907c8155-dcaa-476a-b1d9-875f32daed66", + "id": "dad2dc86-6555-4d63-9cbf-b7d37c592a1d", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -1620,7 +1620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a396794a-46f4-46d5-9e33-894d21b7331c", + "id": "ac87a624-c95e-424f-8d39-ce6cc173d272", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1680,7 +1680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9a40d35-bf3f-4613-b2f4-22447c67dfd2", + "id": "4f7e1922-a1b2-437d-a5b2-a88bff005bc6", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -1746,7 +1746,7 @@ } }, { - "id": "88cb22b4-97c8-4809-9ebc-486001455a4e", + "id": "59fd6964-5172-4485-9015-c13f61e031cf", "name": "Update the Assets", "request": { "name": "Update the Assets", @@ -1808,7 +1808,7 @@ }, "response": [ { - "id": "61a1ff51-5144-4817-9c9e-69fd11fb570a", + "id": "dc894fc6-5cfe-4aa5-8df4-88fe05603d43", "name": "Assets successfully updated", "originalRequest": { "url": { @@ -1868,7 +1868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "450742a1-6675-4692-8f3d-bf43c18d1d88", + "id": "8325e8ae-4897-440b-976d-8afa69c68ab3", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -1928,7 +1928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b6af240-f158-4749-a2e6-d0bc0f9d9ee8", + "id": "61ad73b7-c14d-43f5-a0c6-d5c16f3abb6a", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1988,7 +1988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa1b8d59-71af-4421-9f78-04247c354027", + "id": "38c6b00f-2d38-4ba7-95c8-606fb298f49e", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2054,7 +2054,7 @@ } }, { - "id": "7e0b4478-3e47-4756-b60e-8fb480aef7ed", + "id": "937bdd7a-d680-4230-b043-b7149ee7045e", "name": "Delete the Assets", "request": { "name": "Delete the Assets", @@ -2113,7 +2113,7 @@ }, "response": [ { - "id": "7380ccf4-9305-498c-abb3-4d042866359a", + "id": "49563e87-1e5b-4b85-80ea-36657ace97a9", "name": "Assets successfully deleted", "originalRequest": { "url": { @@ -2169,7 +2169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d58c5bb5-79e3-48d8-b8fe-47651b0b0e28", + "id": "2d54c005-cf74-4ffc-80ff-abc5cd893f82", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2225,7 +2225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c702a5d9-cd8d-418c-94e1-6ac2fe43375b", + "id": "0c01d324-02c8-4a01-b7a9-292075895a71", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2287,7 +2287,7 @@ } }, { - "id": "7026480a-3632-4d1a-9f4a-c42216eaef7a", + "id": "9c9b6acd-0dce-4169-813e-6dccaa43b821", "name": "Get Asset from ID", "request": { "name": "Get Asset from ID", @@ -2348,7 +2348,7 @@ }, "response": [ { - "id": "ff01c8d5-6f85-4e2b-81bc-cbbb5685c111", + "id": "af23c747-16bf-4632-ae1e-a93c01a2f54b", "name": "Asset successfully retrieved", "originalRequest": { "url": { @@ -2391,12 +2391,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n}", + "body": "{\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf5c7e36-78d6-483f-bb42-20051ef6d409", + "id": "060fdd17-304f-4a66-bc5e-0573aef0817c", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2444,7 +2444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "336d7e4f-2112-430c-a2eb-a1b8c91a7de6", + "id": "ceebce7a-034d-4259-a041-9bf404bdb1a3", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2492,7 +2492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3de357b3-a322-4048-a34a-62dca7720af5", + "id": "b20309d7-5054-4b50-bd61-85d6656d320a", "name": "Not Found - `storeId` do not exist.", "originalRequest": { "url": { @@ -2534,7 +2534,7 @@ } }, { - "id": "3d75ce3f-c750-4895-82ea-37ebdd3de8c5", + "id": "2b7761d5-947a-42b4-be3f-fb42b7d5c8d4", "name": "Replace all assets", "request": { "name": "Replace all assets", @@ -2597,7 +2597,7 @@ }, "response": [ { - "id": "9524930d-6682-4aa9-b2c3-2a9ca4617b3a", + "id": "931427e3-023c-4dbc-b710-74c71caafacf", "name": "Assets successfully replaced", "originalRequest": { "url": { @@ -2658,7 +2658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa3bdaa5-0330-490b-b953-85786442fb60", + "id": "53b12ddf-f468-40cc-ac3d-88d2f3bb8244", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -2719,7 +2719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "831fa884-3171-456c-a60b-f275b6f897db", + "id": "4b944167-073a-4d08-bd53-e622a98b57ae", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2780,7 +2780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "957819a3-297a-480f-8935-ca7bded32b41", + "id": "2b3fadbf-f4d5-45c4-97dd-1824d5311046", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2853,7 +2853,7 @@ "description": "Geolocation API returns a location (or nearby stores) and accuracy radius based on an IP address. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "fcd2e926-497b-4775-97cc-a457786bbedd", + "id": "4b3125ee-e6be-4bf9-a462-27e28163d56b", "name": "Geolocation from an IP address", "request": { "name": "Geolocation from an IP address", @@ -2913,7 +2913,7 @@ }, "response": [ { - "id": "dd7f6380-ecdb-4cc8-8816-901e06433c9c", + "id": "7a764f05-32af-400f-aabe-8894ca95ee0d", "name": "Geolocation successfully retrieved", "originalRequest": { "url": { @@ -2970,7 +2970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b96d4672-3ed2-4438-a740-ab0e8cf0adbf", + "id": "fcc45456-9422-42be-8691-badc5d060cbb", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3027,7 +3027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2174474f-5068-421c-8cda-4f075932040b", + "id": "f13bf6e4-0077-4137-98b6-59451b8fb619", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3084,7 +3084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "651fc320-a57a-4b0d-8aee-1598dcaffe74", + "id": "46769969-3469-46e9-ac8e-fac93871da5c", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3147,7 +3147,7 @@ } }, { - "id": "c400c3b1-6909-464a-ac84-abc95f277c42", + "id": "629aec6d-be20-46b0-a0ea-4232b1a855cb", "name": "Assets nearby a Geolocation", "request": { "name": "Assets nearby a Geolocation", @@ -3225,7 +3225,7 @@ }, "response": [ { - "id": "ab037f13-f547-4cb5-b3f7-1c79d13eccf8", + "id": "1535a7d4-615e-4468-a13b-9df4a4c4097b", "name": "Geolocation and Stores successufully retrieved", "originalRequest": { "url": { @@ -3295,12 +3295,12 @@ "value": "application/json" } ], - "body": "{\n \"stores\": {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"accuracy\": \"\",\n \"latitude\": \"\",\n \"longitude\": \"\",\n \"country_code\": \"\",\n \"country_name\": \"\",\n \"continent\": \"\",\n \"region_state\": \"\",\n \"city\": \"\",\n \"postal_code\": \"\",\n \"timezone\": \"\",\n \"raw_offset\": \"\",\n \"dst_offset\": \"\"\n}", + "body": "{\n \"stores\": {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"esse_f4\": 38919972.38158688\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"accuracy\": \"\",\n \"latitude\": \"\",\n \"longitude\": \"\",\n \"country_code\": \"\",\n \"country_name\": \"\",\n \"continent\": \"\",\n \"region_state\": \"\",\n \"city\": \"\",\n \"postal_code\": \"\",\n \"timezone\": \"\",\n \"raw_offset\": \"\",\n \"dst_offset\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2765b356-eba4-4a52-bda6-e0ad9b257621", + "id": "526f898f-2817-4e3f-8201-08136a98906f", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3375,7 +3375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58f1b4f0-3f57-417d-9ab9-c79946acc73a", + "id": "d22f451c-7d62-443f-8c52-349d2dc5c149", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3450,7 +3450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7b3b3e5-0aa4-47e2-ba4e-bde681e4a63f", + "id": "58a3b2e8-b7c5-4baa-89e8-d87fad1d7f60", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3531,7 +3531,7 @@ } }, { - "id": "5c4f0889-0008-4f36-83c9-2f6ee350623e", + "id": "d69960a7-5afe-4de8-9ae2-4bfbcd88ee44", "name": "Timezone", "request": { "name": "Timezone", @@ -3600,7 +3600,7 @@ }, "response": [ { - "id": "412bc6d6-86ae-4df5-8353-a1cb814c70e0", + "id": "9940e1dd-1d40-42a1-ac3b-b41db3a5f117", "name": "Timezone successfully retrieved", "originalRequest": { "url": { @@ -3666,7 +3666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8ca4873-9b9f-4926-9e73-b81059831d3a", + "id": "717ca092-79ce-4b23-99c1-e8a827d9bd50", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3732,7 +3732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3593f14f-d923-4dff-9e45-f1341f04c582", + "id": "ed2e21f2-5e19-4412-b978-23cbc1d49ce5", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3798,7 +3798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab3224c8-d52c-4c90-8064-b84ad78ff13e", + "id": "ea6694a2-9472-425b-b7ac-2517cff6e1e2", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3876,7 +3876,7 @@ "description": "Woosmap Localities API is a web service that returns a great amount of geographical places in response to an HTTP request. Among others are city names, postal codes, suburbs, addresses or airports. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "4e769a6b-8d1f-4fff-a4d3-1ccba700886b", + "id": "1bacfcb0-2aaf-4fff-824e-bcfc44727fb1", "name": "Autocomplete for Localities", "request": { "name": "Autocomplete for Localities", @@ -3912,7 +3912,7 @@ "type": "text/plain" }, "key": "types", - "value": "neighbourhood" + "value": "town" }, { "disabled": false, @@ -4017,7 +4017,7 @@ }, "response": [ { - "id": "1626c1cb-c665-4de7-9a7a-987332dbd7c3", + "id": "14e93a33-b3a6-42d8-b9ca-7a4f67bf6c93", "name": "Autocompletion Localities successfully retrieved", "originalRequest": { "url": { @@ -4048,7 +4048,7 @@ "type": "text/plain" }, "key": "types", - "value": "neighbourhood" + "value": "town" }, { "disabled": false, @@ -4150,12 +4150,12 @@ "value": "application/json" } ], - "body": "{\n \"localities\": [\n {\n \"public_id\": \"\",\n \"types\": [\n \"address\",\n \"address\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n },\n {\n \"public_id\": \"\",\n \"types\": [\n \"country\",\n \"postal_code\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n }\n ]\n}", + "body": "{\n \"localities\": [\n {\n \"public_id\": \"\",\n \"types\": [\n \"admin_level\",\n \"postal_code\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n },\n {\n \"public_id\": \"\",\n \"types\": [\n \"country\",\n \"postal_code\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5f54941-cab4-41e4-a89c-790d6697fd68", + "id": "0775f5ff-5a98-4e8e-9a6a-56bbb7f74b54", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -4186,7 +4186,7 @@ "type": "text/plain" }, "key": "types", - "value": "neighbourhood" + "value": "town" }, { "disabled": false, @@ -4293,7 +4293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fed9dee-af21-4b09-9b06-7bef7ad7d3ee", + "id": "f1f981eb-2c3a-4ede-b26e-c6a61bec2e98", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -4324,7 +4324,7 @@ "type": "text/plain" }, "key": "types", - "value": "neighbourhood" + "value": "town" }, { "disabled": false, @@ -4431,7 +4431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d709fd3-908e-4d02-ab59-981602b783e9", + "id": "026dd93b-6fca-466a-a541-323f9b1e8e19", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -4462,7 +4462,7 @@ "type": "text/plain" }, "key": "types", - "value": "neighbourhood" + "value": "town" }, { "disabled": false, @@ -4575,7 +4575,7 @@ } }, { - "id": "4a4ae748-3484-4a3e-83c6-355ce49b2164", + "id": "3cde9342-b8f0-42d1-965a-f6b9b36834cc", "name": "Details of a Locality", "request": { "name": "Details of a Locality", @@ -4680,7 +4680,7 @@ }, "response": [ { - "id": "3cecb7cd-8cd5-45b3-b0c8-5e278696e834", + "id": "c6c35a42-ff5a-4eb3-9e29-61b753a2e074", "name": "Details Localities successfully retrieved", "originalRequest": { "url": { @@ -4777,12 +4777,12 @@ "value": "application/json" } ], - "body": "{\n \"result\": {\n \"public_id\": \"\",\n \"formatted_address\": \"\",\n \"types\": [\n \"route\",\n \"village\"\n ],\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n },\n \"accuracy\": \"ROUTE\"\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"name\": \"\",\n \"administrative_area_label\": \"\",\n \"status\": \"not_yet_built\",\n \"addresses\": {\n \"pagination\": {\n \"page\": \"\",\n \"page_count\": \"\",\n \"addresses_per_page\": \"\",\n \"address_count\": \"\"\n },\n \"list\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"result\": {\n \"public_id\": \"\",\n \"formatted_address\": \"\",\n \"types\": [\n \"postal_code\",\n \"locality\"\n ],\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n },\n \"accuracy\": \"DISTRICT\"\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"name\": \"\",\n \"administrative_area_label\": \"\",\n \"status\": \"not_yet_built\",\n \"addresses\": {\n \"pagination\": {\n \"page\": \"\",\n \"page_count\": \"\",\n \"addresses_per_page\": \"\",\n \"address_count\": \"\"\n },\n \"list\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1fee22d5-952a-48a6-a6ee-277465c50cfe", + "id": "22a826a7-6fa3-4bc7-9780-648bf53fc8d9", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -4884,7 +4884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ea965b3-ec5e-482f-9232-10b41f13bd64", + "id": "114271ff-616c-4aa1-95b7-b3d994e9b2e3", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -4986,7 +4986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f4c4d20-03f3-4a3f-8564-e1cbe3a5b7a0", + "id": "4e6ffb6e-1576-43cd-a96d-b164d2a73242", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -5094,7 +5094,7 @@ } }, { - "id": "c5ab90ca-06be-4338-94dd-4421fc00300f", + "id": "fc198c4a-7249-4f29-bbde-f9e341b3d9d7", "name": "Geocode a locality or Reverse Geocode a latlng", "request": { "name": "Geocode a locality or Reverse Geocode a latlng", @@ -5139,7 +5139,7 @@ "type": "text/plain" }, "key": "types", - "value": "neighbourhood" + "value": "town" }, { "disabled": false, @@ -5235,7 +5235,7 @@ }, "response": [ { - "id": "b875aa3f-b8af-4861-b360-cc9c2b83f44e", + "id": "223a718d-1106-4fef-9cb4-a14cc99be1f4", "name": "Request Localities Geocode successful", "originalRequest": { "url": { @@ -5275,7 +5275,7 @@ "type": "text/plain" }, "key": "types", - "value": "neighbourhood" + "value": "town" }, { "disabled": false, @@ -5368,12 +5368,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"quarter\",\n \"address\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"POSTAL_CODE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"quarter\",\n \"neighbourhood\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"ROOFTOP\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"MultiPoligon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"address\",\n \"address\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"postal_code\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"POSTAL_CODE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad6d9e2f-86f2-434e-8b8c-eb6337b32d0b", + "id": "1c98176b-0029-4faf-8401-b3dc676e4529", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -5413,7 +5413,7 @@ "type": "text/plain" }, "key": "types", - "value": "neighbourhood" + "value": "town" }, { "disabled": false, @@ -5511,7 +5511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c332e880-9a74-4349-82c4-8e0370c1eda2", + "id": "7fb86be0-564c-451a-b106-57c5650f2e07", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -5551,7 +5551,7 @@ "type": "text/plain" }, "key": "types", - "value": "neighbourhood" + "value": "town" }, { "disabled": false, @@ -5649,7 +5649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62cbe03d-35ac-4465-9bce-a8cd33d4a747", + "id": "a23c36f5-08e4-406f-9d75-5864d150e652", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -5689,7 +5689,7 @@ "type": "text/plain" }, "key": "types", - "value": "neighbourhood" + "value": "town" }, { "disabled": false, @@ -5793,7 +5793,7 @@ } }, { - "id": "11f48fec-60b2-49b3-8592-467545014455", + "id": "d1eaaff1-5a4e-4cb1-9400-7bbd4af72e7c", "name": "Nearby points of interest", "request": { "name": "Nearby points of interest", @@ -5820,7 +5820,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.shop.clothes" + "value": "hospitality" }, { "disabled": false, @@ -5865,7 +5865,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.shop.clothes" + "value": "hospitality" } ], "variable": [] @@ -5898,7 +5898,7 @@ }, "response": [ { - "id": "2e1971d5-60b3-4c46-b49b-e70e22253ee8", + "id": "7649b6ff-0998-40e8-9e85-297e9f0370cb", "name": "Points of interests surrounding `location` and matching provided `types`, sorted by distance to `location`.", "originalRequest": { "url": { @@ -5920,7 +5920,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.shop.clothes" + "value": "hospitality" }, { "disabled": false, @@ -5965,7 +5965,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.shop.clothes" + "value": "hospitality" }, { "description": { @@ -5995,12 +5995,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"types\": [\n \"business.shop.clothes\",\n \"park\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.shop.clothes\",\n \"hospitality.bed_and_breakfast\"\n ],\n \"formatted_address\": \"\"\n },\n {\n \"types\": [\n \"business.car_repair\",\n \"business.finance.bank\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.car_repair\",\n \"business.nightclub\"\n ],\n \"formatted_address\": \"\"\n }\n ],\n \"pagination\": {\n \"next_page\": \"\",\n \"previous_page\": \"\"\n }\n}", + "body": "{\n \"results\": [\n {\n \"types\": [\n \"tourism.attraction.aquarium\",\n \"tourism.monument.castle\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.food_and_drinks.cafe\",\n \"hospitality.guest_house\"\n ],\n \"formatted_address\": \"\"\n },\n {\n \"types\": [\n \"medical\",\n \"post_office\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business\",\n \"business.shop.bakery\"\n ],\n \"formatted_address\": \"\"\n }\n ],\n \"pagination\": {\n \"next_page\": \"\",\n \"previous_page\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4606739-445e-48c5-b2be-b66c9b35b07e", + "id": "c402daef-3d80-4070-89fa-096f0cbd79d9", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6022,7 +6022,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.shop.clothes" + "value": "hospitality" }, { "disabled": false, @@ -6067,7 +6067,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.shop.clothes" + "value": "hospitality" }, { "description": { @@ -6102,7 +6102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f345861-25f7-49c0-8a34-0b739cb11fee", + "id": "7e32bbfb-a59c-45b7-b48e-49b4cd32de01", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -6124,7 +6124,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.shop.clothes" + "value": "hospitality" }, { "disabled": false, @@ -6169,7 +6169,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.shop.clothes" + "value": "hospitality" }, { "description": { @@ -6204,7 +6204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2285232d-342e-4504-8b98-08ee0a144b7b", + "id": "c8c60ad6-0233-406b-8058-aba987c784b1", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -6226,7 +6226,7 @@ "type": "text/plain" }, "key": "types", - "value": "business.shop.clothes" + "value": "hospitality" }, { "disabled": false, @@ -6271,7 +6271,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "business.shop.clothes" + "value": "hospitality" }, { "description": { @@ -6318,7 +6318,7 @@ "description": "Woosmap Address API is a web service that returns addresses and other geographical places in response to an HTTP request. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n>**⚠️ This API has been deprecated in favour of Localities API**\n", "item": [ { - "id": "c5b3bb50-0d48-4b55-925a-4f13b6ad6685", + "id": "0c359272-d10b-4bfe-8c93-5ef453fb9287", "name": "Autocomplete for Addresses", "request": { "name": "Autocomplete for Addresses", @@ -6406,7 +6406,7 @@ }, "response": [ { - "id": "c7bd932f-1e34-4ebd-b6ef-c7ea6a95fee0", + "id": "0bceb5a7-9417-459d-82ba-4c0774f617a3", "name": "Autocompletion Address successfully retrieved", "originalRequest": { "url": { @@ -6486,12 +6486,12 @@ "value": "application/json" } ], - "body": "{\n \"predictions\": [\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"address_block\",\n \"status\": \"UNKNOWN_ERROR\"\n },\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"route\",\n \"status\": \"INVALID_REQUEST\"\n }\n ],\n \"status\": \"INVALID_REQUEST\"\n}", + "body": "{\n \"predictions\": [\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"country\",\n \"status\": \"INVALID_REQUEST\"\n },\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"route\",\n \"status\": \"REQUEST_DENIED\"\n }\n ],\n \"status\": \"OK\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "65026a9d-1180-4cc6-9628-0aa6b11c91a6", + "id": "b2682d81-cd1f-418e-8d96-dca070422b91", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6576,7 +6576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32c47d32-7b33-4c69-afb3-286b1e36da8a", + "id": "7eacf577-7094-4693-b115-81a394ab52c8", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -6661,7 +6661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56e1d7a0-2565-43c2-b7cf-448731bb5f04", + "id": "afe46218-94ff-4d2e-817a-73a3cda1b658", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -6752,7 +6752,7 @@ } }, { - "id": "9746fbc9-aaf9-41b4-9daf-fd6cf40df625", + "id": "ff8ffd2e-a8c1-4044-9b85-75609852725f", "name": "Details of an Address", "request": { "name": "Details of an Address", @@ -6831,7 +6831,7 @@ }, "response": [ { - "id": "da3850af-bef1-446d-826b-5f77f96f1736", + "id": "51c1981a-79d5-4d0d-a7df-7320cfb27bd8", "name": "Details Address successfully retrieved", "originalRequest": { "url": { @@ -6902,12 +6902,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"REQUEST_DENIED\",\n \"result\": {\n \"formatted_address\": \"\",\n \"types\": [\n \"house_number\",\n \"country\"\n ],\n \"public_id\": \"\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"ROOFTOP\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n}", + "body": "{\n \"status\": \"OK\",\n \"result\": {\n \"formatted_address\": \"\",\n \"types\": [\n \"locality\",\n \"admin_level\"\n ],\n \"public_id\": \"\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"ROOFTOP\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "011e396c-96cf-4f15-89e4-8bd59e88a743", + "id": "ca26c97d-265c-461c-8636-22917e41a39f", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6983,7 +6983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e502f1c0-0afc-4bc9-b65c-e017d3ba17b3", + "id": "19f0e6ee-2852-4b28-be2d-d62917add19b", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -7059,7 +7059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dc0d7b1-bfaf-4695-8efc-38b90464d23c", + "id": "a7a217c3-ed3c-43b7-b4e0-e924b866d810", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -7141,7 +7141,7 @@ } }, { - "id": "44b32653-1ada-4a0c-8deb-3e63cb6b91b6", + "id": "296c39fc-27d0-4880-93e5-272f1687365e", "name": "Geocode an Address or Reverse Geocode a latlng", "request": { "name": "Geocode an Address or Reverse Geocode a latlng", @@ -7256,7 +7256,7 @@ }, "response": [ { - "id": "68facdcf-35ce-445b-990a-269064ac09a7", + "id": "a1ec34db-6906-46e6-bfdf-a9e2c09fd72d", "name": "Request Address Geocode successful", "originalRequest": { "url": { @@ -7363,12 +7363,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"admin_level\",\n \"house_number\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"route\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"OK\"\n}", + "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"route\",\n \"route\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"place\",\n \"locality\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"REQUEST_DENIED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e0a15d3c-0aa3-400e-8683-296be076c0fb", + "id": "5f1b25ed-9407-46e6-81c4-37c149796278", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -7480,7 +7480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c028882-d8b6-4ff2-8820-75cc382dec12", + "id": "3f17f07c-0b0e-4f00-92ad-3af36810ce6c", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -7592,7 +7592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7da1c54d-0a4c-40f4-8c5d-51de326e34ae", + "id": "719e7a63-2327-475a-a91c-23aaf908781e", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -7716,7 +7716,7 @@ "description": "Woosmap Distance API is a service providing road travel distance and duration calculations, on a Worldwide scale. Request is done over HTTPS using GET or POST. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "d020f11b-afdc-4419-90af-95787b0c0e4a", + "id": "f30a05b0-38a9-43e7-9512-5a5310a0e9f2", "name": "Distance Matrix", "request": { "name": "Distance Matrix", @@ -7762,7 +7762,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -7780,7 +7780,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -7789,7 +7789,7 @@ "type": "text/plain" }, "key": "elements", - "value": "duration" + "value": "distance" }, { "disabled": false, @@ -7849,7 +7849,7 @@ }, "response": [ { - "id": "c5ec9649-2932-4cc0-9837-de0009bcd690", + "id": "637a1c90-1d3b-4c01-9d7e-32b0f30956b0", "name": "Distance Matrix successfully retrieved", "originalRequest": { "url": { @@ -7890,7 +7890,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -7908,7 +7908,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -7917,7 +7917,7 @@ "type": "text/plain" }, "key": "elements", - "value": "duration" + "value": "distance" }, { "disabled": false, @@ -7974,12 +7974,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"INVALID_REQUEST\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"MAX_ELEMENTS_EXCEEDED\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2b144bd-5c7d-4e74-965d-c41ace0dcd88", + "id": "f148ab36-79a7-441d-bcb8-334eaa71b389", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -8020,7 +8020,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -8038,7 +8038,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -8047,7 +8047,7 @@ "type": "text/plain" }, "key": "elements", - "value": "duration" + "value": "distance" }, { "disabled": false, @@ -8109,7 +8109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a70486d-1ce6-4896-9aed-0b3223703ce4", + "id": "16cdff3a-c815-40a2-8a39-ebf76504051e", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -8150,7 +8150,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -8168,7 +8168,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -8177,7 +8177,7 @@ "type": "text/plain" }, "key": "elements", - "value": "duration" + "value": "distance" }, { "disabled": false, @@ -8239,7 +8239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0e1e775-3854-4ff9-9f63-105a935ed5f0", + "id": "c352547c-d3a0-4a1b-a3b1-719429b86f87", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -8280,7 +8280,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -8298,7 +8298,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -8307,7 +8307,7 @@ "type": "text/plain" }, "key": "elements", - "value": "duration" + "value": "distance" }, { "disabled": false, @@ -8375,7 +8375,7 @@ } }, { - "id": "459cada6-b2f0-438f-8c28-ea9c1a89b3a6", + "id": "7b7a12f4-7ec6-49e0-9023-f52b9a73aab5", "name": "Distance Matrix using POST", "request": { "name": "Distance Matrix using POST", @@ -8411,7 +8411,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8439,7 +8439,7 @@ }, "response": [ { - "id": "f87cd5b6-2b7a-4df1-914e-adedc0c8ab7e", + "id": "fb0dc4ad-03c9-4bd0-a3e2-7340bb6cd5ce", "name": "Distance Matrix with POST successfully retrieved", "originalRequest": { "url": { @@ -8479,7 +8479,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8496,12 +8496,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"INVALID_REQUEST\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"MAX_ELEMENTS_EXCEEDED\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db411f6f-ccd0-4062-925f-2a5b7d1cbb29", + "id": "5d27e53b-ddd6-42d9-bfef-9e1432e9f9f9", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -8541,7 +8541,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8563,7 +8563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43e81306-2737-4234-8180-22d57757155b", + "id": "519a500c-afb8-4186-81a6-fe8185e34236", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -8603,7 +8603,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8625,7 +8625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8023694-0cd0-4312-90a8-a52fb85db6ad", + "id": "039556cb-cd05-4f24-b3d1-e25ba0b24bd2", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -8665,7 +8665,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8687,7 +8687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22299b90-7bd6-405c-8c45-0beeee8ce938", + "id": "272e15d5-a37d-48bc-a02f-f7df14341e14", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -8727,7 +8727,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"driving\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8755,7 +8755,7 @@ } }, { - "id": "1fe18d9f-cd1d-4adc-8569-a521d8dae591", + "id": "6dd335c4-7444-487e-a55e-0c30122ccddf", "name": "Route", "request": { "name": "Route", @@ -8801,7 +8801,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -8819,7 +8819,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -8855,7 +8855,7 @@ "type": "text/plain" }, "key": "details", - "value": "none" + "value": "full" }, { "disabled": false, @@ -8915,7 +8915,7 @@ }, "response": [ { - "id": "1307495c-ab96-4f07-8c05-7409d071fe3f", + "id": "efb4c624-c2fc-41dd-95ce-ab803a42cd51", "name": "Route successfully retrieved", "originalRequest": { "url": { @@ -8956,7 +8956,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -8974,7 +8974,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9010,7 +9010,7 @@ "type": "text/plain" }, "key": "details", - "value": "none" + "value": "full" }, { "disabled": false, @@ -9072,7 +9072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da544cdf-bd84-4989-b7a0-8c73d1a5ab31", + "id": "80be5635-7c8b-4e96-ab64-2f79f9d94158", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -9113,7 +9113,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9131,7 +9131,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9167,7 +9167,7 @@ "type": "text/plain" }, "key": "details", - "value": "none" + "value": "full" }, { "disabled": false, @@ -9229,7 +9229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2820fe4b-3b01-48d9-9ec5-2a514a73899b", + "id": "58d1a7f8-a759-4bcc-9a81-36a8f87b66e4", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -9270,7 +9270,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9288,7 +9288,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9324,7 +9324,7 @@ "type": "text/plain" }, "key": "details", - "value": "none" + "value": "full" }, { "disabled": false, @@ -9386,7 +9386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d34bc1f0-f00f-4db3-9fc8-18628b22e3f3", + "id": "6f8f4eb3-d317-41aa-b2a3-72b4df458286", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -9427,7 +9427,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9445,7 +9445,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9481,7 +9481,7 @@ "type": "text/plain" }, "key": "details", - "value": "none" + "value": "full" }, { "disabled": false, @@ -9549,7 +9549,7 @@ } }, { - "id": "f3c06e53-5c78-4a47-88b6-91a7a3917176", + "id": "69f13f3a-9ef3-490c-884d-07e87b0bed15", "name": "Tolls", "request": { "name": "Tolls", @@ -9595,7 +9595,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9613,7 +9613,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9691,7 +9691,7 @@ }, "response": [ { - "id": "ba79fa79-43e8-475e-8b94-175137fc9158", + "id": "bde1ee76-a6fc-4e51-a4bf-52fecf20eba7", "name": "Tolls successfully retrieved", "originalRequest": { "url": { @@ -9732,7 +9732,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9750,7 +9750,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9825,12 +9825,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"MAX_ELEMENTS_EXCEEDED\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"deserunt_bd\": -27690493\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"dolor4f4\": -62400235,\n \"sunt20\": -14198816\n },\n {\n \"countryCode\": \"\",\n \"culpa3\": 12261292.787978023\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"consequat06_\": -50657958.48369441\n },\n {\n \"countryCode\": \"\",\n \"voluptatea3\": 90715325,\n \"fugiatc\": true,\n \"deserunt2a\": \"laborum irure\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"nisidc\": true\n },\n {\n \"countryCode\": \"\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"MAX_ROUTE_LENGTH_EXCEEDED\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"sed5\": \"in consectetur in elit\"\n },\n {\n \"countryCode\": \"\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"eiusmod7d\": 84679926.1995013,\n \"id_a34\": 88849478,\n \"dolor_35\": -1085278.304556653,\n \"tempor6\": true\n },\n {\n \"countryCode\": \"\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"ipsum_d7\": false\n },\n {\n \"countryCode\": \"\",\n \"sunt8\": true,\n \"Duis03\": true,\n \"etcd\": 5163356,\n \"pariatur_c7\": false\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"cupidatat_126\": false\n },\n {\n \"countryCode\": \"\",\n \"Excepteur5f\": \"in et occaecat\",\n \"fugiat_8_e\": \"officia deserunt dolore nostrud\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4e21888-68dc-43e4-acc7-ab74c6ef0b75", + "id": "8a25d460-2b6c-4cf2-b70a-418e0ec4c474", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -9871,7 +9871,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -9889,7 +9889,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -9969,7 +9969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5137335f-9a45-4880-a449-3b57f5cf33e8", + "id": "514aace3-ecee-4524-914d-75b0e31ded52", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -10010,7 +10010,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10028,7 +10028,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10108,7 +10108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4974cdc-3572-45a4-ae7b-f6f9cfb10658", + "id": "e92e6c9e-08fa-42ba-aa8a-fc23690ed79e", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -10149,7 +10149,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10167,7 +10167,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10253,7 +10253,7 @@ } }, { - "id": "162a0a23-f6d0-486c-89d2-d19e4da9a42b", + "id": "5a39803d-2380-419a-8dc0-0bc1adf066e7", "name": "Isochrone (Early Access)", "request": { "name": "Isochrone (Early Access)", @@ -10299,7 +10299,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10317,7 +10317,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10368,7 +10368,7 @@ }, "response": [ { - "id": "50ec35ad-968a-405f-b33c-c3ab001edb41", + "id": "2793a785-ec81-4800-abd1-8a6d22928c96", "name": "Isochrone successfully retrieved", "originalRequest": { "url": { @@ -10409,7 +10409,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10427,7 +10427,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10475,12 +10475,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"INVALID_REQUEST\",\n \"isoline\": {\n \"origin\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"time\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"geometry\": \"\"\n }\n}", + "body": "{\n \"status\": \"OVER_QUERY_LIMIT\",\n \"isoline\": {\n \"origin\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"time\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"geometry\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83854051-972a-4a68-b41a-3bc83ebbea38", + "id": "bea0fe9c-c95e-41ae-aaa7-50d6d3cfcf83", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -10521,7 +10521,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10539,7 +10539,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10592,7 +10592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61eba1d7-9fba-4d65-b126-8eb293bfd584", + "id": "d3c15813-c842-4ce9-97ea-fab47684b489", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -10633,7 +10633,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10651,7 +10651,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10704,7 +10704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc02593e-09ac-4fb1-9495-6d4b137c348d", + "id": "1dfd0bb4-c4c6-4059-99f4-0edad77fb935", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -10745,7 +10745,7 @@ "type": "text/plain" }, "key": "mode", - "value": "driving" + "value": "walking" }, { "disabled": false, @@ -10763,7 +10763,7 @@ "type": "text/plain" }, "key": "units", - "value": "metric" + "value": "imperial" }, { "disabled": false, @@ -10828,7 +10828,7 @@ "description": "Woosmap Zones API is a web service that uses an HTTP request to manage, create or edit your Zones (polygons) attached to your assets.\nThe general principle is that sometimes searching assets using crowfly distance is not good enough. For example to search the restaurant that will do the delivery for a specified address, each restaurant has a delivery zone and for topological or business reasons it’s not always the nearest restaurant in charge of your delivery. Woosmap Zones API allows you to associate a delivery zone to each of the restaurants.\n", "item": [ { - "id": "b40a4aa1-7bb7-4879-ab9a-8305faf642e3", + "id": "006c491b-10e5-4310-b609-c7b88ae2eeb7", "name": "List your Zones", "request": { "name": "List your Zones", @@ -10896,7 +10896,7 @@ }, "response": [ { - "id": "168f8a03-d72c-4db6-b733-ad689f279c32", + "id": "332b2c76-e22e-432e-b2a7-7cebc81cb031", "name": "Zones successfully retrieved", "originalRequest": { "url": { @@ -10961,7 +10961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5661178f-a2e3-4f12-8110-210b5697435c", + "id": "88efd9a3-57bb-4fee-8832-51f37ee46c6a", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11026,7 +11026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cbc81e0-1f4b-4371-8fe0-8a90abe20c70", + "id": "46ebc9fd-e53b-4a71-9348-0fa022dcd8b2", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11091,7 +11091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa59bff7-32de-4f58-a105-0d966a0ea29d", + "id": "0618acdd-a482-4c10-a106-6431090cb61f", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -11162,7 +11162,7 @@ } }, { - "id": "cfaf73e8-6276-4fab-b8b3-0a6062846cdd", + "id": "5bbd5c80-e74c-4c1d-b7e9-8c782a79a45f", "name": "Create your Zones", "request": { "name": "Create your Zones", @@ -11224,7 +11224,7 @@ }, "response": [ { - "id": "381c3792-d702-4fd5-ad4b-10a6aafcfc33", + "id": "c76acc90-fd31-4fe4-aeb5-ba20cb4fcc1d", "name": "Zones successfully created", "originalRequest": { "url": { @@ -11284,7 +11284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6efb5edb-f50f-456b-97d9-4fae30fd3274", + "id": "6277f6b3-598c-4230-bfcc-daf3ec84b275", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -11344,7 +11344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6160a412-4534-4a45-993b-407b22ea749e", + "id": "40509642-245e-49b9-880a-e3d21154b0af", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11404,7 +11404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33a5f6d5-7660-44d4-82c1-0f46b79e5d12", + "id": "a5849208-2459-4e2f-a85c-e2b2c53e3c4c", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11470,7 +11470,7 @@ } }, { - "id": "35024424-117d-4061-a369-e6d3630dac27", + "id": "dd3b22b5-2a67-4024-876c-6db4be306803", "name": "Update the Zones", "request": { "name": "Update the Zones", @@ -11532,7 +11532,7 @@ }, "response": [ { - "id": "1f122996-bfb3-4d6b-9a29-6c79c2738dcb", + "id": "5bd08100-29fd-4afa-b8ff-933f50566e78", "name": "Zones successfully updated", "originalRequest": { "url": { @@ -11592,7 +11592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8265825a-132e-4bb2-b71d-c034d87b264b", + "id": "44818257-a935-44b6-88fd-9a2c08b32453", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -11652,7 +11652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36c765d8-d6e6-40f7-85eb-357b0990b468", + "id": "82d1a6c7-63cf-41b5-9eb3-30bca4983f22", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11712,7 +11712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be1f8597-d0f7-46ad-a2b2-3bd25d97ba3a", + "id": "4acf2c1b-8b71-405d-9ade-66c61916f9fd", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11778,7 +11778,7 @@ } }, { - "id": "72fda7b1-8892-4805-aa1d-e71be185112e", + "id": "3b182793-f298-4c4d-aff3-1803bf54aa0e", "name": "Delete the Zones", "request": { "name": "Delete the Zones", @@ -11827,7 +11827,7 @@ }, "response": [ { - "id": "97a7f4c7-81cd-4a84-8fda-90d454819061", + "id": "4779c8e0-18b3-499c-b997-91dea2f9aed3", "name": "Zones successfully deleted", "originalRequest": { "url": { @@ -11874,7 +11874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ffc107b-bbad-4e36-b650-26df2010e4d8", + "id": "7cbe3c74-6645-4436-9f9f-5998ed3fe0ee", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11921,7 +11921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26e3c6ed-8968-472a-aca7-57057aaf4158", + "id": "d1f2d762-3435-4574-90d8-879f59194b99", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11974,7 +11974,7 @@ } }, { - "id": "1537c2f8-8d24-47f4-b840-61d473e15dbb", + "id": "fd134177-bf20-49be-b42e-3703b188dc5d", "name": "Get Zone from ID", "request": { "name": "Get Zone from ID", @@ -12035,7 +12035,7 @@ }, "response": [ { - "id": "801bdc10-ec47-4302-855e-9cb76e6facb5", + "id": "ad0a9975-fa61-4229-a96a-b0cfaa229827", "name": "Zone successfully retrieved", "originalRequest": { "url": { @@ -12083,7 +12083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c3e6c4e-9485-4cb4-ae55-abfb1e318c7c", + "id": "5c27c4e1-1462-4554-aa8c-8378dea404f8", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -12131,7 +12131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3860b9f-ccdb-4cd7-bad1-e3a8547789ae", + "id": "13ddec60-42a1-4436-840a-591d296e8585", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -12179,7 +12179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4c6b847-300b-4b76-9c80-f346e55ee9f6", + "id": "d329b3c0-5554-4636-8801-f02155762617", "name": "Not Found - `zone_id` do not exist.", "originalRequest": { "url": { @@ -12221,7 +12221,7 @@ } }, { - "id": "5d1e8e9d-e21b-4ccf-b2c4-f5b42cd1efde", + "id": "e6a82298-1137-42c4-9e92-c462225b2984", "name": "Delete Zone from ID", "request": { "name": "Delete Zone from ID", @@ -12282,7 +12282,7 @@ }, "response": [ { - "id": "aed8ee5f-560a-447b-8f60-f1aa5f89db2f", + "id": "edefa327-f5b1-48e3-81cb-3b9cc94ac25c", "name": "Zones successfully deleted", "originalRequest": { "url": { @@ -12330,7 +12330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28f37321-bd4e-4d6c-b53a-b2882f13ab6f", + "id": "0ef30041-1a8e-4143-8e8a-93f6e4693e6d", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -12378,7 +12378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cc278ed-3953-4286-8927-6528550a2d95", + "id": "dcad760b-53a2-4329-af60-27f7a1c1479c", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -12438,7 +12438,7 @@ "description": "The Woosmap Static Maps API lets you generate customizable, embeddable map images using simple HTTP requests. It’s a lightweight alternative to interactive maps—ideal for emails, reports, or websites where dynamic JavaScript maps aren't needed. \n\nYou provide parameters such as location, zoom level, size, and markers, and the API returns a map image that can be embedded directly into any webpage or application.\n", "item": [ { - "id": "8b298908-485f-4374-90e9-6e56f719770c", + "id": "f9910872-b31f-4db3-8d48-fe32cd28aa03", "name": "Get Static Map", "request": { "name": "Get Static Map", @@ -12612,7 +12612,7 @@ }, "response": [ { - "id": "d754e1a8-a234-43f1-8759-1152193d3c18", + "id": "b8d0b857-08f1-4353-89fe-e6c8a6778413", "name": "Successful Response", "originalRequest": { "url": { @@ -12756,7 +12756,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7063ff95-02bd-4648-8ced-44f22eccb9bd", + "id": "a9da8e9a-2d3f-44ed-b331-8b5e4735ab66", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -12900,7 +12900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4877d09c-b184-47e3-b173-66957e362db0", + "id": "81f56a33-548c-4c6b-a4a0-9b770807414d", "name": "Out of free quota.", "originalRequest": { "url": { @@ -13044,7 +13044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f87f9db-c7b3-4bc0-81d7-840452349de5", + "id": "8ae36515-3b29-4192-8e7e-9985b3c6afa6", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -13188,7 +13188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1486524d-f461-4d81-843b-db0c839a44ca", + "id": "1fc105da-cbce-487b-ad07-66e960344864", "name": "Validation Error", "originalRequest": { "url": { @@ -13332,7 +13332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ae2a7de-9b7c-4ce5-ac13-912fda24f940", + "id": "385fca4c-8ebd-46a8-8cda-2d098547f2c7", "name": "Rate limit reached", "originalRequest": { "url": { @@ -13488,7 +13488,7 @@ "description": "Add What3Words capabilities to your address search.", "item": [ { - "id": "3f9501c0-fcde-4889-a133-24a5ee92a011", + "id": "c9be61e7-2468-4d9a-865b-2f589e53b3bd", "name": "Convert To What 3 Words", "request": { "name": "Convert To What 3 Words", @@ -13563,7 +13563,7 @@ }, "response": [ { - "id": "0dfa6c4d-6762-4f26-bb44-6a19fca06873", + "id": "b8beb545-49f1-44e7-aea3-fab82a3bec52", "name": "Successful Response", "originalRequest": { "url": { @@ -13635,7 +13635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7cf6243-1cda-4b91-8d59-83ae92ee1c63", + "id": "deb37dd9-1c84-4589-a9c8-2c3c88e800ec", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -13707,7 +13707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25e94c4f-ae8b-4782-8ff2-db98b1560618", + "id": "3cb7a4e1-6218-4dc1-a54b-8fee51e77900", "name": "Out of free quota.", "originalRequest": { "url": { @@ -13779,7 +13779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a66612cc-b58b-487e-88b0-162d52e41fc6", + "id": "15e7e61a-258d-4060-928e-aeebe50d808d", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -13851,7 +13851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b786ca3-935c-4f4f-9db3-1f01838ebdaf", + "id": "c14ef066-0491-4b5a-aa0f-3e83eb59d147", "name": "Validation Error", "originalRequest": { "url": { @@ -13923,7 +13923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24127b4b-bc88-4ab4-a863-6eb11beb0949", + "id": "7a5c0256-e5cb-4f5b-94d5-e316d5216a71", "name": "Rate limit reached", "originalRequest": { "url": { @@ -14001,7 +14001,7 @@ } }, { - "id": "33f9a378-5063-4f7a-82f6-420cf4ec379b", + "id": "792a243d-cb3e-481e-aa66-c2a5334696af", "name": "Convert To Address", "request": { "name": "Convert To Address", @@ -14067,7 +14067,7 @@ }, "response": [ { - "id": "7ee4c346-30e4-4a64-832b-37239de00e63", + "id": "b1c04742-3ce1-409c-b6b5-2a703f6a514f", "name": "Successful Response", "originalRequest": { "url": { @@ -14125,12 +14125,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"types\": [\n \"town\",\n \"locality\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n {\n \"types\": [\n \"named_place\",\n \"admin_level\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"types\": [\n \"address\",\n \"hamlet\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n {\n \"types\": [\n \"postal_code\",\n \"suburb\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "970a0246-74f3-4250-a765-6481b8fd813e", + "id": "bfe42cb3-ae72-40c2-9414-78aabf3705c1", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -14193,7 +14193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f403261-86d1-4004-84a9-113e4300aa32", + "id": "675a2ee2-68ee-4009-88e0-1e4902886823", "name": "Out of free quota.", "originalRequest": { "url": { @@ -14256,7 +14256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "382b26d7-d342-400d-8b04-0cfa8968d381", + "id": "ed4118f1-e652-43cd-96dd-14fc03650ca8", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -14319,7 +14319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a05040c9-9fc1-41df-a6b5-328a9af397d5", + "id": "79b6862d-9e56-47a1-9939-42d9486c83a7", "name": "Validation Error", "originalRequest": { "url": { @@ -14382,7 +14382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00d9a79c-f9e3-443f-90da-781a879fa061", + "id": "7f22575a-c0dc-4085-9c89-a88c2518369f", "name": "Rate limit reached", "originalRequest": { "url": { @@ -14451,7 +14451,7 @@ } }, { - "id": "8fdcbb1c-7273-4cfc-8860-2e0482a9d50c", + "id": "3273490b-ac5a-49f3-97fa-49a7ffa3dda9", "name": "Autosuggest", "request": { "name": "Autosuggest", @@ -14580,7 +14580,7 @@ }, "response": [ { - "id": "33712c3b-98b6-4945-b5ab-eafaa249522b", + "id": "c776545a-abb0-426d-bfa0-7c217bda4718", "name": "Successful Response", "originalRequest": { "url": { @@ -14706,7 +14706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67588d47-facc-4f8a-a09b-d2768df6d9dd", + "id": "4bc88157-4f63-4173-9d5e-56a041d75a0e", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -14832,7 +14832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67975a88-c573-4371-86f2-3d90cb165389", + "id": "2ef05691-01f4-42be-a162-40a862b24e70", "name": "Out of free quota.", "originalRequest": { "url": { @@ -14958,7 +14958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "165125cf-9c92-4dfe-8bd6-f16f2e07b15a", + "id": "a7e512b4-4316-408c-8ce6-09db44683b4f", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -15084,7 +15084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7373fa81-a9bc-4852-baca-faef584c4626", + "id": "25700d63-225a-4531-9c6f-74ebeb55895a", "name": "Validation Error", "originalRequest": { "url": { @@ -15210,7 +15210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "601e1067-ef89-4d5d-9226-ceddd29e24c2", + "id": "6762af83-dc44-4b9c-8047-69efa8560af4", "name": "Rate limit reached", "originalRequest": { "url": { @@ -15348,7 +15348,7 @@ "description": "The Indoor API suite provides comprehensive tools for indoor mapping, search, and navigation in complex venues.\n\nThe Indoor Map API renders detailed floor plans with customizable styling, while the Indoor Search API enables\nprecise location searching through an intelligent POI engine with autocompletion capabilities.\n\nFor wayfinding, the Indoor Distance API calculates optimal routes between indoor points, delivering polylines\nand turn-by-turn instructions. Advanced features include custom routing profiles for different user types\n(staff, visitors, etc.) and seamless integration with external systems.\n", "item": [ { - "id": "e202a424-082f-490c-99a0-7398caf7b473", + "id": "9ba848a8-e8e5-4b97-aa2d-753ba2c98561", "name": "Get Venue By Key", "request": { "name": "Get Venue By Key", @@ -15407,7 +15407,7 @@ }, "response": [ { - "id": "233c66b5-2105-4b62-93bf-a4269206134e", + "id": "17de02d7-9f55-4ece-bc6a-39c0405f833b", "name": "OK", "originalRequest": { "url": { @@ -15453,7 +15453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "598b4c27-b109-4d2c-850c-743e740210e7", + "id": "5ab51cae-4994-4af9-bf04-049463f60610", "name": "Unauthorized", "originalRequest": { "url": { @@ -15499,7 +15499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9fc1388-5f63-4ec4-bdde-86578401ad68", + "id": "44ed4873-6244-4c4e-b53a-1f5c055ae46d", "name": "Payment Required", "originalRequest": { "url": { @@ -15545,7 +15545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c99afb31-3178-4aae-888f-77bc8ea6ac2b", + "id": "3ea7040b-9a74-42bd-b2af-fc0705c4c238", "name": "Forbidden", "originalRequest": { "url": { @@ -15591,7 +15591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "126c57ed-19b1-469f-875b-5133e9924de5", + "id": "4fc0e29a-a5a0-4091-8220-d891ca9bacbc", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -15632,7 +15632,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", + "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15643,7 +15643,7 @@ } }, { - "id": "e64327df-0bc2-4267-b425-64693d9a6ef2", + "id": "9eb35e05-0b78-49b2-9219-d1dd79344fd4", "name": "Get Venues By Key", "request": { "name": "Get Venues By Key", @@ -15667,7 +15667,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" } ], "variable": [] @@ -15700,7 +15700,7 @@ }, "response": [ { - "id": "8faa4a33-cfcd-4d0d-b196-1e11353d15c7", + "id": "a7c1c972-a3b1-41e1-8cbb-b349e4259e4e", "name": "OK", "originalRequest": { "url": { @@ -15719,7 +15719,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" }, { "description": { @@ -15754,7 +15754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdf5f233-82f4-4d43-a535-98b9be934800", + "id": "643bf38a-bec9-4ce7-9e1d-7364285ec41e", "name": "Unauthorized", "originalRequest": { "url": { @@ -15773,7 +15773,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" }, { "description": { @@ -15808,7 +15808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8f1d49e-02f8-4c9f-9300-5c182cdceeb3", + "id": "1d1dd50f-468a-44f9-b47e-db7a5076d0b5", "name": "Payment Required", "originalRequest": { "url": { @@ -15827,7 +15827,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" }, { "description": { @@ -15862,7 +15862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f83d2c8a-dcb5-4929-a7ae-bea17c4b7bb5", + "id": "858ae742-6288-46d5-96f7-8f9557508e1f", "name": "Forbidden", "originalRequest": { "url": { @@ -15881,7 +15881,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" }, { "description": { @@ -15916,7 +15916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7c578cd-00cc-4c6a-b8b3-3ee21371cc75", + "id": "42a4cd30-775f-498b-82f3-d7eeb2847d06", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -15935,7 +15935,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "created_at" + "value": "updated_at" }, { "description": { @@ -15965,7 +15965,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", + "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15976,7 +15976,7 @@ } }, { - "id": "b22ae2ad-042d-494f-b2c7-9ca784a6be2f", + "id": "458007a2-8273-4bf7-bbce-2852c022bbb8", "name": "Get Indoor Style", "request": { "name": "Get Indoor Style", @@ -16042,7 +16042,7 @@ }, "response": [ { - "id": "391cea6e-1c9e-4ac3-8fc3-dab3a4fda43a", + "id": "1374cd6c-4600-4e43-8dc3-bafb1f3b69b4", "name": "OK", "originalRequest": { "url": { @@ -16100,12 +16100,12 @@ "value": "application/json" } ], - "body": "{\n \"occaecat_9\": true,\n \"dolore_3b4\": -29662553,\n \"ad_9_5\": -42893810\n}", + "body": "{\n \"Duis_c\": false,\n \"proident_e\": 61518617\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4312aa9-0ebe-4fff-96a6-d0fa70a4644f", + "id": "f9ff6e8e-0e5a-4519-bdf7-19cdf78404a1", "name": "Unauthorized", "originalRequest": { "url": { @@ -16168,7 +16168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b219522-d46f-4315-9342-67b98762c88d", + "id": "26ddc987-0dd6-436f-a2d4-e372db47fb5b", "name": "Payment Required", "originalRequest": { "url": { @@ -16231,7 +16231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c94d077b-8676-4aa5-9bda-6f962780d10c", + "id": "15c99825-8ddc-4d9a-94e1-c52c8e169181", "name": "Forbidden", "originalRequest": { "url": { @@ -16294,7 +16294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36be3d56-eead-49c8-9634-2c62f007b950", + "id": "8937db7d-58fb-4c7d-9daf-ae0e6e817a6e", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -16352,7 +16352,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", + "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16363,7 +16363,7 @@ } }, { - "id": "67ad5c2b-95a7-4a50-a564-f55ce834c2f5", + "id": "4c4c7a75-48e0-4f74-844a-b16543b6c5da", "name": "Distance Matrix", "request": { "name": "Distance Matrix", @@ -16468,7 +16468,7 @@ }, "response": [ { - "id": "7497a242-149a-4671-9c7b-f27904ab42a4", + "id": "6210e05a-1118-4749-aa59-5d79efe5aa40", "name": "OK", "originalRequest": { "url": { @@ -16559,7 +16559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb42926b-812c-4ae4-8dec-3483caf313a7", + "id": "5734b5fe-6269-4a72-8370-eff5600d0f3b", "name": "Bad Request", "originalRequest": { "url": { @@ -16650,7 +16650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcd0bb60-96d0-433c-9694-8ec4c84be1c2", + "id": "cee36b44-85df-42d5-ac67-903d111e2729", "name": "Unauthorized", "originalRequest": { "url": { @@ -16741,7 +16741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecb4ce23-5070-4cdc-8e6b-1b8b435a576c", + "id": "0c08dd37-7a2e-4cb8-b01a-25c3d2d7119f", "name": "Payment Required", "originalRequest": { "url": { @@ -16832,7 +16832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad5bca95-efff-4573-81f4-0a159885c847", + "id": "b2089fc0-1693-46f6-93df-09d260a6b463", "name": "Forbidden", "originalRequest": { "url": { @@ -16923,7 +16923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ffd372b-c4d7-431f-adcf-f43594b78519", + "id": "e5235951-5370-4b98-a164-88b07ef9f1b3", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -17009,7 +17009,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", + "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17020,7 +17020,7 @@ } }, { - "id": "22f3b675-6084-412f-aa8f-21bff6cc44b2", + "id": "99c99482-37df-4808-ac4d-b72542cd5bdd", "name": "Directions", "request": { "name": "Directions", @@ -17152,7 +17152,7 @@ }, "response": [ { - "id": "27fea5f5-b028-4357-9c05-9c4c00c689be", + "id": "eb7506eb-b86d-4e7c-9c3c-2744c1803a20", "name": "OK", "originalRequest": { "url": { @@ -17270,7 +17270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21ac3572-1366-4e4a-9294-253acc1dc4dd", + "id": "21b360a3-a58e-4250-8aaf-47e9ed35940f", "name": "Bad Request", "originalRequest": { "url": { @@ -17388,7 +17388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23ce0192-42f4-4417-90ca-129ec4a7ff5a", + "id": "2375e95b-7060-451c-a2e9-d00d8cba7897", "name": "Unauthorized", "originalRequest": { "url": { @@ -17506,7 +17506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "844153b5-1adb-4183-b049-1a6879aaf6b9", + "id": "6c044203-7d39-4f67-8c6d-98d79a69703e", "name": "Payment Required", "originalRequest": { "url": { @@ -17624,7 +17624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0a6daff-970d-4235-ad23-fffcf916a7d0", + "id": "aac99b10-3cc3-43c5-b0ae-bcf39b748091", "name": "Forbidden", "originalRequest": { "url": { @@ -17742,7 +17742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77248da5-504f-47f6-b46e-707b243219c4", + "id": "133c90e2-2c02-465b-a2e8-2e7402a6f062", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -17855,7 +17855,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", + "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17866,7 +17866,7 @@ } }, { - "id": "4ee99928-5f8a-470e-a97f-f9eebcc8b7b5", + "id": "3705261f-213f-4d6d-bdb2-2f63e0956379", "name": "Search Venue Pois By Key", "request": { "name": "Search Venue Pois By Key", @@ -18036,7 +18036,7 @@ }, "response": [ { - "id": "a490babe-ad5e-424c-a07a-c5e7cfb126d8", + "id": "acbba5e1-bc9a-43a6-b0cd-603be415b277", "name": "OK", "originalRequest": { "url": { @@ -18192,7 +18192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "743c0aa1-9d88-4f16-b29e-1fe3580454ea", + "id": "d4487c21-3f5c-44dd-b241-d28cb0de0d7d", "name": "Unauthorized", "originalRequest": { "url": { @@ -18348,7 +18348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc26ae00-7467-4c52-a47f-83ee7808dead", + "id": "e821fb0e-7738-44ee-81d2-93955968144c", "name": "Payment Required", "originalRequest": { "url": { @@ -18504,7 +18504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "873758cb-206d-4542-b8a2-61cde77a1d01", + "id": "71dcef5c-d7e0-4816-b997-7929241c01cc", "name": "Forbidden", "originalRequest": { "url": { @@ -18660,7 +18660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "898cc8c6-2c4d-4c19-9b8d-da6076c08d22", + "id": "5912a1ba-e633-4735-b569-3acf5da01725", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -18811,7 +18811,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", + "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18822,7 +18822,7 @@ } }, { - "id": "dbd4384f-64bf-4ff1-a134-1b2fb81e7bb2", + "id": "87d7792f-da03-4b39-8909-478b67f305ae", "name": "Autocomplete Venue Pois By Key", "request": { "name": "Autocomplete Venue Pois By Key", @@ -18983,7 +18983,7 @@ }, "response": [ { - "id": "e48138e4-6f93-4037-86e0-e2893c758246", + "id": "95864dfa-7745-4470-8340-00ab0e7ff5ff", "name": "OK", "originalRequest": { "url": { @@ -19130,7 +19130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e668ad1-debd-492c-b0ed-8272fe3a63cc", + "id": "4d8e43f8-95ed-47ca-adc8-c90687083c23", "name": "Unauthorized", "originalRequest": { "url": { @@ -19277,7 +19277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af811d8d-7014-443e-82a7-b05fbddea912", + "id": "4294355b-1128-4535-bd2a-b41ceb2b270e", "name": "Payment Required", "originalRequest": { "url": { @@ -19424,7 +19424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04b7f050-efb2-4b3d-997a-59eda5b7df11", + "id": "dbe2378a-51e0-4d4a-8478-20d6d3ad4352", "name": "Forbidden", "originalRequest": { "url": { @@ -19571,7 +19571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1a11719-1842-4de0-9db3-05ca8cb4030b", + "id": "ae6b9989-f456-4bac-93ed-99013823f528", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -19713,7 +19713,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", + "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19724,7 +19724,7 @@ } }, { - "id": "0a988b4b-9397-471b-8d6e-274df2f353be", + "id": "eec64426-edf5-435d-87a3-c879d2aa7ba5", "name": "Get Feature By Key", "request": { "name": "Get Feature By Key", @@ -19795,7 +19795,7 @@ }, "response": [ { - "id": "f28a8c83-bc19-4e0e-bd2f-d704b284333a", + "id": "c98469f6-458b-45a7-bc32-d140aa1af187", "name": "OK", "originalRequest": { "url": { @@ -19838,12 +19838,12 @@ "value": "application/json" } ], - "body": "{\n \"properties\": {\n \"ut9\": \"aliquip incididunt\",\n \"sunt_\": -49513277.9418356,\n \"consectetur97\": true\n },\n \"geometry\": {\n \"type\": \"\",\n \"coordinates\": \"\",\n \"bbox\": \"\"\n },\n \"id\": \"\",\n \"type\": \"Feature\"\n}", + "body": "{\n \"properties\": {\n \"dolore_688\": -89752679\n },\n \"geometry\": {\n \"type\": \"\",\n \"coordinates\": \"\",\n \"bbox\": \"\"\n },\n \"id\": \"\",\n \"type\": \"Feature\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45a83488-3db3-49d3-a8bf-495f379f5de4", + "id": "bf445090-f2db-468e-bce8-aa617238ffb4", "name": "Unauthorized", "originalRequest": { "url": { @@ -19891,7 +19891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53d280e9-0f1c-4278-b84c-fb3f9aa000d4", + "id": "74b77b6c-8870-488e-a685-8587aaad842d", "name": "Payment Required", "originalRequest": { "url": { @@ -19939,7 +19939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba8d7058-0026-4ac2-9851-7054984285bd", + "id": "00ba4181-b74f-4ef6-b93d-f5dda71b32b1", "name": "Forbidden", "originalRequest": { "url": { @@ -19987,7 +19987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cee3015-a577-4ce8-9449-9a7fab0b5247", + "id": "1ae31682-7fa8-48a6-a0fc-1f6d043e9316", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -20030,7 +20030,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", + "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20041,7 +20041,7 @@ } }, { - "id": "086969bf-2c7c-4ac1-a25f-f6d5fb82d556", + "id": "af2e78d3-1538-4377-865a-9f5fa9eb8a86", "name": "Tiles By Key", "request": { "name": "Tiles By Key", @@ -20143,7 +20143,7 @@ }, "response": [ { - "id": "6858df0e-d1d6-4e8f-addd-461100e20830", + "id": "7c2d96d2-a7be-4bb8-b57a-4368a663e103", "name": "OK", "originalRequest": { "url": { @@ -20211,7 +20211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd815da3-0725-4363-a3b9-7dbc4fc4b170", + "id": "8af81e30-9efe-4d5c-b328-d45368832a4f", "name": "Unauthorized", "originalRequest": { "url": { @@ -20279,7 +20279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f66ec3ba-fcb2-4e44-a94e-76f46cab4841", + "id": "046e94a0-9d61-4378-9d0b-3ae56312e453", "name": "Payment Required", "originalRequest": { "url": { @@ -20347,7 +20347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a2a9547-99d2-4d44-aa47-d76c7758172e", + "id": "9f65d332-ddcb-4a09-8798-ac4197f1af56", "name": "Forbidden", "originalRequest": { "url": { @@ -20415,7 +20415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5db13f31-1d70-422c-8ef4-eeb8680da14f", + "id": "3fd282af-d9aa-49d8-9844-1d811fbcbfaa", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -20478,7 +20478,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"aliquipf\": \"velit tempor ullamco\",\n \"quis__f\": -18661582.96575384,\n \"magna2\": 63555866,\n \"pariaturd\": \"est do dolor\"\n },\n {\n \"qui_d\": 83421263.4828881,\n \"pariature7\": 53814441\n }\n ],\n \"context\": {\n \"Duisf_\": -16314712,\n \"ut_0e6\": -47343620,\n \"labore0\": \"Excepteur in sunt occaecat aute\",\n \"voluptatee0\": 93676936.26780972\n }\n}", + "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20495,7 +20495,7 @@ "description": "The Transit API delivers comprehensive public transportation routing information by calculating optimal travel paths between \norigins and destinations. It provides detailed route data including distance, duration, polyline visualization, \nand complete step-by-step transit instructions with transfer points and transportation modes. The API is ideal for \napplications requiring accurate public transit navigation and trip planning capabilities.\n", "item": [ { - "id": "c27179eb-f96d-4531-8c4c-b7aacaf25beb", + "id": "40585527-c1f8-41a8-886b-9f723ca67973", "name": "Transit Route", "request": { "name": "Transit Route", @@ -20588,7 +20588,7 @@ }, "response": [ { - "id": "8821893b-1ec5-4552-b70a-d0cf0b06c2d8", + "id": "c90bafe3-6821-41be-9d38-49da0b67901d", "name": "Successful Response", "originalRequest": { "url": { @@ -20678,7 +20678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "261fdc6c-d3c0-4f18-931c-db1f985f6583", + "id": "5ceb544f-1a3d-4799-9f42-89f9767e2899", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -20768,7 +20768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6af0e352-2a0e-45b8-8f95-b50ae526673c", + "id": "62faaa8e-1fdb-47b0-8183-3f647b6e84e5", "name": "Out of free quota.", "originalRequest": { "url": { @@ -20858,7 +20858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76cde9d4-14b8-49aa-bad7-dfad51d5f65f", + "id": "f0c8eded-0dcf-4df2-8bbe-eb4bca929d2e", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -20948,7 +20948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98572c2e-2826-4143-ab08-7a28ce1b2399", + "id": "bf03c835-07e3-4744-ae46-629d7944b0ee", "name": "Validation Error", "originalRequest": { "url": { @@ -21038,7 +21038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09d9e3d1-7050-44e4-a520-359b6f460f88", + "id": "6011a787-9b8f-4bfa-ad49-94fa25583a21", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21140,7 +21140,7 @@ "description": "The Datasets API enables you to store, manage, and analyze geospatial data collections. Work with custom datasets containing points, lines, or polygons - with each feature defined by its geometry and properties.\n\n* Create and manage datasets from uploaded Shapefile data\n* Import data from external sources via URL or scheduled updates\n* Monitor dataset status and processing through detailed status reports\n* Schedule dataset deletion for proper data lifecycle management\n* Leverage high accuracy storage for location-dependent business processes\n\nIdeal for applications that require precise location analysis, spatial queries and geographic data management.\n", "item": [ { - "id": "51a80ec6-e345-4e90-be80-c78492480c7c", + "id": "bf7ad7d0-1fe9-45ed-b2a5-c3855d8ce3f8", "name": "Get Dataset", "request": { "name": "Get Dataset", @@ -21198,7 +21198,7 @@ }, "response": [ { - "id": "ace7effe-f4a9-4d4d-ad20-e67a996fc395", + "id": "48196725-b873-4ed7-ba07-a5ce8b7dd97b", "name": "Successful Response", "originalRequest": { "url": { @@ -21243,7 +21243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44dcfb50-43fe-457a-9168-60804eff747d", + "id": "a51e6927-3564-4df8-8b4f-e64c8f0a7094", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -21288,7 +21288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47cb7900-5cc9-4cf0-8a22-0db0dbb9cac6", + "id": "2fea44a4-b375-4dd9-8f9f-dec0e1f0d928", "name": "Out of free quota.", "originalRequest": { "url": { @@ -21333,7 +21333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de6e973f-bca2-4686-b7c4-f513cc8ce0d3", + "id": "680607b8-fed2-48d1-81db-606cfc625553", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -21378,7 +21378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38a4ca86-a6ee-42ae-8ced-5d7db06f6a9e", + "id": "7d5ee247-1bed-450a-b1bd-786836b9d954", "name": "Dataset was not found", "originalRequest": { "url": { @@ -21423,7 +21423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6967fc1-a1c0-41c0-9224-80e68cb5cd43", + "id": "4f487c58-a178-4a3b-8708-3d082b912a7b", "name": "Validation Error", "originalRequest": { "url": { @@ -21468,7 +21468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5282cd4-d890-4d0b-a5b8-6f4d91f5d20c", + "id": "e06c8d88-4ebd-453e-be47-b7e9af87d4f0", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21519,7 +21519,7 @@ } }, { - "id": "a86149ca-20b3-4166-9e96-b5b6c1bd4d8b", + "id": "3af77dbc-e6e9-4d66-a7ea-7c9a0419801b", "name": "Delete Dataset", "request": { "name": "Delete Dataset", @@ -21577,7 +21577,7 @@ }, "response": [ { - "id": "cb9269c0-0747-47fd-877a-37a178f71b98", + "id": "eae84d1a-e189-4967-aadf-51d3d62b111b", "name": "Successful Response", "originalRequest": { "url": { @@ -21617,12 +21617,12 @@ "value": "application/json" } ], - "body": "{\n \"elit8a5\": false,\n \"dolor_af\": false\n}", + "body": "{\n \"et2a\": true,\n \"culpa5\": -46374697\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a044b214-e9fa-4cd8-b760-152fb9afcc64", + "id": "27ddfde1-5686-417c-978b-4f4032877bf6", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -21667,7 +21667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73ea8200-fc11-4bf7-b800-f8b1d82b51eb", + "id": "50d6861b-402e-4cfd-885c-ddae46f39c33", "name": "Out of free quota.", "originalRequest": { "url": { @@ -21712,7 +21712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "052322cc-4979-4d57-82cb-b85dcc98bae8", + "id": "8ae6851e-ff53-4c21-a3f5-08475c4391ed", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -21757,7 +21757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c3889ab-419c-4195-91d1-e82b7e94c033", + "id": "89ea43d7-4ee2-49f7-a7da-c3b456c92b8f", "name": "Dataset was not found", "originalRequest": { "url": { @@ -21802,7 +21802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bddb5a0a-05f1-427a-886a-acca3547267c", + "id": "ab97c869-f1ee-436f-a4ef-c77739c2941f", "name": "The Dataset was already scheduled for deletion.", "originalRequest": { "url": { @@ -21847,7 +21847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "861b6891-e18c-417f-8544-19f1ee4d97d2", + "id": "84e92d69-9365-486c-9d70-781fd42d6722", "name": "Validation Error", "originalRequest": { "url": { @@ -21892,7 +21892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7b4a00d-f4db-4e74-8ed0-0dc017839eef", + "id": "b0502acd-1daa-4bea-b9f0-cc08bb0e4493", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21943,7 +21943,7 @@ } }, { - "id": "63dd34d5-7a1b-4d41-8555-9cb56390e9d2", + "id": "f2967622-bc20-4d51-b022-834c1141e2e9", "name": "Update Dataset", "request": { "name": "Update Dataset", @@ -22014,7 +22014,7 @@ }, "response": [ { - "id": "b6437f96-4815-45bd-970c-0fae32e719be", + "id": "e0fc9ccd-0aa9-4d2e-9ab8-eee36b79859f", "name": "Successful Response", "originalRequest": { "url": { @@ -22072,7 +22072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f12e2d62-221f-4c8a-9fd8-0ebbb6f057ed", + "id": "64980693-300a-465c-9a03-9b754a21570a", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -22130,7 +22130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84116432-fae2-4fc3-b5ae-d218031c1b6a", + "id": "e195443e-514e-4b5c-9195-005c59ba977d", "name": "Out of free quota.", "originalRequest": { "url": { @@ -22188,7 +22188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31a680d4-187c-4b1e-bda6-62403e2c77ee", + "id": "96f9bf76-8360-4045-9f2d-a6fa25195367", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -22246,7 +22246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f257a931-0037-4506-97a6-29413b03a814", + "id": "64d7c830-d0ec-4588-b2ff-d9c13d6b574a", "name": "Dataset was not found", "originalRequest": { "url": { @@ -22304,7 +22304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deac6775-6fbe-45c9-8f0a-c360168622eb", + "id": "93e3bf09-d7f8-4592-9101-7b7a98b17f1a", "name": "Validation Error", "originalRequest": { "url": { @@ -22362,7 +22362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f280e8cb-21e8-4e07-81c0-7cc43431c91b", + "id": "f797f097-1e18-4504-8f51-9978403050c6", "name": "Rate limit reached", "originalRequest": { "url": { @@ -22426,7 +22426,7 @@ } }, { - "id": "74f763fc-8de7-46b3-91a9-68092291d173", + "id": "d7a07776-ccf6-4911-9b95-997ef72195c3", "name": "List Datasets", "request": { "name": "List Datasets", @@ -22492,7 +22492,7 @@ }, "response": [ { - "id": "5658b49a-a363-4b49-81ef-f092ff888eb3", + "id": "f245393b-b2c8-48c6-ba85-1b64a807fe8e", "name": "Successful Response", "originalRequest": { "url": { @@ -22555,7 +22555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f6d195f-97f1-46eb-97cb-cdeaf1b09256", + "id": "860ddef0-efc0-4e0c-a520-78eed2055344", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -22618,7 +22618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "175d3343-0015-4590-999a-d1d24230075d", + "id": "3296b4ba-ce9e-40ff-8b79-c0b346e14199", "name": "Out of free quota.", "originalRequest": { "url": { @@ -22681,7 +22681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "749191e2-cc58-476d-9979-1957431404a0", + "id": "aa71a048-cd0f-4b33-b22a-d6e688fe4991", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -22744,7 +22744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c56617ea-3cb6-4de3-a965-19a1a3906612", + "id": "aa465fa0-a0b4-4e20-afe3-b7ec4e331b89", "name": "Validation Error", "originalRequest": { "url": { @@ -22807,7 +22807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "644ac419-59d3-400b-9817-be91b873bce6", + "id": "3a8eb4fc-2db6-432a-a5ea-ce9e99037c18", "name": "Rate limit reached", "originalRequest": { "url": { @@ -22876,7 +22876,7 @@ } }, { - "id": "d7cc62b7-0878-44cf-990f-46a7cdea3b88", + "id": "4eaa9d6a-0db6-4055-b701-12e2c256ae78", "name": "Create Dataset", "request": { "name": "Create Dataset", @@ -22936,7 +22936,7 @@ }, "response": [ { - "id": "c863b7c0-be89-40bb-89e1-de6194d8148a", + "id": "2b81ef35-ecaf-4b8c-b93c-44b50a2296b6", "name": "Successful Response", "originalRequest": { "url": { @@ -22994,7 +22994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04bd6825-fc3b-4f28-b74a-8215e61c0eb9", + "id": "fa439ff9-78e3-4d5b-a2a9-48b1b4f5ee05", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23052,7 +23052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c566b8a-dd58-46e7-8f4e-a4eefa2490ea", + "id": "fc851d2f-4d09-4084-94c5-45ba5377745c", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23110,7 +23110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bae7085-915d-40c9-a917-0b4d7ac4bbf4", + "id": "9478b169-c81e-463b-b4d5-ef5ab4489a97", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23168,7 +23168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42f0014e-f9df-402c-9efc-7dbfbd82ea06", + "id": "3665f71d-dc23-436e-9c93-480dbc5f214e", "name": "Validation Error", "originalRequest": { "url": { @@ -23226,7 +23226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33debf13-b638-428c-af70-4393d32d136c", + "id": "a1466397-97d7-44f7-a422-3878cd77381a", "name": "Rate limit reached", "originalRequest": { "url": { @@ -23290,7 +23290,7 @@ } }, { - "id": "037979fe-4f09-43e5-89c4-032d85313425", + "id": "5711330c-270f-461d-b6ed-f8547a89d5da", "name": "Get Dataset Status", "request": { "name": "Get Dataset Status", @@ -23349,7 +23349,7 @@ }, "response": [ { - "id": "1c2ced27-564b-4d5d-bddb-69e8308a5ae0", + "id": "a7823a00-6fa9-4970-9757-543faf9e4ec1", "name": "Successful Response", "originalRequest": { "url": { @@ -23390,12 +23390,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"steps\": [\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"info\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n }\n ],\n \"status\": \"failed\"\n },\n {\n \"name\": \"fetch\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n }\n ],\n \"status\": \"success\"\n }\n ],\n \"status\": \"success\"\n}", + "body": "{\n \"id\": \"\",\n \"steps\": [\n {\n \"name\": \"fetch\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"info\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n }\n ],\n \"status\": \"failed\"\n },\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n }\n ],\n \"status\": \"in_progress\"\n }\n ],\n \"status\": \"failed\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "101e0183-77b8-4b34-afba-d83a4afd179d", + "id": "a8fc329c-a288-4437-a6e4-2b894a9e3d67", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23441,7 +23441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "105d1451-fd34-4f13-baf0-3241b1fae99e", + "id": "e536c4a5-22bf-41d6-ac11-bde8ae9e1468", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23487,7 +23487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "078a6407-f7a0-4292-908c-f8da42cfa757", + "id": "04cbbc5f-a8c8-47fe-ae56-cbb74b51c22c", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23533,7 +23533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b388aedd-ce0d-4618-8d8f-205eb4e5f0cc", + "id": "b3a42175-73ce-43e4-8b5f-17290ad9350f", "name": "Dataset was not found", "originalRequest": { "url": { @@ -23579,7 +23579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a09e74d7-391e-43b1-93bd-9e37b9ec69b2", + "id": "2ace4ef9-14f7-4b5a-8787-0a0af7b47ac2", "name": "Validation Error", "originalRequest": { "url": { @@ -23625,7 +23625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5c2b39f-8d17-48bc-8ff4-b1c47976b7a9", + "id": "1e8b4302-fbf6-433b-96e9-b758fd6239f5", "name": "Rate limit reached", "originalRequest": { "url": { @@ -23677,7 +23677,7 @@ } }, { - "id": "02731512-7758-4307-b8e4-22a8377fdd88", + "id": "36843e8c-17fd-4243-b874-506ac272d2e3", "name": "Trigger Import", "request": { "name": "Trigger Import", @@ -23736,7 +23736,7 @@ }, "response": [ { - "id": "0a1d8b71-87c4-496e-9f96-47e6f88dd9ca", + "id": "5b6ad51f-ce5d-4dad-bb33-be2184acf496", "name": "Successful Response", "originalRequest": { "url": { @@ -23782,7 +23782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "808b5563-fc06-47ab-a9ec-ad86a724cd00", + "id": "33c4a549-192d-4cf2-b228-b5cf65763104", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23828,7 +23828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dae8299c-cdc7-4506-9604-cea0e4b77252", + "id": "7c408a60-ea95-4f41-870d-d2f2d16a785c", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23874,7 +23874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c6c2ccc-f2b2-4c09-b518-7bc50b37bbbf", + "id": "31801913-c243-4be8-bd4f-3734bae21243", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23920,7 +23920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "682c066a-22a1-45b2-a661-e436389af61c", + "id": "07d26d05-328c-4d51-9f1d-03b1fc36f44b", "name": "Dataset was not found", "originalRequest": { "url": { @@ -23966,7 +23966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f462a0e-74d4-45c7-a193-31f8e1fd2380", + "id": "a020ea82-5819-43f8-9dd3-0a759d728c80", "name": "Validation Error", "originalRequest": { "url": { @@ -24012,7 +24012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6b5751f-2d64-4653-991b-7b6160b54a5d", + "id": "21a82ec1-3158-48ff-b61f-f12d1cfa682b", "name": "Rate limit reached", "originalRequest": { "url": { @@ -24064,7 +24064,7 @@ } }, { - "id": "3f23ac43-15b8-4880-9de0-97417391f716", + "id": "793c2aa8-31e7-4d41-8190-b8cd23fb90b7", "name": "Reimport Dataset Webhook", "request": { "name": "Reimport Dataset Webhook", @@ -24108,7 +24108,7 @@ }, "response": [ { - "id": "e49048ee-ebb4-45a7-959b-01ed392193b7", + "id": "e5429ba8-2390-4e1c-9642-cd1cc0bee7d1", "name": "Successful Response", "originalRequest": { "url": { @@ -24146,7 +24146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a567814-907b-4630-b4ab-4b06cea9b865", + "id": "b33d1933-c60c-426a-97ac-e4a57ecdaeda", "name": "Unauthorized", "originalRequest": { "url": { @@ -24172,7 +24172,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f7d557ec-89a1-4f5a-9692-a6a06279b22b", + "id": "0074e2dc-ff05-42a4-845b-2fcc8ebc9436", "name": "Payment Required", "originalRequest": { "url": { @@ -24198,7 +24198,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bf1032db-93b0-498d-82e5-9d0cc50b3e74", + "id": "71b8f42a-2bcf-49a1-844a-25349ef00b26", "name": "Forbidden", "originalRequest": { "url": { @@ -24224,7 +24224,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b6d573fe-c637-4201-8a90-9b4f27aefb6c", + "id": "6dcbb394-9f1e-4ce9-8008-b7b70bb964aa", "name": "Dataset was not found", "originalRequest": { "url": { @@ -24262,7 +24262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82de3364-fbde-434f-8b70-69c36be05240", + "id": "3a478873-de4b-4191-b61e-9cca8745bab6", "name": "Validation Error", "originalRequest": { "url": { @@ -24300,7 +24300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3283841b-82c1-4760-acf8-5dcfda788d71", + "id": "77b26290-38a0-4e03-bb28-524162a25312", "name": "Rate limit reached", "originalRequest": { "url": { @@ -24350,7 +24350,7 @@ "description": "Perform powerful spatial analysis on your geospatial data with four key search capabilities:\n\n* Nearby search: Find features within a specified distance from a location\n* Contains search: Discover which features completely contain a point or geometry\n* Intersects search: Identify features that intersect with a given geometry\n* Within search: Locate features that fall entirely inside a specified boundary\n\nAll operations support attribute filtering with WHERE clauses, pagination for large results, and multiple geometry formats (GeoJSON, WKB, encoded polylines).\n", "item": [ { - "id": "9b7d1b14-e660-4dfa-8c87-1ffac08bc1bb", + "id": "200255b9-d8ad-4c38-b0c5-dd299d53cf68", "name": "Search Features", "request": { "name": "Search Features", @@ -24452,7 +24452,7 @@ }, "response": [ { - "id": "0dc3549d-95c3-4bd5-bfb0-29a66b37bdcb", + "id": "a65dc854-4b30-40e3-941b-d1352010b973", "name": "Successful Response", "originalRequest": { "url": { @@ -24535,12 +24535,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"do74\": 32202358.778785944,\n \"sit_1_d\": true,\n \"officia_87\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"voluptate7ca\": -66427598.60904533,\n \"sedd\": true,\n \"laboref1b\": \"in anim Ut adipisicing\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"velit_1e\": false,\n \"nulla_93\": -76418314.53380412\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"autedc\": \"irure ex labore consectetur\",\n \"id_718\": 1558350.8990016729\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fa3ce0e-3042-4587-af58-159caa9a0a78", + "id": "fa1ed969-cba9-4245-82c3-10cc04e8671b", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -24628,7 +24628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e3a131-a085-418d-a64b-bb78c54cebcd", + "id": "aeda7bad-7179-464b-a6a8-38595bcbc8f1", "name": "Out of free quota.", "originalRequest": { "url": { @@ -24716,7 +24716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e20803d9-52d7-41f3-8d60-452f272c4f4f", + "id": "2f6fddec-0c7a-4efe-8109-5c13f1938c0c", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -24804,7 +24804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c40497c-bddd-48bb-a588-8ecea5faf76b", + "id": "d7c48d5e-8e4a-4b0a-b3e6-651cefa7348a", "name": "Dataset was not found", "originalRequest": { "url": { @@ -24892,7 +24892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96e923ad-c196-459b-921b-eca8b9375737", + "id": "50e26963-a744-44f3-a443-9664e5fac596", "name": "Validation Error", "originalRequest": { "url": { @@ -24980,7 +24980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d99b8dd-7910-498b-a5b7-07bddd40ca35", + "id": "cd9b6bee-66b8-4819-b6ec-3377a6fc8756", "name": "Rate limit reached", "originalRequest": { "url": { @@ -25074,7 +25074,7 @@ } }, { - "id": "1631dfce-75e5-4d4d-9d0f-d3de8c3caed4", + "id": "44c36d46-c02b-4c61-9885-fe85295a94cf", "name": "Nearby Features", "request": { "name": "Nearby Features", @@ -25176,7 +25176,7 @@ }, "response": [ { - "id": "848d4ba2-f3f9-4dba-8dc6-6f6951588a54", + "id": "9c89e5a8-9daf-4fce-998b-b8e9da2ade21", "name": "Successful Response", "originalRequest": { "url": { @@ -25259,12 +25259,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"do74\": 32202358.778785944,\n \"sit_1_d\": true,\n \"officia_87\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"voluptate7ca\": -66427598.60904533,\n \"sedd\": true,\n \"laboref1b\": \"in anim Ut adipisicing\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"velit_1e\": false,\n \"nulla_93\": -76418314.53380412\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"autedc\": \"irure ex labore consectetur\",\n \"id_718\": 1558350.8990016729\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6a5db3c9-165f-4cae-9180-938c62a64d00", + "id": "d93f1df0-c89f-44c7-8edf-8c44ab30ef51", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -25352,7 +25352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef9527c3-11da-4924-94ad-478fabfca778", + "id": "686730f1-534a-41f5-bf7b-c8a32b238dec", "name": "Out of free quota.", "originalRequest": { "url": { @@ -25440,7 +25440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f6a5b98-0c37-42c3-b895-2506baddec7d", + "id": "5e28fcb7-389d-4aa9-9fa1-a461968143ac", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -25528,7 +25528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9877154d-c812-45bb-a454-0ba2479ab2fb", + "id": "9e5fee47-a244-4b58-b8e8-689f9058e09c", "name": "Dataset was not found", "originalRequest": { "url": { @@ -25616,7 +25616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5f0fdfb-d0c9-4045-ab34-3e70a6685876", + "id": "3d116414-3e24-40f5-817c-7d3c9d07c1c8", "name": "Validation Error", "originalRequest": { "url": { @@ -25704,7 +25704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e60adbd2-265d-482a-b586-ff5157b544f7", + "id": "92482039-810e-46d4-83c8-a884c431595b", "name": "Rate limit reached", "originalRequest": { "url": { @@ -25798,7 +25798,7 @@ } }, { - "id": "63f28aeb-67d0-4ce0-8360-bbb2f93717f0", + "id": "4fdc0074-7062-4b00-a9d8-c21878f69e99", "name": "Intersect Features", "request": { "name": "Intersect Features", @@ -25900,7 +25900,7 @@ }, "response": [ { - "id": "d3ff2a0f-c686-4aaf-b714-a37afe43a2d6", + "id": "353ba4e1-a734-4aa4-847f-c440199cd921", "name": "Successful Response", "originalRequest": { "url": { @@ -25983,12 +25983,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"do74\": 32202358.778785944,\n \"sit_1_d\": true,\n \"officia_87\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"voluptate7ca\": -66427598.60904533,\n \"sedd\": true,\n \"laboref1b\": \"in anim Ut adipisicing\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"velit_1e\": false,\n \"nulla_93\": -76418314.53380412\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"autedc\": \"irure ex labore consectetur\",\n \"id_718\": 1558350.8990016729\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d807c89-379b-4b15-b557-05dfa04d7e14", + "id": "78092a41-d370-4dc4-8489-bf3436aa2e25", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -26076,7 +26076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be2fdca1-68e7-49d9-87b0-b3ed53e1ee91", + "id": "8d5f996d-2086-473d-aeb5-d8b4ee3105ff", "name": "Out of free quota.", "originalRequest": { "url": { @@ -26164,7 +26164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f09f2454-f1d8-4ab8-bf85-4a378ef9d678", + "id": "be381b5d-c5ac-4c48-a525-2f99e0b5cb88", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -26252,7 +26252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51921bd5-6428-4f6a-899f-2a22c3293bc9", + "id": "2ba311c3-9f98-4975-9a55-c4515ff4d618", "name": "Dataset was not found", "originalRequest": { "url": { @@ -26340,7 +26340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aad1ff72-f9c7-4a61-a2bb-70aca0cbdf45", + "id": "c9a93caa-0516-4a37-b7aa-793e798a5cd1", "name": "Validation Error", "originalRequest": { "url": { @@ -26428,7 +26428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1958c02-0bd6-484f-b72a-143a79c7bfac", + "id": "a8ef206a-bbcb-45ae-a4ef-31a7edbe2c96", "name": "Rate limit reached", "originalRequest": { "url": { @@ -26522,7 +26522,7 @@ } }, { - "id": "2c378b50-a492-4d7d-b1f5-7e2fbb3422cd", + "id": "6ad7f74d-3318-421f-b15c-c01fb6129ae5", "name": "Contains Features", "request": { "name": "Contains Features", @@ -26624,7 +26624,7 @@ }, "response": [ { - "id": "0e840563-fa4e-4260-956a-4659fba97404", + "id": "6959993e-a334-4a6c-86ac-1f4e64ab5b4f", "name": "Successful Response", "originalRequest": { "url": { @@ -26707,12 +26707,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"do74\": 32202358.778785944,\n \"sit_1_d\": true,\n \"officia_87\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"voluptate7ca\": -66427598.60904533,\n \"sedd\": true,\n \"laboref1b\": \"in anim Ut adipisicing\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"velit_1e\": false,\n \"nulla_93\": -76418314.53380412\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"autedc\": \"irure ex labore consectetur\",\n \"id_718\": 1558350.8990016729\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3bfd06f3-d33b-4ed9-bf95-a1974bdf1a5d", + "id": "f90606f4-0acf-4546-8c1f-6719829808d8", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -26800,7 +26800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d27efb65-13bb-4585-8eca-d21afba5188b", + "id": "20770ec9-71c9-48c5-a878-23cfc4d5bb43", "name": "Out of free quota.", "originalRequest": { "url": { @@ -26888,7 +26888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0faf7d8c-96d9-4756-903f-54508c952a03", + "id": "64782f94-e1b1-4ac8-ae11-7e30342e880b", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -26976,7 +26976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b632759-a899-47f4-8dad-b9bb9e01d2dc", + "id": "31c23eff-5c1c-4292-8a99-99d709082728", "name": "Dataset was not found", "originalRequest": { "url": { @@ -27064,7 +27064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e056c494-9e33-4914-ba35-f3319fec6f00", + "id": "d6248b56-8d9d-463f-8676-c1925351a148", "name": "Validation Error", "originalRequest": { "url": { @@ -27152,7 +27152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "759c92bf-fecc-45a3-a9d6-66053e252e7b", + "id": "6f1a72cc-f062-4e06-a711-3e024725e972", "name": "Rate limit reached", "originalRequest": { "url": { @@ -27246,7 +27246,7 @@ } }, { - "id": "d64c7e72-ad92-4ae1-aa11-c40c33d955f9", + "id": "17adfe10-f801-4935-8037-8c0e3666c841", "name": "Within Features", "request": { "name": "Within Features", @@ -27348,7 +27348,7 @@ }, "response": [ { - "id": "f09f2890-4ce2-4600-9762-7b4ab33a04e7", + "id": "479de1cf-3b02-457c-95a3-492b80154610", "name": "Successful Response", "originalRequest": { "url": { @@ -27431,12 +27431,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"do74\": 32202358.778785944,\n \"sit_1_d\": true,\n \"officia_87\": false\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"voluptate7ca\": -66427598.60904533,\n \"sedd\": true,\n \"laboref1b\": \"in anim Ut adipisicing\"\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"velit_1e\": false,\n \"nulla_93\": -76418314.53380412\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"autedc\": \"irure ex labore consectetur\",\n \"id_718\": 1558350.8990016729\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bd12de8f-101f-4b08-b9f5-6c415e96de14", + "id": "c40d86f4-06b6-44c9-ba26-7145035f44d7", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -27524,7 +27524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d3943c6-5ec6-4868-9134-ff130d52be8f", + "id": "c0528e1e-1ee4-46aa-ba00-65360c72fb30", "name": "Out of free quota.", "originalRequest": { "url": { @@ -27612,7 +27612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fd01d6f-b342-49ec-a12d-8692fed6695d", + "id": "38933e34-a013-47a5-9a4d-a08caa89b527", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -27700,7 +27700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d46536c-510a-4b2b-b714-e30528bc3e63", + "id": "6324bce6-0bac-4760-a187-300189d6f1ca", "name": "Dataset was not found", "originalRequest": { "url": { @@ -27788,7 +27788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8d9ff92-1c66-4379-9bb1-5069e5af0354", + "id": "bcc7c1e9-6d2c-4734-976b-96df8824fe56", "name": "Validation Error", "originalRequest": { "url": { @@ -27876,7 +27876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b049a5dc-abd4-49a4-8dce-7242bde85683", + "id": "c59abfa2-408a-48db-bc68-96a622cf1b89", "name": "Rate limit reached", "originalRequest": { "url": { @@ -27976,7 +27976,7 @@ "description": "Access and retrieve individual geographic features from your datasets by their unique ID. This endpoint provides direct access to the complete geometry and properties of specific features within your datasets.\n\nThe API supports field masking to optimize response size by retrieving only needed attributes. Output formats include both GeoJSON and WKB, allowing flexible integration with various mapping and analysis systems.\n", "item": [ { - "id": "9b05d90e-6f14-4168-b24c-5e079c813738", + "id": "1eed76e3-4c42-4fe7-9d33-a10d55eb842e", "name": "Get Feature", "request": { "name": "Get Feature", @@ -28065,7 +28065,7 @@ }, "response": [ { - "id": "57b5d877-4361-4977-b97b-032de7506554", + "id": "435f4d89-135e-498c-9dcf-0112d1bf0055", "name": "Successful Response", "originalRequest": { "url": { @@ -28125,12 +28125,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"tempor6_e\": \"ex e\"\n }\n}", + "body": "{\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"Ut1\": 53013316.29298097\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90f27a50-8cb7-497a-a011-723ff11e0d83", + "id": "902537d5-7cd4-4341-9828-5040d0460817", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -28195,7 +28195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e51900ac-9a67-4a0e-8df6-f3b3a3e6dee6", + "id": "187a34ae-8a9d-40d7-b0f3-fb9f6d64115f", "name": "Out of free quota.", "originalRequest": { "url": { @@ -28260,7 +28260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "116867af-21ab-406a-a577-23bc5d8140ee", + "id": "b172f439-76d1-4da3-8086-dce2caccb583", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -28325,7 +28325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97cc6224-df2d-44b7-b2c0-56e7e1698ba2", + "id": "d2589532-6cf0-4783-8cc4-08cba1d6f08b", "name": "Feature or Dataset were not found", "originalRequest": { "url": { @@ -28390,7 +28390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d583190-ca43-4a47-bcf6-d50c04f6aa70", + "id": "14aa3f19-d31f-41eb-91c4-e21af44dbded", "name": "Validation Error", "originalRequest": { "url": { @@ -28455,7 +28455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "050ddc6e-494c-4e9c-8e9e-b030355874e5", + "id": "36366e4e-e5a1-4c25-91f4-74033b0e11d9", "name": "Rate limit reached", "originalRequest": { "url": { @@ -28540,7 +28540,7 @@ } ], "info": { - "_postman_id": "fdbc8693-e9f1-4a50-a94b-e51e9e4c031c", + "_postman_id": "27bbed07-c0df-4a66-8391-fe24fc4a32c3", "name": "Woosmap Platform API Reference", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { From 5b778f2c56ef729e18367c6eecf33cff9ff0134a Mon Sep 17 00:00:00 2001 From: christopher dartnell Date: Tue, 28 Oct 2025 18:21:05 +0100 Subject: [PATCH 8/9] fix: geocode types description --- specification/parameters/localities/geocode_types.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/specification/parameters/localities/geocode_types.yml b/specification/parameters/localities/geocode_types.yml index beaac906..cd38205c 100644 --- a/specification/parameters/localities/geocode_types.yml +++ b/specification/parameters/localities/geocode_types.yml @@ -1,15 +1,16 @@ name: types description: > - Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). - Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. - This parameter is ignored when used with the `latlng` parameter. - When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including: + When executing a geocode request with the `address` parameter, it specifies the types of suggestions to return in the query. + Multiple types can be combined using the pipe character (`|`) as a separator. + This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying. + This parameter is ignored when used with the `latlng` parameter. + schema: default: locality|postal_code|address From 101bbedb4282502a7afaaf08c36937a4a09f7548 Mon Sep 17 00:00:00 2001 From: gaelsimon Date: Tue, 28 Oct 2025 17:23:40 +0000 Subject: [PATCH 9/9] chore: update dist folder [skip ci] --- ...map_http_parameters_localitiesgeocode.html | 15 +- ...osmap_http_parameters_localitiesgeocode.md | 3 +- dist/merged-woosmap-openapi3.json | 2 +- dist/woosmap-openapi3.json | 2 +- dist/woosmap-openapi3.yml | 3 +- dist/woosmap-postman.json | 1046 ++++++++--------- 6 files changed, 536 insertions(+), 535 deletions(-) diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html index b00216a1..edfb615f 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.html @@ -109,13 +109,11 @@

    list_sub_buildings

  • types

    - Specify the types of geocoding responses to return by separating multiple - types with a pipe character (|). Specifies the types of suggestions to - return in the query. Multiple types can be combined using the pipe - character (|) as a separator. This parameter is ignored when - used with the latlng parameter. When executing a geocode - request with the address parameter, this parameter supports a - wide range of locality classifications, including: + When executing a geocode request with the address parameter, + it specifies the types of suggestions to return in the query. Multiple + types can be combined using the pipe character (|) as a + separator. This parameter supports a wide range of locality + classifications, including:

    • @@ -127,7 +125,8 @@

      types

    These classifications enable flexible geographic data representation and - querying. + querying. This parameter is ignored when used with the + latlng parameter.

  • diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md index 06ceef0c..40692e50 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md @@ -43,13 +43,14 @@ -

    types

    - Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including: + When executing a geocode request with the `address` parameter, it specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying. + This parameter is ignored when used with the `latlng` parameter.

    Generated from the OpenAPI specification. diff --git a/dist/merged-woosmap-openapi3.json b/dist/merged-woosmap-openapi3.json index 79839219..4b8979e6 100755 --- a/dist/merged-woosmap-openapi3.json +++ b/dist/merged-woosmap-openapi3.json @@ -11321,7 +11321,7 @@ }, "Woosmap_Platform_API_Reference_geocode_types": { "name": "types", - "description": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", + "description": "When executing a geocode request with the `address` parameter, it specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\nThis parameter is ignored when used with the `latlng` parameter. \n", "schema": { "default": "locality|postal_code|address", "example": "locality|admin_level", diff --git a/dist/woosmap-openapi3.json b/dist/woosmap-openapi3.json index cb1c5e84..8c8ae1fe 100755 --- a/dist/woosmap-openapi3.json +++ b/dist/woosmap-openapi3.json @@ -6579,7 +6579,7 @@ }, "geocode_types": { "name": "types", - "description": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", + "description": "When executing a geocode request with the `address` parameter, it specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\nThis parameter is ignored when used with the `latlng` parameter. \n", "schema": { "default": "locality|postal_code|address", "example": "locality|admin_level", diff --git a/dist/woosmap-openapi3.yml b/dist/woosmap-openapi3.yml index b424e943..57df8e84 100755 --- a/dist/woosmap-openapi3.yml +++ b/dist/woosmap-openapi3.yml @@ -5734,12 +5734,13 @@ components: geocode_types: name: types description: | - Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including: + When executing a geocode request with the `address` parameter, it specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including: - Standard locality types (e.g., cities, administrative areas, postal codes) - Points of Interest (POI) categories - POI aliases These classifications enable flexible geographic data representation and querying. + This parameter is ignored when used with the `latlng` parameter. schema: default: locality|postal_code|address example: locality|admin_level diff --git a/dist/woosmap-postman.json b/dist/woosmap-postman.json index 480f0aa7..f879c711 100755 --- a/dist/woosmap-postman.json +++ b/dist/woosmap-postman.json @@ -5,7 +5,7 @@ "description": "Stores Search API lets you query the Assets which are returned as a [GeoJson](https://geojson.org/). Request is done over HTTPS using GET. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/). If your request returns a high number of assets, the result will be paginated. If so, you can request assets by page using `page` and `stores_by_page` parameters (Default is **100**, max is **300**).\n", "item": [ { - "id": "9d845d2b-f556-456e-84a4-b4fd57bdd034", + "id": "5c31b698-5e0d-4d50-b70d-70f3c7baa704", "name": "Search for assets", "request": { "name": "Search for assets", @@ -128,7 +128,7 @@ }, "response": [ { - "id": "3e998904-5d4c-48bc-a455-451b283bbf5b", + "id": "75ee865d-313f-4127-b914-3ecb38b0ee5e", "name": "Assets successfully retrieved", "originalRequest": { "url": { @@ -243,12 +243,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n}", + "body": "{\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"aliquaab\": false\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"exercitation6_3\": -68860699,\n \"incididunt_1\": true,\n \"nisi_a13\": true\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d18ff304-2857-4fcd-8108-f6c3663c6828", + "id": "2f46199f-0413-4d07-a18c-ed574a3d715b", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -368,7 +368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9752aecd-2e73-4dc9-84e0-6ce688a93df5", + "id": "93ea173b-445b-40c3-bf87-d2b748f90673", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -488,7 +488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28b0ee3f-c369-47c1-89dd-f9c60633cc37", + "id": "5347ecca-8e6c-482f-a3a8-9e869847eaf3", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -614,7 +614,7 @@ } }, { - "id": "db54de25-acf9-4b72-a188-e49999e13464", + "id": "bf8d98e7-2c2a-4b1f-a8c1-8a8f3985c9b0", "name": "Autocomplete for assets", "request": { "name": "Autocomplete for assets", @@ -692,7 +692,7 @@ }, "response": [ { - "id": "ce1bdfca-c645-4614-8ce2-9b62ad3dafcb", + "id": "46ac885b-8e3a-4cef-9c18-d4a74d50489d", "name": "Assets Successfully Replaced", "originalRequest": { "url": { @@ -762,12 +762,12 @@ "value": "application/json" } ], - "body": "{\n \"predictions\": [\n {\n \"name\": \"consequat mollit est nostrud\",\n \"highlighted\": \"l\",\n \"store_id\": {},\n \"types\": {}\n },\n {\n \"name\": \"cillum mollit est incididunt\",\n \"highlighted\": \"u\",\n \"store_id\": {},\n \"types\": {}\n }\n ]\n}", + "body": "{\n \"predictions\": [\n {\n \"name\": \"nulla\",\n \"highlighted\": \"nulla dolore nisi enim\",\n \"store_id\": {},\n \"types\": {}\n },\n {\n \"name\": \"culpa irure ea\",\n \"highlighted\": \"reprehenderit Ut est\",\n \"store_id\": {},\n \"types\": {}\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0ddf279-3776-4e1e-a357-59ba9f9a8062", + "id": "33b1d869-c954-43b8-8df3-89e9aa9368ab", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -842,7 +842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d857db75-b405-46c0-8264-a8789d700470", + "id": "7faeec37-bc64-48ea-b131-a5eeb825fea5", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -917,7 +917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce1b7532-67ec-4dd5-acc3-8866440aee0e", + "id": "1dfe1a16-6aeb-4df4-8992-e64744000ed3", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -998,7 +998,7 @@ } }, { - "id": "d4ff8fc5-e44e-4367-a9f0-e1fd1b9e885d", + "id": "864d4100-74e7-47dc-95c2-e2032888574c", "name": "Bounds for assets", "request": { "name": "Bounds for assets", @@ -1086,7 +1086,7 @@ }, "response": [ { - "id": "30581120-ec53-43bd-8445-9b2f8d66363b", + "id": "214b34ae-9d4f-4a1f-b40e-a231db9c62f6", "name": "Bounds successfully retrieved", "originalRequest": { "url": { @@ -1171,7 +1171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cf58e16-375c-4022-a6ee-dc19182cec31", + "id": "4394ce4a-d70d-488d-b33b-cbb107408ce0", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1256,7 +1256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ee6cf2a-a6b5-4181-80c0-5966a4ed69d2", + "id": "0fad2c9f-b640-47b2-b2c1-08b10f33bc11", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -1341,7 +1341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3756de1-0aca-47a6-9061-1dcef8e5a92e", + "id": "5fb9ae72-d46f-4f5d-b126-506b4a8ac0b4", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -1438,7 +1438,7 @@ "description": "The Data Management API is a web service that uses an HTTP request to manage, create or edit your Assets. The API only supports JSON. So you have to create a JSON file with your assets’ addresses and other information. You’ll need to convert, or geocode, the addresses in your file to latitude/longitude (`lat` / `long`) coordinates. Those coordinates will be used for most of Woosmap features like [local searches](https://developers.woosmap.com/products/search-api/get-started/), [stores nearby a user location](https://developers.woosmap.com/products/geolocation-api/stores/) or for displaying markers on a map with [Woosmap Javascript API](https://developers.woosmap.com/products/js-api/get-started/).\n", "item": [ { - "id": "477b2bdc-cc3d-4bb0-b92e-c0d316be6a22", + "id": "2b8b4ea5-d48b-44a6-aa94-9a6e1b950a0d", "name": "Create your Assets", "request": { "name": "Create your Assets", @@ -1472,7 +1472,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1500,7 +1500,7 @@ }, "response": [ { - "id": "95d38841-c3d3-4446-81a7-96003fa51239", + "id": "6e14e551-81d6-42e7-ad7a-ee9b1d9fc5d4", "name": "Assets successfully created", "originalRequest": { "url": { @@ -1538,7 +1538,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1560,7 +1560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dad2dc86-6555-4d63-9cbf-b7d37c592a1d", + "id": "39682e81-0859-4fbd-916b-813bde95ba49", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -1598,7 +1598,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1620,7 +1620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac87a624-c95e-424f-8d39-ce6cc173d272", + "id": "4d5b3cbc-74d0-4e6a-92fa-4ba84665f540", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1658,7 +1658,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1680,7 +1680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f7e1922-a1b2-437d-a5b2-a88bff005bc6", + "id": "33787675-9c3f-484b-918f-af42f3003d2d", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -1718,7 +1718,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1746,7 +1746,7 @@ } }, { - "id": "59fd6964-5172-4485-9015-c13f61e031cf", + "id": "9fb53242-1e2b-41de-ba41-c5ac45de990f", "name": "Update the Assets", "request": { "name": "Update the Assets", @@ -1780,7 +1780,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1808,7 +1808,7 @@ }, "response": [ { - "id": "dc894fc6-5cfe-4aa5-8df4-88fe05603d43", + "id": "34bddda9-a5a7-4847-8515-a870551365e9", "name": "Assets successfully updated", "originalRequest": { "url": { @@ -1846,7 +1846,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1868,7 +1868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8325e8ae-4897-440b-976d-8afa69c68ab3", + "id": "d7f6230b-deb1-423e-b1a6-462b2e5ef517", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -1906,7 +1906,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1928,7 +1928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61ad73b7-c14d-43f5-a0c6-d5c16f3abb6a", + "id": "eed460a5-cd52-4ebd-a07e-7722ab6b722e", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -1966,7 +1966,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -1988,7 +1988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38c6b00f-2d38-4ba7-95c8-606fb298f49e", + "id": "3e3bb72e-9de2-4fdc-af6b-082ddc4a1062", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2026,7 +2026,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2054,7 +2054,7 @@ } }, { - "id": "937bdd7a-d680-4230-b043-b7149ee7045e", + "id": "50986fe2-a15c-4682-b435-ac93d8108b4a", "name": "Delete the Assets", "request": { "name": "Delete the Assets", @@ -2113,7 +2113,7 @@ }, "response": [ { - "id": "49563e87-1e5b-4b85-80ea-36657ace97a9", + "id": "d5794433-233e-4032-98e6-76bf13bd64df", "name": "Assets successfully deleted", "originalRequest": { "url": { @@ -2169,7 +2169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d54c005-cf74-4ffc-80ff-abc5cd893f82", + "id": "ca57963d-7db9-454a-8197-f9702f1e0467", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2225,7 +2225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c01d324-02c8-4a01-b7a9-292075895a71", + "id": "21b8be7a-7e3a-41be-b2d2-84e9794c9d8b", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2287,7 +2287,7 @@ } }, { - "id": "9c9b6acd-0dce-4169-813e-6dccaa43b821", + "id": "8a70d66b-6ba0-4bcd-b258-fad550c4c4e1", "name": "Get Asset from ID", "request": { "name": "Get Asset from ID", @@ -2348,7 +2348,7 @@ }, "response": [ { - "id": "af23c747-16bf-4632-ae1e-a93c01a2f54b", + "id": "de3556b3-cb68-4839-a2e7-7663b48e3eb9", "name": "Asset successfully retrieved", "originalRequest": { "url": { @@ -2391,12 +2391,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n}", + "body": "{\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"minim_1\": \"in occaecat in\",\n \"Excepteurdb\": -66351488.876486495\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "060fdd17-304f-4a66-bc5e-0573aef0817c", + "id": "692c3cf7-3c66-4572-b0b4-85b17edb633f", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2444,7 +2444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceebce7a-034d-4259-a041-9bf404bdb1a3", + "id": "7f95829b-3535-4f0f-8202-be2b8790b6a7", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2492,7 +2492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b20309d7-5054-4b50-bd61-85d6656d320a", + "id": "e4bb1bb5-15a4-48d3-906e-018fcf14cc1e", "name": "Not Found - `storeId` do not exist.", "originalRequest": { "url": { @@ -2534,7 +2534,7 @@ } }, { - "id": "2b7761d5-947a-42b4-be3f-fb42b7d5c8d4", + "id": "71a9ac18-03fd-4728-b03e-be556a5a60f6", "name": "Replace all assets", "request": { "name": "Replace all assets", @@ -2569,7 +2569,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2597,7 +2597,7 @@ }, "response": [ { - "id": "931427e3-023c-4dbc-b710-74c71caafacf", + "id": "fb223b87-86b8-4bb9-99d9-e2bd576bc6c2", "name": "Assets successfully replaced", "originalRequest": { "url": { @@ -2636,7 +2636,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2658,7 +2658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53b12ddf-f468-40cc-ac3d-88d2f3bb8244", + "id": "7a3b0437-9e49-4d6b-9d02-8502e6fa2949", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -2697,7 +2697,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2719,7 +2719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b944167-073a-4d08-bd53-e622a98b57ae", + "id": "59b1650c-47c1-469a-912c-6d9b06d64dbb", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -2758,7 +2758,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2780,7 +2780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b3fadbf-f4d5-45c4-97dd-1824d5311046", + "id": "a3d73381-fa58-4c03-a753-4940c4cde7c7", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -2819,7 +2819,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", + "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": {\n \"ut_9bf\": false,\n \"eiusmod_907\": -59111190\n },\n \"localizedNames\": {},\n \"openingHours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n }\n },\n {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"name\": \"\",\n \"storeId\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"countryCode\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"userProperties\": null,\n \"localizedNames\": {},\n \"openingHours\": null\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2853,7 +2853,7 @@ "description": "Geolocation API returns a location (or nearby stores) and accuracy radius based on an IP address. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "4b3125ee-e6be-4bf9-a462-27e28163d56b", + "id": "214cba19-8215-40c0-aaa3-5865b3467606", "name": "Geolocation from an IP address", "request": { "name": "Geolocation from an IP address", @@ -2913,7 +2913,7 @@ }, "response": [ { - "id": "7a764f05-32af-400f-aabe-8894ca95ee0d", + "id": "76acc358-b13c-4a2f-acdf-71eade5e1251", "name": "Geolocation successfully retrieved", "originalRequest": { "url": { @@ -2970,7 +2970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcc45456-9422-42be-8691-badc5d060cbb", + "id": "3ff03b9a-a971-4ef6-8a6b-b6e2fac241cf", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3027,7 +3027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f13bf6e4-0077-4137-98b6-59451b8fb619", + "id": "848768f9-dece-4580-94ab-ee016433210b", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3084,7 +3084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46769969-3469-46e9-ac8e-fac93871da5c", + "id": "ec5154d7-4471-4e1b-b736-e5b9c80de748", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3147,7 +3147,7 @@ } }, { - "id": "629aec6d-be20-46b0-a0ea-4232b1a855cb", + "id": "edc7a3bb-55f4-4c17-a213-1c7cda144c3b", "name": "Assets nearby a Geolocation", "request": { "name": "Assets nearby a Geolocation", @@ -3225,7 +3225,7 @@ }, "response": [ { - "id": "1535a7d4-615e-4468-a13b-9df4a4c4097b", + "id": "920fec93-65c4-4d21-9010-e047ab5ae7c7", "name": "Geolocation and Stores successufully retrieved", "originalRequest": { "url": { @@ -3295,12 +3295,12 @@ "value": "application/json" } ], - "body": "{\n \"stores\": {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"esse_f4\": 38919972.38158688\n },\n \"opening_hours\": null,\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": null,\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"accuracy\": \"\",\n \"latitude\": \"\",\n \"longitude\": \"\",\n \"country_code\": \"\",\n \"country_name\": \"\",\n \"continent\": \"\",\n \"region_state\": \"\",\n \"city\": \"\",\n \"postal_code\": \"\",\n \"timezone\": \"\",\n \"raw_offset\": \"\",\n \"dst_offset\": \"\"\n}", + "body": "{\n \"stores\": {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"Lorem_2\": -42944700\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n },\n {\n \"type\": \"Feature\",\n \"properties\": {\n \"name\": \"\",\n \"store_id\": \"\",\n \"address\": {\n \"lines\": [\n \"\",\n \"\"\n ],\n \"country_code\": \"\",\n \"city\": \"\",\n \"zipcode\": \"\"\n },\n \"contact\": {\n \"website\": \"\",\n \"phone\": \"\",\n \"email\": \"\"\n },\n \"open\": {\n \"current_slice\": {\n \"start\": \"\",\n \"end\": \"\"\n },\n \"open_hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"open_now\": \"\",\n \"next_opening\": {\n \"end\": \"\",\n \"start\": \"\",\n \"day\": \"\"\n },\n \"week_day\": \"\"\n },\n \"weekly_opening\": {\n \"1\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"2\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"3\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"4\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"5\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"6\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"7\": {\n \"hours\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"isSpecial\": \"\"\n },\n \"timezone\": \"\"\n },\n \"types\": [\n \"\",\n \"\"\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"last_updated\": \"\",\n \"user_properties\": {\n \"ipsum6b5\": 45715140.18308151\n },\n \"opening_hours\": {\n \"timezone\": \"\",\n \"usual\": {\n \"1\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"3\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"4\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"5\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"6\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"7\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"default\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n },\n \"special\": {\n \"2015-02-07\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ],\n \"2015-02-08\": [\n {\n \"start\": \"\",\n \"end\": \"\"\n },\n {\n \"start\": \"\",\n \"end\": \"\"\n }\n ]\n }\n },\n \"distance\": \"\"\n },\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n \"\",\n \"\"\n ]\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"pageCount\": \"\"\n }\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"accuracy\": \"\",\n \"latitude\": \"\",\n \"longitude\": \"\",\n \"country_code\": \"\",\n \"country_name\": \"\",\n \"continent\": \"\",\n \"region_state\": \"\",\n \"city\": \"\",\n \"postal_code\": \"\",\n \"timezone\": \"\",\n \"raw_offset\": \"\",\n \"dst_offset\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "526f898f-2817-4e3f-8201-08136a98906f", + "id": "5c75d7c5-9bf7-4e4e-b281-16a871e9b04a", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3375,7 +3375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d22f451c-7d62-443f-8c52-349d2dc5c149", + "id": "7219a509-3a65-4737-ac4d-8b9f61f73b43", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3450,7 +3450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58a3b2e8-b7c5-4baa-89e8-d87fad1d7f60", + "id": "6e01dc5d-97d8-47e5-86ac-edcb01c3cbfa", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3531,7 +3531,7 @@ } }, { - "id": "d69960a7-5afe-4de8-9ae2-4bfbcd88ee44", + "id": "6f1a1b6c-9086-4947-b004-d790aa801b09", "name": "Timezone", "request": { "name": "Timezone", @@ -3600,7 +3600,7 @@ }, "response": [ { - "id": "9940e1dd-1d40-42a1-ac3b-b41db3a5f117", + "id": "79d19a61-b79f-4801-b9b4-35d40ebddfe0", "name": "Timezone successfully retrieved", "originalRequest": { "url": { @@ -3666,7 +3666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "717ca092-79ce-4b23-99c1-e8a827d9bd50", + "id": "c8433976-edd5-492f-b67b-be92b96cefb6", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -3732,7 +3732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed2e21f2-5e19-4412-b978-23cbc1d49ce5", + "id": "1f2c34c8-88c7-43c8-a146-1833251ff5cc", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -3798,7 +3798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea6694a2-9472-425b-b7ac-2517cff6e1e2", + "id": "4dddd131-d3fc-47e8-ab29-ab14faae246a", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -3876,7 +3876,7 @@ "description": "Woosmap Localities API is a web service that returns a great amount of geographical places in response to an HTTP request. Among others are city names, postal codes, suburbs, addresses or airports. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "1bacfcb0-2aaf-4fff-824e-bcfc44727fb1", + "id": "b680665c-572b-40c6-bf0f-4791ad1b53f0", "name": "Autocomplete for Localities", "request": { "name": "Autocomplete for Localities", @@ -3912,7 +3912,7 @@ "type": "text/plain" }, "key": "types", - "value": "town" + "value": "admin_level" }, { "disabled": false, @@ -4017,7 +4017,7 @@ }, "response": [ { - "id": "14e93a33-b3a6-42d8-b9ca-7a4f67bf6c93", + "id": "601d55cb-0685-4427-b2dc-4926d2c8fe11", "name": "Autocompletion Localities successfully retrieved", "originalRequest": { "url": { @@ -4048,7 +4048,7 @@ "type": "text/plain" }, "key": "types", - "value": "town" + "value": "admin_level" }, { "disabled": false, @@ -4150,12 +4150,12 @@ "value": "application/json" } ], - "body": "{\n \"localities\": [\n {\n \"public_id\": \"\",\n \"types\": [\n \"admin_level\",\n \"postal_code\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n },\n {\n \"public_id\": \"\",\n \"types\": [\n \"country\",\n \"postal_code\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n }\n ]\n}", + "body": "{\n \"localities\": [\n {\n \"public_id\": \"\",\n \"types\": [\n \"hamlet\",\n \"suburb\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n },\n {\n \"public_id\": \"\",\n \"types\": [\n \"city\",\n \"neighbourhood\"\n ],\n \"type\": \"\",\n \"description\": \"\",\n \"matched_substrings\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"related\": {\n \"postal_codes\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n \"has_addresses\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0775f5ff-5a98-4e8e-9a6a-56bbb7f74b54", + "id": "85554894-3e7b-4de3-90ba-e93c35fcc597", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -4186,7 +4186,7 @@ "type": "text/plain" }, "key": "types", - "value": "town" + "value": "admin_level" }, { "disabled": false, @@ -4293,7 +4293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1f981eb-2c3a-4ede-b26e-c6a61bec2e98", + "id": "484464a2-17c5-45e0-8914-4a970a328bc4", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -4324,7 +4324,7 @@ "type": "text/plain" }, "key": "types", - "value": "town" + "value": "admin_level" }, { "disabled": false, @@ -4431,7 +4431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "026dd93b-6fca-466a-a541-323f9b1e8e19", + "id": "0a157a2e-417c-43a8-a897-3d7fe645ea35", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -4462,7 +4462,7 @@ "type": "text/plain" }, "key": "types", - "value": "town" + "value": "admin_level" }, { "disabled": false, @@ -4575,7 +4575,7 @@ } }, { - "id": "3cde9342-b8f0-42d1-965a-f6b9b36834cc", + "id": "43f5a7b5-59df-4fe6-85bc-8a4625325d5a", "name": "Details of a Locality", "request": { "name": "Details of a Locality", @@ -4629,7 +4629,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -4680,7 +4680,7 @@ }, "response": [ { - "id": "c6c35a42-ff5a-4eb3-9e29-61b753a2e074", + "id": "94247e09-55fc-4960-b1a2-988dabad2453", "name": "Details Localities successfully retrieved", "originalRequest": { "url": { @@ -4729,7 +4729,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -4777,12 +4777,12 @@ "value": "application/json" } ], - "body": "{\n \"result\": {\n \"public_id\": \"\",\n \"formatted_address\": \"\",\n \"types\": [\n \"postal_code\",\n \"locality\"\n ],\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n },\n \"accuracy\": \"DISTRICT\"\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"name\": \"\",\n \"administrative_area_label\": \"\",\n \"status\": \"not_yet_built\",\n \"addresses\": {\n \"pagination\": {\n \"page\": \"\",\n \"page_count\": \"\",\n \"addresses_per_page\": \"\",\n \"address_count\": \"\"\n },\n \"list\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"result\": {\n \"public_id\": \"\",\n \"formatted_address\": \"\",\n \"types\": [\n \"neighbourhood\",\n \"admin_level\"\n ],\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n },\n \"accuracy\": \"ROOFTOP\"\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"name\": \"\",\n \"administrative_area_label\": \"\",\n \"status\": \"not_yet_built\",\n \"addresses\": {\n \"pagination\": {\n \"page\": \"\",\n \"page_count\": \"\",\n \"addresses_per_page\": \"\",\n \"address_count\": \"\"\n },\n \"list\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "22a826a7-6fa3-4bc7-9780-648bf53fc8d9", + "id": "86ae657c-a1d7-4309-8291-2964041c1ed2", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -4831,7 +4831,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -4884,7 +4884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "114271ff-616c-4aa1-95b7-b3d994e9b2e3", + "id": "a3c2bb79-a65d-4ddf-8c6b-4e8ff4776eaa", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -4933,7 +4933,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -4986,7 +4986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e6ffb6e-1576-43cd-a96d-b164d2a73242", + "id": "0f82594f-7d2d-4af6-affd-aee79fc1783c", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -5035,7 +5035,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -5094,7 +5094,7 @@ } }, { - "id": "fc198c4a-7249-4f29-bbde-f9e341b3d9d7", + "id": "123e2df0-d54c-49f2-967d-1923bf783106", "name": "Geocode a locality or Reverse Geocode a latlng", "request": { "name": "Geocode a locality or Reverse Geocode a latlng", @@ -5135,11 +5135,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", + "content": "When executing a geocode request with the `address` parameter, it specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\nThis parameter is ignored when used with the `latlng` parameter. \n", "type": "text/plain" }, "key": "types", - "value": "town" + "value": "admin_level" }, { "disabled": false, @@ -5202,7 +5202,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" } ], "variable": [] @@ -5235,7 +5235,7 @@ }, "response": [ { - "id": "223a718d-1106-4fef-9cb4-a14cc99be1f4", + "id": "86962b09-9d96-47fb-b935-454f902dc619", "name": "Request Localities Geocode successful", "originalRequest": { "url": { @@ -5271,11 +5271,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", + "content": "When executing a geocode request with the `address` parameter, it specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\nThis parameter is ignored when used with the `latlng` parameter. \n", "type": "text/plain" }, "key": "types", - "value": "town" + "value": "admin_level" }, { "disabled": false, @@ -5338,7 +5338,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -5368,12 +5368,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"address\",\n \"address\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"postal_code\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"POSTAL_CODE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"locality\",\n \"city\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"DISTRICT\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"locality\"\n ],\n \"administrative_area_label\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location_type\": \"ROOFTOP\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"shape\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ],\n [\n [\n \"\",\n \"\"\n ],\n [\n \"\",\n \"\"\n ]\n ]\n ]\n }\n },\n \"status\": \"not_yet_built\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"distance\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ],\n \"scores_per_components\": {\n \"street_name\": \"\",\n \"postal_code\": \"\",\n \"locality\": \"\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c98176b-0029-4faf-8401-b3dc676e4529", + "id": "4feeed84-d881-44eb-a154-ad9f9cd5f4f5", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -5409,11 +5409,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", + "content": "When executing a geocode request with the `address` parameter, it specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\nThis parameter is ignored when used with the `latlng` parameter. \n", "type": "text/plain" }, "key": "types", - "value": "town" + "value": "admin_level" }, { "disabled": false, @@ -5476,7 +5476,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -5511,7 +5511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fb86be0-564c-451a-b106-57c5650f2e07", + "id": "bfe7b309-55fa-45b6-bcee-51ad9f251a3d", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -5547,11 +5547,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", + "content": "When executing a geocode request with the `address` parameter, it specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\nThis parameter is ignored when used with the `latlng` parameter. \n", "type": "text/plain" }, "key": "types", - "value": "town" + "value": "admin_level" }, { "disabled": false, @@ -5614,7 +5614,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -5649,7 +5649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a23c36f5-08e4-406f-9d75-5864d150e652", + "id": "0b5a8b1d-8364-4361-a828-bd61c5eb0b35", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -5685,11 +5685,11 @@ { "disabled": false, "description": { - "content": "Specify the types of geocoding responses to return by separating multiple types with a pipe character (|). Specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter is ignored when used with the `latlng` parameter. When executing a geocode request with the `address` parameter, this parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\n", + "content": "When executing a geocode request with the `address` parameter, it specifies the types of suggestions to return in the query. Multiple types can be combined using the pipe character (`|`) as a separator. This parameter supports a wide range of locality classifications, including:\n - Standard locality types (e.g., cities, administrative areas, postal codes)\n - Points of Interest (POI) categories\n - POI aliases\n\nThese classifications enable flexible geographic data representation and querying.\nThis parameter is ignored when used with the `latlng` parameter. \n", "type": "text/plain" }, "key": "types", - "value": "town" + "value": "admin_level" }, { "disabled": false, @@ -5752,7 +5752,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -5793,7 +5793,7 @@ } }, { - "id": "d1eaaff1-5a4e-4cb1-9400-7bbd4af72e7c", + "id": "a7811791-2995-4bbe-870e-329fc1155f6c", "name": "Nearby points of interest", "request": { "name": "Nearby points of interest", @@ -5820,7 +5820,7 @@ "type": "text/plain" }, "key": "types", - "value": "hospitality" + "value": "tourism.attraction.aquarium" }, { "disabled": false, @@ -5865,7 +5865,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "hospitality" + "value": "tourism.attraction.aquarium" } ], "variable": [] @@ -5898,7 +5898,7 @@ }, "response": [ { - "id": "7649b6ff-0998-40e8-9e85-297e9f0370cb", + "id": "45818eb2-5469-4f5a-8038-9ebde9606f45", "name": "Points of interests surrounding `location` and matching provided `types`, sorted by distance to `location`.", "originalRequest": { "url": { @@ -5920,7 +5920,7 @@ "type": "text/plain" }, "key": "types", - "value": "hospitality" + "value": "tourism.attraction.aquarium" }, { "disabled": false, @@ -5965,7 +5965,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "hospitality" + "value": "tourism.attraction.aquarium" }, { "description": { @@ -5995,12 +5995,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"types\": [\n \"tourism.attraction.aquarium\",\n \"tourism.monument.castle\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.food_and_drinks.cafe\",\n \"hospitality.guest_house\"\n ],\n \"formatted_address\": \"\"\n },\n {\n \"types\": [\n \"medical\",\n \"post_office\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business\",\n \"business.shop.bakery\"\n ],\n \"formatted_address\": \"\"\n }\n ],\n \"pagination\": {\n \"next_page\": \"\",\n \"previous_page\": \"\"\n }\n}", + "body": "{\n \"results\": [\n {\n \"types\": [\n \"business.cinema\",\n \"education.university\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"transit.station\",\n \"tourism.monument\"\n ],\n \"formatted_address\": \"\"\n },\n {\n \"types\": [\n \"business.shop.doityourself\",\n \"business.food_and_drinks.fast_food\"\n ],\n \"name\": \"\",\n \"public_id\": \"\",\n \"geometry\": {\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n },\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"categories\": [\n \"business.parking\",\n \"police\"\n ],\n \"formatted_address\": \"\"\n }\n ],\n \"pagination\": {\n \"next_page\": \"\",\n \"previous_page\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c402daef-3d80-4070-89fa-096f0cbd79d9", + "id": "886c7ac5-89a3-4256-8c4e-5aeb8f00f181", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6022,7 +6022,7 @@ "type": "text/plain" }, "key": "types", - "value": "hospitality" + "value": "tourism.attraction.aquarium" }, { "disabled": false, @@ -6067,7 +6067,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "hospitality" + "value": "tourism.attraction.aquarium" }, { "description": { @@ -6102,7 +6102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e32bbfb-a59c-45b7-b48e-49b4cd32de01", + "id": "d92d78e0-7be7-4a92-95b6-c3ca27f92ae5", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -6124,7 +6124,7 @@ "type": "text/plain" }, "key": "types", - "value": "hospitality" + "value": "tourism.attraction.aquarium" }, { "disabled": false, @@ -6169,7 +6169,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "hospitality" + "value": "tourism.attraction.aquarium" }, { "description": { @@ -6204,7 +6204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8c60ad6-0233-406b-8058-aba987c784b1", + "id": "b073297a-51f6-4eab-8126-570a345d4760", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -6226,7 +6226,7 @@ "type": "text/plain" }, "key": "types", - "value": "hospitality" + "value": "tourism.attraction.aquarium" }, { "disabled": false, @@ -6271,7 +6271,7 @@ "type": "text/plain" }, "key": "excluded_types", - "value": "hospitality" + "value": "tourism.attraction.aquarium" }, { "description": { @@ -6318,7 +6318,7 @@ "description": "Woosmap Address API is a web service that returns addresses and other geographical places in response to an HTTP request. Request is done over HTTPS using GET. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n>**⚠️ This API has been deprecated in favour of Localities API**\n", "item": [ { - "id": "0c359272-d10b-4bfe-8c93-5ef453fb9287", + "id": "2d8bd2e1-bf6e-4c19-b641-6ed353a7b538", "name": "Autocomplete for Addresses", "request": { "name": "Autocomplete for Addresses", @@ -6406,7 +6406,7 @@ }, "response": [ { - "id": "0bceb5a7-9417-459d-82ba-4c0774f617a3", + "id": "9b7751eb-f56b-4d62-9896-9cd89655b164", "name": "Autocompletion Address successfully retrieved", "originalRequest": { "url": { @@ -6486,12 +6486,12 @@ "value": "application/json" } ], - "body": "{\n \"predictions\": [\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"country\",\n \"status\": \"INVALID_REQUEST\"\n },\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"route\",\n \"status\": \"REQUEST_DENIED\"\n }\n ],\n \"status\": \"OK\"\n}", + "body": "{\n \"predictions\": [\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"address_block\",\n \"status\": \"OK\"\n },\n {\n \"description\": \"\",\n \"public_id\": \"\",\n \"matched_substring\": {\n \"description\": [\n {\n \"length\": \"\",\n \"offset\": \"\"\n },\n {\n \"length\": \"\",\n \"offset\": \"\"\n }\n ]\n },\n \"type\": \"route\",\n \"status\": \"UNKNOWN_ERROR\"\n }\n ],\n \"status\": \"OK\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2682d81-cd1f-418e-8d96-dca070422b91", + "id": "d1c097fc-ee6d-4c8c-82a2-267aa8a151bb", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6576,7 +6576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eacf577-7094-4693-b115-81a394ab52c8", + "id": "b0076dd8-f9d2-4569-b4cb-b63e3b643a38", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -6661,7 +6661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afe46218-94ff-4d2e-817a-73a3cda1b658", + "id": "da3aee9e-afde-4a33-9b21-a12aef29689e", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -6752,7 +6752,7 @@ } }, { - "id": "ff8ffd2e-a8c1-4044-9b85-75609852725f", + "id": "cfda677a-120b-425e-994c-4c20751f16a2", "name": "Details of an Address", "request": { "name": "Details of an Address", @@ -6798,7 +6798,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" } ], "variable": [] @@ -6831,7 +6831,7 @@ }, "response": [ { - "id": "51c1981a-79d5-4d0d-a7df-7320cfb27bd8", + "id": "296a66f4-639e-4459-a3bd-de5c2a9f9f94", "name": "Details Address successfully retrieved", "originalRequest": { "url": { @@ -6872,7 +6872,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -6902,12 +6902,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"OK\",\n \"result\": {\n \"formatted_address\": \"\",\n \"types\": [\n \"locality\",\n \"admin_level\"\n ],\n \"public_id\": \"\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"ROOFTOP\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n}", + "body": "{\n \"status\": \"UNKNOWN_ERROR\",\n \"result\": {\n \"formatted_address\": \"\",\n \"types\": [\n \"country\",\n \"house_number\"\n ],\n \"public_id\": \"\",\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"APPROXIMATE\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca26c97d-265c-461c-8636-22917e41a39f", + "id": "14222a7b-329b-47e6-8b07-bde94daf4fb0", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -6948,7 +6948,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -6983,7 +6983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19f0e6ee-2852-4b28-be2d-d62917add19b", + "id": "acd57bcf-47c7-40bd-bf17-1b61a15d0527", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -7024,7 +7024,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -7059,7 +7059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7a217c3-ed3c-43b7-b4e0-e924b866d810", + "id": "fd0515d3-8b4e-44b9-b7e1-46085dbcdf6c", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -7100,7 +7100,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "description": { @@ -7141,7 +7141,7 @@ } }, { - "id": "296c39fc-27d0-4880-93e5-272f1687365e", + "id": "de0b637c-d58c-4dc6-9fd8-e3d7385dfd82", "name": "Geocode an Address or Reverse Geocode a latlng", "request": { "name": "Geocode an Address or Reverse Geocode a latlng", @@ -7214,7 +7214,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -7256,7 +7256,7 @@ }, "response": [ { - "id": "a1ec34db-6906-46e6-bfdf-a9e2c09fd72d", + "id": "a9523a53-48f3-4419-9c03-fdd0b684375e", "name": "Request Address Geocode successful", "originalRequest": { "url": { @@ -7324,7 +7324,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -7363,12 +7363,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"route\",\n \"route\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"GEOMETRIC_CENTER\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"place\",\n \"locality\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"REQUEST_DENIED\"\n}", + "body": "{\n \"results\": [\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"address\",\n \"address\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n },\n {\n \"formatted_address\": \"\",\n \"types\": [\n \"place\",\n \"address\"\n ],\n \"address_components\": [\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n },\n {\n \"long_name\": \"\",\n \"short_name\": \"\",\n \"types\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"geometry\": {\n \"location_type\": \"RANGE_INTERPOLATED\",\n \"location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"viewport\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n }\n }\n }\n ],\n \"status\": \"INVALID_REQUEST\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f1b25ed-9407-46e6-81c4-37c149796278", + "id": "3b9a6bb4-91e4-42ff-b23c-e2c351c4f49e", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -7436,7 +7436,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -7480,7 +7480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f17f07c-0b0e-4f00-92ad-3af36810ce6c", + "id": "de141865-6c17-4e67-b94a-19cc2b32c544", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -7548,7 +7548,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -7592,7 +7592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "719e7a63-2327-475a-a91c-23aaf908781e", + "id": "64f257d9-c384-4584-a3cc-17128de32f60", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -7660,7 +7660,7 @@ "type": "text/plain" }, "key": "cc_format", - "value": "alpha2" + "value": "alpha3" }, { "disabled": false, @@ -7716,7 +7716,7 @@ "description": "Woosmap Distance API is a service providing road travel distance and duration calculations, on a Worldwide scale. Request is done over HTTPS using GET or POST. Response is formatted as JSON. You must specify a key in your request, included as the value of a `key` parameter for your public key or `private_key` for your private key. This key identifies your application for purposes of quota management. Learn how to [get a key](https://developers.woosmap.com/support/api-keys/).\n", "item": [ { - "id": "f30a05b0-38a9-43e7-9512-5a5310a0e9f2", + "id": "8877a391-7413-4263-bea2-97641f942073", "name": "Distance Matrix", "request": { "name": "Distance Matrix", @@ -7762,7 +7762,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -7780,7 +7780,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -7789,7 +7789,7 @@ "type": "text/plain" }, "key": "elements", - "value": "distance" + "value": "duration" }, { "disabled": false, @@ -7798,7 +7798,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -7849,7 +7849,7 @@ }, "response": [ { - "id": "637a1c90-1d3b-4c01-9d7e-32b0f30956b0", + "id": "4d382e41-e2e8-4721-8d61-ca84310afdb4", "name": "Distance Matrix successfully retrieved", "originalRequest": { "url": { @@ -7890,7 +7890,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -7908,7 +7908,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -7917,7 +7917,7 @@ "type": "text/plain" }, "key": "elements", - "value": "distance" + "value": "duration" }, { "disabled": false, @@ -7926,7 +7926,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -7974,12 +7974,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"MAX_ELEMENTS_EXCEEDED\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"OK\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f148ab36-79a7-441d-bcb8-334eaa71b389", + "id": "3b571ba9-f27f-47b9-851f-9d83cc410c79", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -8020,7 +8020,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -8038,7 +8038,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -8047,7 +8047,7 @@ "type": "text/plain" }, "key": "elements", - "value": "distance" + "value": "duration" }, { "disabled": false, @@ -8056,7 +8056,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -8109,7 +8109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16cdff3a-c815-40a2-8a39-ebf76504051e", + "id": "119fbdf6-4a86-4062-96f4-9d49928bfd2b", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -8150,7 +8150,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -8168,7 +8168,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -8177,7 +8177,7 @@ "type": "text/plain" }, "key": "elements", - "value": "distance" + "value": "duration" }, { "disabled": false, @@ -8186,7 +8186,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -8239,7 +8239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c352547c-d3a0-4a1b-a3b1-719429b86f87", + "id": "84d4dc4e-97d2-4b58-83c3-647baa48abc9", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -8280,7 +8280,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -8298,7 +8298,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -8307,7 +8307,7 @@ "type": "text/plain" }, "key": "elements", - "value": "distance" + "value": "duration" }, { "disabled": false, @@ -8316,7 +8316,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -8375,7 +8375,7 @@ } }, { - "id": "7b7a12f4-7ec6-49e0-9023-f52b9a73aab5", + "id": "6a59c5e7-4bb0-489e-9388-5af477fd824d", "name": "Distance Matrix using POST", "request": { "name": "Distance Matrix using POST", @@ -8411,7 +8411,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8439,7 +8439,7 @@ }, "response": [ { - "id": "fb0dc4ad-03c9-4bd0-a3e2-7340bb6cd5ce", + "id": "31c95de7-a35e-4208-9a57-f413133d2f9b", "name": "Distance Matrix with POST successfully retrieved", "originalRequest": { "url": { @@ -8479,7 +8479,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8496,12 +8496,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"MAX_ELEMENTS_EXCEEDED\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"OK\",\n \"rows\": [\n {\n \"elements\": [\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"ZERO_RESULTS\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n },\n {\n \"elements\": [\n {\n \"status\": \"OK\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n },\n {\n \"status\": \"NOT_FOUND\",\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n }\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d27e53b-ddd6-42d9-bfef-9e1432e9f9f9", + "id": "8574d6ad-0208-4393-a047-d7f8b4adcaa6", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -8541,7 +8541,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8563,7 +8563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "519a500c-afb8-4186-81a6-fe8185e34236", + "id": "9e4afbfc-13c8-4512-b7ed-738c70ee08d4", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -8603,7 +8603,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8625,7 +8625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "039556cb-cd05-4f24-b3d1-e25ba0b24bd2", + "id": "e6756398-637b-43a2-8bb4-3d6f9ac67827", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -8665,7 +8665,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8687,7 +8687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "272e15d5-a37d-48bc-a02f-f7df14341e14", + "id": "544354da-4998-4387-bc94-18777e905bfb", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -8727,7 +8727,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"metric\",\n \"elements\": \"distance\",\n \"method\": \"distance\",\n \"departure_time\": \"\"\n}", + "raw": "{\n \"origins\": \"\",\n \"destinations\": \"\",\n \"mode\": \"cycling\",\n \"language\": \"\",\n \"units\": \"imperial\",\n \"elements\": \"duration\",\n \"method\": \"time\",\n \"departure_time\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8755,7 +8755,7 @@ } }, { - "id": "6dd335c4-7444-487e-a55e-0c30122ccddf", + "id": "79591b3e-8843-4e74-aa54-de5004741bbe", "name": "Route", "request": { "name": "Route", @@ -8801,7 +8801,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -8819,7 +8819,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -8846,7 +8846,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -8855,7 +8855,7 @@ "type": "text/plain" }, "key": "details", - "value": "full" + "value": "none" }, { "disabled": false, @@ -8915,7 +8915,7 @@ }, "response": [ { - "id": "efb4c624-c2fc-41dd-95ce-ab803a42cd51", + "id": "36700a93-f95a-4bce-a75d-7f7373794d6f", "name": "Route successfully retrieved", "originalRequest": { "url": { @@ -8956,7 +8956,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -8974,7 +8974,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9001,7 +9001,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9010,7 +9010,7 @@ "type": "text/plain" }, "key": "details", - "value": "full" + "value": "none" }, { "disabled": false, @@ -9067,12 +9067,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"OK\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n }\n ]\n}", + "body": "{\n \"status\": \"REQUEST_DENIED\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"notice\": \"\",\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"start_waypoint\": \"\",\n \"end_waypoint\": \"\",\n \"start_address\": \"\",\n \"end_address\": \"\",\n \"steps\": [\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n },\n {\n \"distance\": \"\",\n \"duration\": \"\",\n \"polyline\": \"\",\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"travel_mode\": \"\",\n \"instructions\": {\n \"action\": \"\",\n \"summary\": \"\",\n \"verbal_alert\": \"\",\n \"verbal_succint\": \"\",\n \"verbal_before\": \"\",\n \"verbal_after\": \"\"\n }\n }\n ]\n }\n ],\n \"main_route_name\": \"\",\n \"recommended\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80be5635-7c8b-4e96-ab64-2f79f9d94158", + "id": "75b0c6b6-26b5-493d-8f14-6eb2c6a7a574", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -9113,7 +9113,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9131,7 +9131,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9158,7 +9158,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9167,7 +9167,7 @@ "type": "text/plain" }, "key": "details", - "value": "full" + "value": "none" }, { "disabled": false, @@ -9229,7 +9229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58d1a7f8-a759-4bcc-9a81-36a8f87b66e4", + "id": "206da689-580f-4304-8859-9b8b6d19fd10", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -9270,7 +9270,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9288,7 +9288,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9315,7 +9315,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9324,7 +9324,7 @@ "type": "text/plain" }, "key": "details", - "value": "full" + "value": "none" }, { "disabled": false, @@ -9386,7 +9386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f8f4eb3-d317-41aa-b2a3-72b4df458286", + "id": "071cbbfa-9a60-4875-8ca8-0902a8695ca0", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -9427,7 +9427,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9445,7 +9445,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9472,7 +9472,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9481,7 +9481,7 @@ "type": "text/plain" }, "key": "details", - "value": "full" + "value": "none" }, { "disabled": false, @@ -9549,7 +9549,7 @@ } }, { - "id": "69f13f3a-9ef3-490c-884d-07e87b0bed15", + "id": "9a55ef15-3fdd-4850-b313-2a3b9f690f5f", "name": "Tolls", "request": { "name": "Tolls", @@ -9595,7 +9595,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9613,7 +9613,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9640,7 +9640,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9691,7 +9691,7 @@ }, "response": [ { - "id": "bde1ee76-a6fc-4e51-a4bf-52fecf20eba7", + "id": "3ffb3895-af0c-456c-a8ad-d5efaf00d7dc", "name": "Tolls successfully retrieved", "originalRequest": { "url": { @@ -9732,7 +9732,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9750,7 +9750,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9777,7 +9777,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9825,12 +9825,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"MAX_ROUTE_LENGTH_EXCEEDED\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"sed5\": \"in consectetur in elit\"\n },\n {\n \"countryCode\": \"\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"eiusmod7d\": 84679926.1995013,\n \"id_a34\": 88849478,\n \"dolor_35\": -1085278.304556653,\n \"tempor6\": true\n },\n {\n \"countryCode\": \"\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"ipsum_d7\": false\n },\n {\n \"countryCode\": \"\",\n \"sunt8\": true,\n \"Duis03\": true,\n \"etcd\": 5163356,\n \"pariatur_c7\": false\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"cupidatat_126\": false\n },\n {\n \"countryCode\": \"\",\n \"Excepteur5f\": \"in et occaecat\",\n \"fugiat_8_e\": \"officia deserunt dolore nostrud\"\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n }\n ]\n}", + "body": "{\n \"status\": \"OK\",\n \"routes\": [\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"aliqua_2f5\": -98065126.02357937\n },\n {\n \"countryCode\": \"\",\n \"dolorb8\": -69886648\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\"\n },\n {\n \"countryCode\": \"\",\n \"laborum_d37\": 59298529.93711805\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n },\n {\n \"overview_polyline\": {\n \"points\": \"\"\n },\n \"bounds\": {\n \"northeast\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"southwest\": {\n \"lat\": \"\",\n \"lng\": \"\"\n }\n },\n \"legs\": [\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"sed_823\": \"consectetur ipsum \"\n },\n {\n \"countryCode\": \"\",\n \"nulla7_0\": true\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"distance\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"duration\": {\n \"value\": \"\",\n \"text\": \"\"\n },\n \"start_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"end_location\": {\n \"lat\": \"\",\n \"lng\": \"\"\n },\n \"tolls\": [\n {\n \"countryCode\": \"\",\n \"amet_0\": false\n },\n {\n \"countryCode\": \"\",\n \"enim59\": \"culpa sit laborum\",\n \"proident_\": \"Ut in\",\n \"enim855\": -61743758.018945806\n }\n ],\n \"tollSystems\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a25d460-2b6c-4cf2-b70a-418e0ec4c474", + "id": "e88f1d99-a103-4051-b650-700a7332608d", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -9871,7 +9871,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -9889,7 +9889,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -9916,7 +9916,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -9969,7 +9969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "514aace3-ecee-4524-914d-75b0e31ded52", + "id": "f658c6a6-5149-4657-bd10-3501ec833090", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -10010,7 +10010,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10028,7 +10028,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10055,7 +10055,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10108,7 +10108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e92e6c9e-08fa-42ba-aa8a-fc23690ed79e", + "id": "2827fc78-d8d4-42d0-a076-90590c5481f3", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -10149,7 +10149,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10167,7 +10167,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10194,7 +10194,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10253,7 +10253,7 @@ } }, { - "id": "5a39803d-2380-419a-8dc0-0bc1adf066e7", + "id": "3072d891-10ed-4058-b367-9777be9cba2d", "name": "Isochrone (Early Access)", "request": { "name": "Isochrone (Early Access)", @@ -10299,7 +10299,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10317,7 +10317,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10326,7 +10326,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10368,7 +10368,7 @@ }, "response": [ { - "id": "2793a785-ec81-4800-abd1-8a6d22928c96", + "id": "3e1e3899-538e-408e-ad16-d020b63faa52", "name": "Isochrone successfully retrieved", "originalRequest": { "url": { @@ -10409,7 +10409,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10427,7 +10427,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10436,7 +10436,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10480,7 +10480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bea0fe9c-c95e-41ae-aaa7-50d6d3cfcf83", + "id": "7dcc151f-8822-4b52-82b4-db58306ec30a", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -10521,7 +10521,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10539,7 +10539,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10548,7 +10548,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10592,7 +10592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3c15813-c842-4ce9-97ea-fab47684b489", + "id": "f73c2a87-efd2-4626-9e80-f277e34fa1af", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -10633,7 +10633,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10651,7 +10651,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10660,7 +10660,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10704,7 +10704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dfd0bb4-c4c6-4059-99f4-0edad77fb935", + "id": "bef2588c-9f7d-4ae2-b75b-e0b90f928c1f", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -10745,7 +10745,7 @@ "type": "text/plain" }, "key": "mode", - "value": "walking" + "value": "driving" }, { "disabled": false, @@ -10763,7 +10763,7 @@ "type": "text/plain" }, "key": "units", - "value": "imperial" + "value": "metric" }, { "disabled": false, @@ -10772,7 +10772,7 @@ "type": "text/plain" }, "key": "method", - "value": "distance" + "value": "time" }, { "disabled": false, @@ -10828,7 +10828,7 @@ "description": "Woosmap Zones API is a web service that uses an HTTP request to manage, create or edit your Zones (polygons) attached to your assets.\nThe general principle is that sometimes searching assets using crowfly distance is not good enough. For example to search the restaurant that will do the delivery for a specified address, each restaurant has a delivery zone and for topological or business reasons it’s not always the nearest restaurant in charge of your delivery. Woosmap Zones API allows you to associate a delivery zone to each of the restaurants.\n", "item": [ { - "id": "006c491b-10e5-4310-b609-c7b88ae2eeb7", + "id": "337b7467-7869-4f60-90ec-aa543ff5cfe4", "name": "List your Zones", "request": { "name": "List your Zones", @@ -10896,7 +10896,7 @@ }, "response": [ { - "id": "332b2c76-e22e-432e-b2a7-7cebc81cb031", + "id": "a71b33bd-031b-43ce-a6c8-2329ba9de994", "name": "Zones successfully retrieved", "originalRequest": { "url": { @@ -10961,7 +10961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88efd9a3-57bb-4fee-8832-51f37ee46c6a", + "id": "3a6de6e4-5c24-425f-a6fb-3e84720dc393", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11026,7 +11026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46ebc9fd-e53b-4a71-9348-0fa022dcd8b2", + "id": "657ad812-6c53-48ff-b3ad-1a583a0ddd8a", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11091,7 +11091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0618acdd-a482-4c10-a106-6431090cb61f", + "id": "6bc5d277-fef5-446f-834a-b9cf9913015d", "name": "Too Many Requests. The rate limit for this endpoint has been exceeded.", "originalRequest": { "url": { @@ -11162,7 +11162,7 @@ } }, { - "id": "5bbd5c80-e74c-4c1d-b7e9-8c782a79a45f", + "id": "1f8891a4-5730-47f4-b158-c8a5d7c9855f", "name": "Create your Zones", "request": { "name": "Create your Zones", @@ -11224,7 +11224,7 @@ }, "response": [ { - "id": "c76acc90-fd31-4fe4-aeb5-ba20cb4fcc1d", + "id": "15989340-ea3a-46f3-a370-c59cf1ea045c", "name": "Zones successfully created", "originalRequest": { "url": { @@ -11284,7 +11284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6277f6b3-598c-4230-bfcc-daf3ec84b275", + "id": "4c87a98e-77f3-4287-95e3-e2a3728ee086", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -11344,7 +11344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40509642-245e-49b9-880a-e3d21154b0af", + "id": "93cff01f-02a8-45dc-808d-7db390839a3c", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11404,7 +11404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5849208-2459-4e2f-a85c-e2b2c53e3c4c", + "id": "e82e770e-b4a6-4beb-802a-b12cc99bbf9d", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11470,7 +11470,7 @@ } }, { - "id": "dd3b22b5-2a67-4024-876c-6db4be306803", + "id": "f3d4f33d-4f1c-4598-8d1e-67aa1a838969", "name": "Update the Zones", "request": { "name": "Update the Zones", @@ -11532,7 +11532,7 @@ }, "response": [ { - "id": "5bd08100-29fd-4afa-b8ff-933f50566e78", + "id": "032ad768-1999-4b4a-a503-5e16540bf5ac", "name": "Zones successfully updated", "originalRequest": { "url": { @@ -11592,7 +11592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44818257-a935-44b6-88fd-9a2c08b32453", + "id": "7bca8b42-8e89-4bc5-b379-12db3e71df52", "name": "Invalid. The data is not a valid JSON.", "originalRequest": { "url": { @@ -11652,7 +11652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82d1a6c7-63cf-41b5-9eb3-30bca4983f22", + "id": "edb78d7d-296f-4709-8a30-2adbcf338eec", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11712,7 +11712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4acf2c1b-8b71-405d-9ade-66c61916f9fd", + "id": "5a724c7d-066b-40fb-8411-04a0afaf4204", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11778,7 +11778,7 @@ } }, { - "id": "3b182793-f298-4c4d-aff3-1803bf54aa0e", + "id": "83cd0794-7846-4f48-959d-3615cd932301", "name": "Delete the Zones", "request": { "name": "Delete the Zones", @@ -11827,7 +11827,7 @@ }, "response": [ { - "id": "4779c8e0-18b3-499c-b997-91dea2f9aed3", + "id": "94baa41c-651b-4899-818c-759681a65d0d", "name": "Zones successfully deleted", "originalRequest": { "url": { @@ -11874,7 +11874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cbe3c74-6645-4436-9f9f-5998ed3fe0ee", + "id": "ea425978-4c84-4d64-97d3-d0f168e4a91b", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -11921,7 +11921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1f2d762-3435-4574-90d8-879f59194b99", + "id": "f9c9baf5-1ac8-4181-a860-f470dd88fe71", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -11974,7 +11974,7 @@ } }, { - "id": "fd134177-bf20-49be-b42e-3703b188dc5d", + "id": "e6c303b1-a214-408a-bd5b-a16d3d256ebf", "name": "Get Zone from ID", "request": { "name": "Get Zone from ID", @@ -12035,7 +12035,7 @@ }, "response": [ { - "id": "ad0a9975-fa61-4229-a96a-b0cfaa229827", + "id": "66bc3adc-261a-4acd-a512-fcb4a02a5110", "name": "Zone successfully retrieved", "originalRequest": { "url": { @@ -12083,7 +12083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c27c4e1-1462-4554-aa8c-8378dea404f8", + "id": "e28579d7-e95d-440b-9b11-cddfb67fcb17", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -12131,7 +12131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13ddec60-42a1-4436-840a-591d296e8585", + "id": "6bc2926c-d0ca-46a2-9f07-7aec9c22a6d4", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -12179,7 +12179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d329b3c0-5554-4636-8801-f02155762617", + "id": "46baae8c-b79d-48ad-8415-de5ce8daccb7", "name": "Not Found - `zone_id` do not exist.", "originalRequest": { "url": { @@ -12221,7 +12221,7 @@ } }, { - "id": "e6a82298-1137-42c4-9e92-c462225b2984", + "id": "01d11538-9288-49a1-b644-158d0bcd537c", "name": "Delete Zone from ID", "request": { "name": "Delete Zone from ID", @@ -12282,7 +12282,7 @@ }, "response": [ { - "id": "edefa327-f5b1-48e3-81cb-3b9cc94ac25c", + "id": "0d643ba1-6c65-4308-8926-078ac12f971d", "name": "Zones successfully deleted", "originalRequest": { "url": { @@ -12330,7 +12330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ef30041-1a8e-4143-8e8a-93f6e4693e6d", + "id": "d7626947-3ac1-4ecd-986d-8dc3097fce6c", "name": "Unauthorized. Incorrect authentication credentials.", "originalRequest": { "url": { @@ -12378,7 +12378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcad760b-53a2-4329-af60-27f7a1c1479c", + "id": "23609d26-2520-4a2f-acf9-70db988b5c59", "name": "Forbidden. This Woosmap API is not enabled for this project.", "originalRequest": { "url": { @@ -12438,7 +12438,7 @@ "description": "The Woosmap Static Maps API lets you generate customizable, embeddable map images using simple HTTP requests. It’s a lightweight alternative to interactive maps—ideal for emails, reports, or websites where dynamic JavaScript maps aren't needed. \n\nYou provide parameters such as location, zoom level, size, and markers, and the API returns a map image that can be embedded directly into any webpage or application.\n", "item": [ { - "id": "f9910872-b31f-4db3-8d48-fe32cd28aa03", + "id": "1422fbe3-c223-4c85-80fd-028ac48a639b", "name": "Get Static Map", "request": { "name": "Get Static Map", @@ -12612,7 +12612,7 @@ }, "response": [ { - "id": "b8d0b857-08f1-4353-89fe-e6c8a6778413", + "id": "6af6fcf2-c387-403f-878a-60647906b328", "name": "Successful Response", "originalRequest": { "url": { @@ -12756,7 +12756,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a9da8e9a-2d3f-44ed-b331-8b5e4735ab66", + "id": "d3536293-a6b3-44d6-a644-ec66cff32870", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -12900,7 +12900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81f56a33-548c-4c6b-a4a0-9b770807414d", + "id": "a28390d8-279a-4871-b7a9-4d27d7ae5d82", "name": "Out of free quota.", "originalRequest": { "url": { @@ -13044,7 +13044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ae36515-3b29-4192-8e7e-9985b3c6afa6", + "id": "6778b504-2018-4118-a858-99f723e64854", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -13188,7 +13188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fc105da-cbce-487b-ad07-66e960344864", + "id": "c7deafd9-ce66-4e68-99c4-85eee08c96a6", "name": "Validation Error", "originalRequest": { "url": { @@ -13332,7 +13332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "385fca4c-8ebd-46a8-8cda-2d098547f2c7", + "id": "a23600ed-5fe1-4bf0-bf77-f9e6ad61ac85", "name": "Rate limit reached", "originalRequest": { "url": { @@ -13488,7 +13488,7 @@ "description": "Add What3Words capabilities to your address search.", "item": [ { - "id": "c9be61e7-2468-4d9a-865b-2f589e53b3bd", + "id": "a65842ae-b219-4a5b-95e9-9db7efab7450", "name": "Convert To What 3 Words", "request": { "name": "Convert To What 3 Words", @@ -13563,7 +13563,7 @@ }, "response": [ { - "id": "b8beb545-49f1-44e7-aea3-fab82a3bec52", + "id": "69fe3df9-1fab-425a-a1eb-dfcb1d25c9aa", "name": "Successful Response", "originalRequest": { "url": { @@ -13635,7 +13635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deb37dd9-1c84-4589-a9c8-2c3c88e800ec", + "id": "259fb678-8b96-4148-8d42-e5d9ba9a1dd1", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -13707,7 +13707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cb7a4e1-6218-4dc1-a54b-8fee51e77900", + "id": "f501117b-75e4-42bd-b1d0-b5c77a78ffe2", "name": "Out of free quota.", "originalRequest": { "url": { @@ -13779,7 +13779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15e7e61a-258d-4060-928e-aeebe50d808d", + "id": "34ebdbd6-20c3-43bc-9122-e6782a36b67d", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -13851,7 +13851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c14ef066-0491-4b5a-aa0f-3e83eb59d147", + "id": "9991b608-8066-41f2-a8ef-ea9af8dbf7f4", "name": "Validation Error", "originalRequest": { "url": { @@ -13923,7 +13923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a5c0256-e5cb-4f5b-94d5-e316d5216a71", + "id": "87be49de-0dc9-4e1a-a5de-21c5a0fc3817", "name": "Rate limit reached", "originalRequest": { "url": { @@ -14001,7 +14001,7 @@ } }, { - "id": "792a243d-cb3e-481e-aa66-c2a5334696af", + "id": "65a4382b-f76c-4475-81cd-3405b57768f0", "name": "Convert To Address", "request": { "name": "Convert To Address", @@ -14067,7 +14067,7 @@ }, "response": [ { - "id": "b1c04742-3ce1-409c-b6b5-2a703f6a514f", + "id": "232de4b6-c481-419a-893a-efe431ae201a", "name": "Successful Response", "originalRequest": { "url": { @@ -14125,12 +14125,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": [\n {\n \"types\": [\n \"address\",\n \"hamlet\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n {\n \"types\": [\n \"postal_code\",\n \"suburb\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"results\": [\n {\n \"types\": [\n \"borough\",\n \"quarter\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n },\n {\n \"types\": [\n \"named_place\",\n \"borough\"\n ],\n \"formatted_address\": \"\",\n \"public_id\": \"\",\n \"status\": \"\",\n \"sub_buildings\": [\n {\n \"public_id\": \"\",\n \"description\": \"\"\n },\n {\n \"public_id\": \"\",\n \"description\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bfe42cb3-ae72-40c2-9414-78aabf3705c1", + "id": "52804b95-56ea-4a56-9a04-c33dd4644ae9", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -14193,7 +14193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "675a2ee2-68ee-4009-88e0-1e4902886823", + "id": "db6f91a0-1e2b-461a-a36f-d0a97141920b", "name": "Out of free quota.", "originalRequest": { "url": { @@ -14256,7 +14256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed4118f1-e652-43cd-96dd-14fc03650ca8", + "id": "11a13791-7f08-4644-8fc5-68023bb50fd2", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -14319,7 +14319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79b6862d-9e56-47a1-9939-42d9486c83a7", + "id": "c7b7bff0-6ac4-42d2-b2b3-8bf02e3c219c", "name": "Validation Error", "originalRequest": { "url": { @@ -14382,7 +14382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f22575a-c0dc-4085-9c89-a88c2518369f", + "id": "2b8e616f-cea1-4907-89df-d6b94592202a", "name": "Rate limit reached", "originalRequest": { "url": { @@ -14451,7 +14451,7 @@ } }, { - "id": "3273490b-ac5a-49f3-97fa-49a7ffa3dda9", + "id": "9fd5a5b0-8424-491c-b986-7f2dcea6a73b", "name": "Autosuggest", "request": { "name": "Autosuggest", @@ -14580,7 +14580,7 @@ }, "response": [ { - "id": "c776545a-abb0-426d-bfa0-7c217bda4718", + "id": "12af051e-0590-4684-a317-3badfb10f1a7", "name": "Successful Response", "originalRequest": { "url": { @@ -14706,7 +14706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bc88157-4f63-4173-9d5e-56a041d75a0e", + "id": "8deff87c-a816-45d6-b42d-18e128c38bf5", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -14832,7 +14832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ef05691-01f4-42be-a162-40a862b24e70", + "id": "74e56e3f-d102-468c-9df4-5b0062acfcf0", "name": "Out of free quota.", "originalRequest": { "url": { @@ -14958,7 +14958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7e512b4-4316-408c-8ce6-09db44683b4f", + "id": "b19fcbb4-5abd-47c1-b0f2-5542bef3dc8f", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -15084,7 +15084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25700d63-225a-4531-9c6f-74ebeb55895a", + "id": "06301cb5-53b4-4b9f-9b11-e703d259dad0", "name": "Validation Error", "originalRequest": { "url": { @@ -15210,7 +15210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6762af83-dc44-4b9c-8047-69efa8560af4", + "id": "7388617b-ecbf-44cc-bbf6-2167665b713d", "name": "Rate limit reached", "originalRequest": { "url": { @@ -15348,7 +15348,7 @@ "description": "The Indoor API suite provides comprehensive tools for indoor mapping, search, and navigation in complex venues.\n\nThe Indoor Map API renders detailed floor plans with customizable styling, while the Indoor Search API enables\nprecise location searching through an intelligent POI engine with autocompletion capabilities.\n\nFor wayfinding, the Indoor Distance API calculates optimal routes between indoor points, delivering polylines\nand turn-by-turn instructions. Advanced features include custom routing profiles for different user types\n(staff, visitors, etc.) and seamless integration with external systems.\n", "item": [ { - "id": "9ba848a8-e8e5-4b97-aa2d-753ba2c98561", + "id": "eede5f97-6566-4d1f-98e6-6fc1f25db23a", "name": "Get Venue By Key", "request": { "name": "Get Venue By Key", @@ -15407,7 +15407,7 @@ }, "response": [ { - "id": "17de02d7-9f55-4ece-bc6a-39c0405f833b", + "id": "bf7687e6-a793-4a04-9fc3-aa1071a6bd1a", "name": "OK", "originalRequest": { "url": { @@ -15453,7 +15453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ab51cae-4994-4af9-bf04-049463f60610", + "id": "976304c3-a42a-4e5b-9c2a-f5b2c0d9a3b8", "name": "Unauthorized", "originalRequest": { "url": { @@ -15499,7 +15499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44ed4873-6244-4c4e-b53a-1f5c055ae46d", + "id": "1469334e-0f57-437e-8b45-d183bcf6bbad", "name": "Payment Required", "originalRequest": { "url": { @@ -15545,7 +15545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ea7040b-9a74-42bd-b2af-fc0705c4c238", + "id": "3743e9f7-c70e-4566-b8c4-231048f99476", "name": "Forbidden", "originalRequest": { "url": { @@ -15591,7 +15591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fc0e29a-a5a0-4091-8220-d891ca9bacbc", + "id": "a50accdc-0d42-4580-91cf-7ff5026fc0ca", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -15632,7 +15632,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", + "body": "{\n \"detail\": [\n {\n \"minimf\": 63163700,\n \"et_96a\": 31499836\n },\n {\n \"Ut_6d5\": true\n }\n ],\n \"context\": {\n \"eae6\": 95560849,\n \"sint_9_8\": 22931768,\n \"ut_6cd\": -74704779.42150357\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15643,7 +15643,7 @@ } }, { - "id": "9eb35e05-0b78-49b2-9219-d1dd79344fd4", + "id": "7bf94689-5c8f-4ff1-9c21-91ed797b7465", "name": "Get Venues By Key", "request": { "name": "Get Venues By Key", @@ -15667,7 +15667,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" } ], "variable": [] @@ -15700,7 +15700,7 @@ }, "response": [ { - "id": "a7c1c972-a3b1-41e1-8cbb-b349e4259e4e", + "id": "46178a18-69fa-4cef-a47f-37edcd4d13a9", "name": "OK", "originalRequest": { "url": { @@ -15719,7 +15719,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" }, { "description": { @@ -15754,7 +15754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "643bf38a-bec9-4ce7-9e1d-7364285ec41e", + "id": "442e2edb-cfe4-401d-9984-98e79c23a760", "name": "Unauthorized", "originalRequest": { "url": { @@ -15773,7 +15773,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" }, { "description": { @@ -15808,7 +15808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d1dd50f-468a-44f9-b47e-db7a5076d0b5", + "id": "3520a4e6-fad4-41e0-808c-78358aa6a293", "name": "Payment Required", "originalRequest": { "url": { @@ -15827,7 +15827,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" }, { "description": { @@ -15862,7 +15862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "858ae742-6288-46d5-96f7-8f9557508e1f", + "id": "ec664467-a96b-44c9-966a-6e8c6c789c39", "name": "Forbidden", "originalRequest": { "url": { @@ -15881,7 +15881,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" }, { "description": { @@ -15916,7 +15916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42a4cd30-775f-498b-82f3-d7eeb2847d06", + "id": "805d5272-818d-467e-ab47-99333a152819", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -15935,7 +15935,7 @@ "type": "text/plain" }, "key": "sort_by", - "value": "updated_at" + "value": "name" }, { "description": { @@ -15965,7 +15965,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", + "body": "{\n \"detail\": [\n {\n \"minimf\": 63163700,\n \"et_96a\": 31499836\n },\n {\n \"Ut_6d5\": true\n }\n ],\n \"context\": {\n \"eae6\": 95560849,\n \"sint_9_8\": 22931768,\n \"ut_6cd\": -74704779.42150357\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15976,7 +15976,7 @@ } }, { - "id": "458007a2-8273-4bf7-bbce-2852c022bbb8", + "id": "4fa6aef0-fdbc-4eef-a66f-615faef09c79", "name": "Get Indoor Style", "request": { "name": "Get Indoor Style", @@ -16042,7 +16042,7 @@ }, "response": [ { - "id": "1374cd6c-4600-4e43-8dc3-bafb1f3b69b4", + "id": "811601fa-7b0d-453b-8bb4-2d7a32795d80", "name": "OK", "originalRequest": { "url": { @@ -16100,12 +16100,12 @@ "value": "application/json" } ], - "body": "{\n \"Duis_c\": false,\n \"proident_e\": 61518617\n}", + "body": "{\n \"ullamco_289\": false\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9ff6e8e-0e5a-4519-bdf7-19cdf78404a1", + "id": "5cdb741e-6a19-42fc-9f97-3eedfbda966a", "name": "Unauthorized", "originalRequest": { "url": { @@ -16168,7 +16168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26ddc987-0dd6-436f-a2d4-e372db47fb5b", + "id": "37c1cb55-270e-4081-a9fd-2648bca427fd", "name": "Payment Required", "originalRequest": { "url": { @@ -16231,7 +16231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15c99825-8ddc-4d9a-94e1-c52c8e169181", + "id": "64adca84-40b8-401c-902b-d4925c7e3e5d", "name": "Forbidden", "originalRequest": { "url": { @@ -16294,7 +16294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8937db7d-58fb-4c7d-9daf-ae0e6e817a6e", + "id": "7386036f-d7a2-4ecd-b035-880a6233b74c", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -16352,7 +16352,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", + "body": "{\n \"detail\": [\n {\n \"minimf\": 63163700,\n \"et_96a\": 31499836\n },\n {\n \"Ut_6d5\": true\n }\n ],\n \"context\": {\n \"eae6\": 95560849,\n \"sint_9_8\": 22931768,\n \"ut_6cd\": -74704779.42150357\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16363,7 +16363,7 @@ } }, { - "id": "4c4c7a75-48e0-4f74-844a-b16543b6c5da", + "id": "8df287fb-1b8d-456f-9c79-703bc762253f", "name": "Distance Matrix", "request": { "name": "Distance Matrix", @@ -16468,7 +16468,7 @@ }, "response": [ { - "id": "6210e05a-1118-4749-aa59-5d79efe5aa40", + "id": "ea338825-e7af-46eb-9358-b78f050ea5dd", "name": "OK", "originalRequest": { "url": { @@ -16559,7 +16559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5734b5fe-6269-4a72-8370-eff5600d0f3b", + "id": "a52c207a-e2df-41ff-9e88-dbea86342b7d", "name": "Bad Request", "originalRequest": { "url": { @@ -16650,7 +16650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cee36b44-85df-42d5-ac67-903d111e2729", + "id": "d7b56038-147c-4497-adbc-7da3f9e91963", "name": "Unauthorized", "originalRequest": { "url": { @@ -16741,7 +16741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c08dd37-7a2e-4cb8-b01a-25c3d2d7119f", + "id": "3bdd2ce7-6be6-4a4e-af14-7580f0238875", "name": "Payment Required", "originalRequest": { "url": { @@ -16832,7 +16832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2089fc0-1693-46f6-93df-09d260a6b463", + "id": "0d015430-979a-4336-8df5-8441367bf529", "name": "Forbidden", "originalRequest": { "url": { @@ -16923,7 +16923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5235951-5370-4b98-a164-88b07ef9f1b3", + "id": "72249356-e84a-44dd-9e5c-e7c58816eb8f", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -17009,7 +17009,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", + "body": "{\n \"detail\": [\n {\n \"minimf\": 63163700,\n \"et_96a\": 31499836\n },\n {\n \"Ut_6d5\": true\n }\n ],\n \"context\": {\n \"eae6\": 95560849,\n \"sint_9_8\": 22931768,\n \"ut_6cd\": -74704779.42150357\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17020,7 +17020,7 @@ } }, { - "id": "99c99482-37df-4808-ac4d-b72542cd5bdd", + "id": "4b01b0d8-b1eb-494d-a835-ba20996dfc4b", "name": "Directions", "request": { "name": "Directions", @@ -17152,7 +17152,7 @@ }, "response": [ { - "id": "eb7506eb-b86d-4e7c-9c3c-2744c1803a20", + "id": "4de8ac4c-be8e-4d75-8f2c-b0faa1ccb49f", "name": "OK", "originalRequest": { "url": { @@ -17270,7 +17270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21b360a3-a58e-4250-8aaf-47e9ed35940f", + "id": "ca460a36-8d79-4f0c-9174-da50ae7631f0", "name": "Bad Request", "originalRequest": { "url": { @@ -17388,7 +17388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2375e95b-7060-451c-a2e9-d00d8cba7897", + "id": "eeef2e28-4771-4bce-9f30-8dca3d02e72e", "name": "Unauthorized", "originalRequest": { "url": { @@ -17506,7 +17506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c044203-7d39-4f67-8c6d-98d79a69703e", + "id": "4e6aaef3-66ad-42d7-b7ac-c7ab12a07677", "name": "Payment Required", "originalRequest": { "url": { @@ -17624,7 +17624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aac99b10-3cc3-43c5-b0ae-bcf39b748091", + "id": "3bd74c72-e1e4-4400-b42c-55a0b274ab6b", "name": "Forbidden", "originalRequest": { "url": { @@ -17742,7 +17742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "133c90e2-2c02-465b-a2e8-2e7402a6f062", + "id": "0cf4edec-abce-4757-9b74-7dbca0a10149", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -17855,7 +17855,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", + "body": "{\n \"detail\": [\n {\n \"minimf\": 63163700,\n \"et_96a\": 31499836\n },\n {\n \"Ut_6d5\": true\n }\n ],\n \"context\": {\n \"eae6\": 95560849,\n \"sint_9_8\": 22931768,\n \"ut_6cd\": -74704779.42150357\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17866,7 +17866,7 @@ } }, { - "id": "3705261f-213f-4d6d-bdb2-2f63e0956379", + "id": "15c8ece3-70d3-4f24-be81-de5e37ec87d8", "name": "Search Venue Pois By Key", "request": { "name": "Search Venue Pois By Key", @@ -18036,7 +18036,7 @@ }, "response": [ { - "id": "acbba5e1-bc9a-43a6-b0cd-603be415b277", + "id": "b357a9e8-5d42-41f0-915b-74c3d7c5b9a4", "name": "OK", "originalRequest": { "url": { @@ -18192,7 +18192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4487c21-3f5c-44dd-b241-d28cb0de0d7d", + "id": "3ae05af4-2718-466b-a51c-decc7b0daa4c", "name": "Unauthorized", "originalRequest": { "url": { @@ -18348,7 +18348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e821fb0e-7738-44ee-81d2-93955968144c", + "id": "dca069b2-75ab-464a-b611-3396d9de2f59", "name": "Payment Required", "originalRequest": { "url": { @@ -18504,7 +18504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71dcef5c-d7e0-4816-b997-7929241c01cc", + "id": "b8429c28-f1e0-463a-844a-6217f731e5da", "name": "Forbidden", "originalRequest": { "url": { @@ -18660,7 +18660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5912a1ba-e633-4735-b569-3acf5da01725", + "id": "ce5a07da-8541-4735-a5b9-9727b735bc95", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -18811,7 +18811,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", + "body": "{\n \"detail\": [\n {\n \"minimf\": 63163700,\n \"et_96a\": 31499836\n },\n {\n \"Ut_6d5\": true\n }\n ],\n \"context\": {\n \"eae6\": 95560849,\n \"sint_9_8\": 22931768,\n \"ut_6cd\": -74704779.42150357\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18822,7 +18822,7 @@ } }, { - "id": "87d7792f-da03-4b39-8909-478b67f305ae", + "id": "7d33bb7c-3aa0-471c-bdfe-8991db800032", "name": "Autocomplete Venue Pois By Key", "request": { "name": "Autocomplete Venue Pois By Key", @@ -18983,7 +18983,7 @@ }, "response": [ { - "id": "95864dfa-7745-4470-8340-00ab0e7ff5ff", + "id": "55ef9c15-300c-461c-a228-d72584f81820", "name": "OK", "originalRequest": { "url": { @@ -19130,7 +19130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d8e43f8-95ed-47ca-adc8-c90687083c23", + "id": "8889ddd1-0cb4-465d-804c-7312eb0f9e33", "name": "Unauthorized", "originalRequest": { "url": { @@ -19277,7 +19277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4294355b-1128-4535-bd2a-b41ceb2b270e", + "id": "f7d3d8a1-48d4-4add-91d0-69a578a01bbc", "name": "Payment Required", "originalRequest": { "url": { @@ -19424,7 +19424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbe2378a-51e0-4d4a-8478-20d6d3ad4352", + "id": "99556326-7a8a-4ae7-a8ee-c96410e31d56", "name": "Forbidden", "originalRequest": { "url": { @@ -19571,7 +19571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae6b9989-f456-4bac-93ed-99013823f528", + "id": "e9012ceb-5bc2-4125-83e0-410b83ab8768", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -19713,7 +19713,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", + "body": "{\n \"detail\": [\n {\n \"minimf\": 63163700,\n \"et_96a\": 31499836\n },\n {\n \"Ut_6d5\": true\n }\n ],\n \"context\": {\n \"eae6\": 95560849,\n \"sint_9_8\": 22931768,\n \"ut_6cd\": -74704779.42150357\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19724,7 +19724,7 @@ } }, { - "id": "eec64426-edf5-435d-87a3-c879d2aa7ba5", + "id": "2b7e57b1-15fa-4682-8bdf-a66faccbcefd", "name": "Get Feature By Key", "request": { "name": "Get Feature By Key", @@ -19795,7 +19795,7 @@ }, "response": [ { - "id": "c98469f6-458b-45a7-bc32-d140aa1af187", + "id": "f5490e4e-f564-45c7-95cb-c88bad6854ea", "name": "OK", "originalRequest": { "url": { @@ -19838,12 +19838,12 @@ "value": "application/json" } ], - "body": "{\n \"properties\": {\n \"dolore_688\": -89752679\n },\n \"geometry\": {\n \"type\": \"\",\n \"coordinates\": \"\",\n \"bbox\": \"\"\n },\n \"id\": \"\",\n \"type\": \"Feature\"\n}", + "body": "{\n \"properties\": {\n \"consectetur_b8\": \"dolore id fugiat Ut\",\n \"dolor_e\": -40160098.768762566\n },\n \"geometry\": {\n \"type\": \"\",\n \"coordinates\": \"\",\n \"bbox\": \"\"\n },\n \"id\": \"\",\n \"type\": \"Feature\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf445090-f2db-468e-bce8-aa617238ffb4", + "id": "482a1aab-099b-4ff7-ae3e-6b47f7dfcc0e", "name": "Unauthorized", "originalRequest": { "url": { @@ -19891,7 +19891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74b77b6c-8870-488e-a685-8587aaad842d", + "id": "f158343e-0352-4fb7-a4e2-174780b53888", "name": "Payment Required", "originalRequest": { "url": { @@ -19939,7 +19939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00ba4181-b74f-4ef6-b93d-f5dda71b32b1", + "id": "307e4ff9-40de-484f-b441-39d0fe26c63c", "name": "Forbidden", "originalRequest": { "url": { @@ -19987,7 +19987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ae31682-7fa8-48a6-a0fc-1f6d043e9316", + "id": "3faa35ad-2c30-4c3a-a2bc-3f5721a1480c", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -20030,7 +20030,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", + "body": "{\n \"detail\": [\n {\n \"minimf\": 63163700,\n \"et_96a\": 31499836\n },\n {\n \"Ut_6d5\": true\n }\n ],\n \"context\": {\n \"eae6\": 95560849,\n \"sint_9_8\": 22931768,\n \"ut_6cd\": -74704779.42150357\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20041,7 +20041,7 @@ } }, { - "id": "af2e78d3-1538-4377-865a-9f5fa9eb8a86", + "id": "009abd08-730d-456f-b9da-4d49cc725c4d", "name": "Tiles By Key", "request": { "name": "Tiles By Key", @@ -20143,7 +20143,7 @@ }, "response": [ { - "id": "7c2d96d2-a7be-4bb8-b57a-4368a663e103", + "id": "f8cd5da6-7665-4402-bc48-e94317bab342", "name": "OK", "originalRequest": { "url": { @@ -20211,7 +20211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af81e30-9efe-4d5c-b328-d45368832a4f", + "id": "af767809-9da1-4388-b3ad-224f615fa1c2", "name": "Unauthorized", "originalRequest": { "url": { @@ -20279,7 +20279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "046e94a0-9d61-4378-9d0b-3ae56312e453", + "id": "98aa6a80-0c35-4cd4-a19d-46d7765218df", "name": "Payment Required", "originalRequest": { "url": { @@ -20347,7 +20347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f65d332-ddcb-4a09-8798-ac4197f1af56", + "id": "d3422a20-e735-4250-ac30-e87c3de24d2b", "name": "Forbidden", "originalRequest": { "url": { @@ -20415,7 +20415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fd282af-d9aa-49d8-9844-1d811fbcbfaa", + "id": "d7fc4418-969b-43c8-80a7-60ab67c70136", "name": "Unprocessable Entity", "originalRequest": { "url": { @@ -20478,7 +20478,7 @@ "value": "application/json" } ], - "body": "{\n \"detail\": [\n {\n \"fugiat__\": 97730944,\n \"aliqua_7\": 93680142\n },\n {\n \"in87e\": 55689003.2256394,\n \"sunt56\": -43710026.451115526\n }\n ],\n \"context\": {\n \"incididunt2_0\": -52225388,\n \"dolordb8\": \"minim aliquip fugiat labore\",\n \"anim959\": \"commodo aliquip\",\n \"laborum4_\": -16597036\n }\n}", + "body": "{\n \"detail\": [\n {\n \"minimf\": 63163700,\n \"et_96a\": 31499836\n },\n {\n \"Ut_6d5\": true\n }\n ],\n \"context\": {\n \"eae6\": 95560849,\n \"sint_9_8\": 22931768,\n \"ut_6cd\": -74704779.42150357\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20495,7 +20495,7 @@ "description": "The Transit API delivers comprehensive public transportation routing information by calculating optimal travel paths between \norigins and destinations. It provides detailed route data including distance, duration, polyline visualization, \nand complete step-by-step transit instructions with transfer points and transportation modes. The API is ideal for \napplications requiring accurate public transit navigation and trip planning capabilities.\n", "item": [ { - "id": "40585527-c1f8-41a8-886b-9f723ca67973", + "id": "b24658c3-fa09-4bda-8286-cda20546a717", "name": "Transit Route", "request": { "name": "Transit Route", @@ -20588,7 +20588,7 @@ }, "response": [ { - "id": "c90bafe3-6821-41be-9d38-49da0b67901d", + "id": "3a2fe9b3-0a78-4b43-8e40-08f01ee3c80f", "name": "Successful Response", "originalRequest": { "url": { @@ -20678,7 +20678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ceb544f-1a3d-4799-9f42-89f9767e2899", + "id": "0c0ed52e-85fc-4f77-8ec5-7d4de5202026", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -20768,7 +20768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62faaa8e-1fdb-47b0-8183-3f647b6e84e5", + "id": "d8cd5264-16db-44b1-bec5-03a8eed7bae2", "name": "Out of free quota.", "originalRequest": { "url": { @@ -20858,7 +20858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0c8eded-0dcf-4df2-8bbe-eb4bca929d2e", + "id": "cfbdcc33-04d0-4461-baf4-de74c4040b2d", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -20948,7 +20948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf03c835-07e3-4744-ae46-629d7944b0ee", + "id": "7a93f05d-89e3-4759-a3d4-d817f830841d", "name": "Validation Error", "originalRequest": { "url": { @@ -21038,7 +21038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6011a787-9b8f-4bfa-ad49-94fa25583a21", + "id": "5256b1ab-f083-4796-a1ae-ae0a1991d9f9", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21140,7 +21140,7 @@ "description": "The Datasets API enables you to store, manage, and analyze geospatial data collections. Work with custom datasets containing points, lines, or polygons - with each feature defined by its geometry and properties.\n\n* Create and manage datasets from uploaded Shapefile data\n* Import data from external sources via URL or scheduled updates\n* Monitor dataset status and processing through detailed status reports\n* Schedule dataset deletion for proper data lifecycle management\n* Leverage high accuracy storage for location-dependent business processes\n\nIdeal for applications that require precise location analysis, spatial queries and geographic data management.\n", "item": [ { - "id": "bf7ad7d0-1fe9-45ed-b2a5-c3855d8ce3f8", + "id": "a9a2d391-2c8a-47b4-b941-34924dcb193f", "name": "Get Dataset", "request": { "name": "Get Dataset", @@ -21198,7 +21198,7 @@ }, "response": [ { - "id": "48196725-b873-4ed7-ba07-a5ce8b7dd97b", + "id": "2df1103e-acdf-4f6d-bf35-69600fbafd9f", "name": "Successful Response", "originalRequest": { "url": { @@ -21243,7 +21243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a51e6927-3564-4df8-8b4f-e64c8f0a7094", + "id": "384844e5-89b6-4fa2-b09e-4f9f2d0a35c6", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -21288,7 +21288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fea44a4-b375-4dd9-8f9f-dec0e1f0d928", + "id": "062cda1a-b875-4889-8a6b-e18e892e6442", "name": "Out of free quota.", "originalRequest": { "url": { @@ -21333,7 +21333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "680607b8-fed2-48d1-81db-606cfc625553", + "id": "36909bf6-51fd-4ba6-b505-c3aeb2abf3ca", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -21378,7 +21378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d5ee247-1bed-450a-b1bd-786836b9d954", + "id": "1fc5a121-5329-4c83-999e-cdcca4131edf", "name": "Dataset was not found", "originalRequest": { "url": { @@ -21423,7 +21423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f487c58-a178-4a3b-8708-3d082b912a7b", + "id": "91452d99-6c4a-4cf1-83a5-41d08f4ce8bb", "name": "Validation Error", "originalRequest": { "url": { @@ -21468,7 +21468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e06c8d88-4ebd-453e-be47-b7e9af87d4f0", + "id": "caaf9297-ca1d-41ca-a836-5935382d9f9f", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21519,7 +21519,7 @@ } }, { - "id": "3af77dbc-e6e9-4d66-a7ea-7c9a0419801b", + "id": "1a5d7062-ddd6-4d3d-989b-a2e622c47cf9", "name": "Delete Dataset", "request": { "name": "Delete Dataset", @@ -21577,7 +21577,7 @@ }, "response": [ { - "id": "eae84d1a-e189-4967-aadf-51d3d62b111b", + "id": "a9f23171-1f3d-4b70-966d-0d975425b6b9", "name": "Successful Response", "originalRequest": { "url": { @@ -21617,12 +21617,12 @@ "value": "application/json" } ], - "body": "{\n \"et2a\": true,\n \"culpa5\": -46374697\n}", + "body": "{\n \"ida_a\": false,\n \"Excepteur_04\": -38477499.82226927,\n \"in6\": \"esse aute ut\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27ddfde1-5686-417c-978b-4f4032877bf6", + "id": "bef008c8-5423-4f19-a088-441cf72e8909", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -21667,7 +21667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50d6861b-402e-4cfd-885c-ddae46f39c33", + "id": "1e8deb87-1a52-4f9a-8537-c0a8b5be0794", "name": "Out of free quota.", "originalRequest": { "url": { @@ -21712,7 +21712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ae6851e-ff53-4c21-a3f5-08475c4391ed", + "id": "a22ea7b0-9703-46be-87f1-45adaccfa3eb", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -21757,7 +21757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89ea43d7-4ee2-49f7-a7da-c3b456c92b8f", + "id": "e71bc3e7-cdbe-4e70-8408-982cdb478274", "name": "Dataset was not found", "originalRequest": { "url": { @@ -21802,7 +21802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab97c869-f1ee-436f-a4ef-c77739c2941f", + "id": "7136ee22-8ebe-44c7-bc42-a6dcf75d3e9b", "name": "The Dataset was already scheduled for deletion.", "originalRequest": { "url": { @@ -21847,7 +21847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84e92d69-9365-486c-9d70-781fd42d6722", + "id": "a101547b-95a5-437f-ab71-ac1ed5af67f7", "name": "Validation Error", "originalRequest": { "url": { @@ -21892,7 +21892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0502acd-1daa-4bea-b9f0-cc08bb0e4493", + "id": "b403b447-c50d-4c05-8b7c-4f8578ecdf8a", "name": "Rate limit reached", "originalRequest": { "url": { @@ -21943,7 +21943,7 @@ } }, { - "id": "f2967622-bc20-4d51-b022-834c1141e2e9", + "id": "c6f9da7f-726d-4874-a7d1-8beed02ac384", "name": "Update Dataset", "request": { "name": "Update Dataset", @@ -22014,7 +22014,7 @@ }, "response": [ { - "id": "e0fc9ccd-0aa9-4d2e-9ab8-eee36b79859f", + "id": "41140960-a046-4544-ae37-e3fb1a85acb2", "name": "Successful Response", "originalRequest": { "url": { @@ -22072,7 +22072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64980693-300a-465c-9a03-9b754a21570a", + "id": "3b15417f-7f54-40a9-9133-b24ee9a1d820", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -22130,7 +22130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e195443e-514e-4b5c-9195-005c59ba977d", + "id": "946018ec-a101-4b0c-9cfa-80955fd5d538", "name": "Out of free quota.", "originalRequest": { "url": { @@ -22188,7 +22188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96f9bf76-8360-4045-9f2d-a6fa25195367", + "id": "3cd14d68-33a8-4b73-98fb-2b17db1f39fe", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -22246,7 +22246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64d7c830-d0ec-4588-b2ff-d9c13d6b574a", + "id": "d16467e9-4f4c-4df3-946b-4e9664475653", "name": "Dataset was not found", "originalRequest": { "url": { @@ -22304,7 +22304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93e3bf09-d7f8-4592-9101-7b7a98b17f1a", + "id": "e38a60c4-3864-4719-af6c-7365b51eb1b8", "name": "Validation Error", "originalRequest": { "url": { @@ -22362,7 +22362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f797f097-1e18-4504-8f51-9978403050c6", + "id": "bffb2986-c3aa-41fe-b131-246e1c9ac21e", "name": "Rate limit reached", "originalRequest": { "url": { @@ -22426,7 +22426,7 @@ } }, { - "id": "d7a07776-ccf6-4911-9b95-997ef72195c3", + "id": "02ce091a-cd15-4183-828b-a1e58523a175", "name": "List Datasets", "request": { "name": "List Datasets", @@ -22492,7 +22492,7 @@ }, "response": [ { - "id": "f245393b-b2c8-48c6-ba85-1b64a807fe8e", + "id": "0cf9e016-4b57-49aa-856e-6898d5c2d053", "name": "Successful Response", "originalRequest": { "url": { @@ -22555,7 +22555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "860ddef0-efc0-4e0c-a520-78eed2055344", + "id": "f7311861-30e0-4d94-97aa-65b6d0a119c8", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -22618,7 +22618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3296b4ba-ce9e-40ff-8b79-c0b346e14199", + "id": "00e648ce-1816-4454-9597-34ccfc81c514", "name": "Out of free quota.", "originalRequest": { "url": { @@ -22681,7 +22681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa71a048-cd0f-4b33-b22a-d6e688fe4991", + "id": "b69ea6be-1a7e-4172-b4ed-8e5980cc5f07", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -22744,7 +22744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa465fa0-a0b4-4e20-afe3-b7ec4e331b89", + "id": "4e2d009a-79d2-432c-b5f0-0ba435956d1d", "name": "Validation Error", "originalRequest": { "url": { @@ -22807,7 +22807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a8eb4fc-2db6-432a-a5ea-ce9e99037c18", + "id": "83f09b4c-db30-40d2-824a-d1864434dc44", "name": "Rate limit reached", "originalRequest": { "url": { @@ -22876,7 +22876,7 @@ } }, { - "id": "4eaa9d6a-0db6-4055-b701-12e2c256ae78", + "id": "6af30df2-12c0-4c34-b64d-a1efe3e277fc", "name": "Create Dataset", "request": { "name": "Create Dataset", @@ -22936,7 +22936,7 @@ }, "response": [ { - "id": "2b81ef35-ecaf-4b8c-b93c-44b50a2296b6", + "id": "0d2ff811-ecd4-4d61-9951-f8d1d5171d89", "name": "Successful Response", "originalRequest": { "url": { @@ -22994,7 +22994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa439ff9-78e3-4d5b-a2a9-48b1b4f5ee05", + "id": "0263962f-05d2-44c5-92c6-0a68cdff2097", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23052,7 +23052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc851d2f-4d09-4084-94c5-45ba5377745c", + "id": "e8d442ca-cc26-4e25-b960-3440cb1046df", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23110,7 +23110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9478b169-c81e-463b-b4d5-ef5ab4489a97", + "id": "5bced6cc-4ab2-4976-9db0-2013d10cb512", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23168,7 +23168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3665f71d-dc23-436e-9c93-480dbc5f214e", + "id": "ece7a168-7fdf-4f9a-b52b-d64bffef1533", "name": "Validation Error", "originalRequest": { "url": { @@ -23226,7 +23226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1466397-97d7-44f7-a422-3878cd77381a", + "id": "335aefc2-e44d-4440-8a8b-f75bb2a5968a", "name": "Rate limit reached", "originalRequest": { "url": { @@ -23290,7 +23290,7 @@ } }, { - "id": "5711330c-270f-461d-b6ed-f8547a89d5da", + "id": "61494361-2773-4bcd-9875-5accbbc198d0", "name": "Get Dataset Status", "request": { "name": "Get Dataset Status", @@ -23349,7 +23349,7 @@ }, "response": [ { - "id": "a7823a00-6fa9-4970-9757-543faf9e4ec1", + "id": "983630aa-e44e-467b-820a-b25fbff8f61a", "name": "Successful Response", "originalRequest": { "url": { @@ -23390,12 +23390,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"steps\": [\n {\n \"name\": \"fetch\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"info\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n }\n ],\n \"status\": \"failed\"\n },\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"warning\"\n }\n ],\n \"status\": \"in_progress\"\n }\n ],\n \"status\": \"failed\"\n}", + "body": "{\n \"id\": \"\",\n \"steps\": [\n {\n \"name\": \"fetch\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"info\"\n }\n ],\n \"status\": \"failed\"\n },\n {\n \"name\": \"import\",\n \"start\": \"\",\n \"end\": \"\",\n \"entries\": [\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n },\n {\n \"created_at\": \"\",\n \"detail\": \"\",\n \"level\": \"error\"\n }\n ],\n \"status\": \"failed\"\n }\n ],\n \"status\": \"failed\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a8fc329c-a288-4437-a6e4-2b894a9e3d67", + "id": "b2b94cf9-4dbb-4aa9-893c-1ace936d4197", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23441,7 +23441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e536c4a5-22bf-41d6-ac11-bde8ae9e1468", + "id": "0b35b253-d2e3-4889-9a4f-fe591fa1111d", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23487,7 +23487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04cbbc5f-a8c8-47fe-ae56-cbb74b51c22c", + "id": "9316f477-d86c-4380-95c8-85bab3478bed", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23533,7 +23533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3a42175-73ce-43e4-8b5f-17290ad9350f", + "id": "520d3bf4-0fcc-4203-b2d6-484b09bcb73b", "name": "Dataset was not found", "originalRequest": { "url": { @@ -23579,7 +23579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ace4ef9-14f7-4b5a-8787-0a0af7b47ac2", + "id": "6b104809-f68d-40e5-8c5b-a3d457c6cae3", "name": "Validation Error", "originalRequest": { "url": { @@ -23625,7 +23625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e8b4302-fbf6-433b-96e9-b758fd6239f5", + "id": "09a761df-35e2-46d9-bb52-70a7a33d1269", "name": "Rate limit reached", "originalRequest": { "url": { @@ -23677,7 +23677,7 @@ } }, { - "id": "36843e8c-17fd-4243-b874-506ac272d2e3", + "id": "c07cf34d-3e0f-4612-805c-9ca883cd3196", "name": "Trigger Import", "request": { "name": "Trigger Import", @@ -23736,7 +23736,7 @@ }, "response": [ { - "id": "5b6ad51f-ce5d-4dad-bb33-be2184acf496", + "id": "c591bdf3-b8ca-4d0b-8210-ca94d18ad473", "name": "Successful Response", "originalRequest": { "url": { @@ -23782,7 +23782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33c4a549-192d-4cf2-b228-b5cf65763104", + "id": "3632159a-6627-4a4d-ae9e-ffe40214a809", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -23828,7 +23828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c408a60-ea95-4f41-870d-d2f2d16a785c", + "id": "e114ac32-3213-40f0-b676-dd76481c396f", "name": "Out of free quota.", "originalRequest": { "url": { @@ -23874,7 +23874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31801913-c243-4be8-bd4f-3734bae21243", + "id": "6319da07-dc38-4ad5-9b19-6751d7c38af6", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -23920,7 +23920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07d26d05-328c-4d51-9f1d-03b1fc36f44b", + "id": "700052c1-47da-49af-8bb6-40b556c730f7", "name": "Dataset was not found", "originalRequest": { "url": { @@ -23966,7 +23966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a020ea82-5819-43f8-9dd3-0a759d728c80", + "id": "fee73257-b5d5-4ebc-905c-04dd33c1482c", "name": "Validation Error", "originalRequest": { "url": { @@ -24012,7 +24012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21a82ec1-3158-48ff-b61f-f12d1cfa682b", + "id": "081f1290-b8ef-4bd6-85c5-3bf2177453c3", "name": "Rate limit reached", "originalRequest": { "url": { @@ -24064,7 +24064,7 @@ } }, { - "id": "793c2aa8-31e7-4d41-8190-b8cd23fb90b7", + "id": "a05f1d67-907a-4ab6-8389-f0ab703a3ad9", "name": "Reimport Dataset Webhook", "request": { "name": "Reimport Dataset Webhook", @@ -24108,7 +24108,7 @@ }, "response": [ { - "id": "e5429ba8-2390-4e1c-9642-cd1cc0bee7d1", + "id": "fbd1c051-8f38-48f4-9f96-4db9b7fedcde", "name": "Successful Response", "originalRequest": { "url": { @@ -24146,7 +24146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b33d1933-c60c-426a-97ac-e4a57ecdaeda", + "id": "98634018-467d-477a-b0ae-aa9f139d78d4", "name": "Unauthorized", "originalRequest": { "url": { @@ -24172,7 +24172,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0074e2dc-ff05-42a4-845b-2fcc8ebc9436", + "id": "a9b5c1c8-7e14-4947-bb53-cb79f7e1df01", "name": "Payment Required", "originalRequest": { "url": { @@ -24198,7 +24198,7 @@ "_postman_previewlanguage": "text" }, { - "id": "71b8f42a-2bcf-49a1-844a-25349ef00b26", + "id": "c2e702c0-9d91-417a-9e80-31e504a41dac", "name": "Forbidden", "originalRequest": { "url": { @@ -24224,7 +24224,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6dcbb394-9f1e-4ce9-8008-b7b70bb964aa", + "id": "0fe77ea6-58f7-40b0-ae60-2fce14c7f718", "name": "Dataset was not found", "originalRequest": { "url": { @@ -24262,7 +24262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a478873-de4b-4191-b61e-9cca8745bab6", + "id": "223a1cf0-0378-4ffb-877d-6e8dfa44405a", "name": "Validation Error", "originalRequest": { "url": { @@ -24300,7 +24300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77b26290-38a0-4e03-bb28-524162a25312", + "id": "784ed52b-829c-4be1-9b19-39becc960e58", "name": "Rate limit reached", "originalRequest": { "url": { @@ -24350,7 +24350,7 @@ "description": "Perform powerful spatial analysis on your geospatial data with four key search capabilities:\n\n* Nearby search: Find features within a specified distance from a location\n* Contains search: Discover which features completely contain a point or geometry\n* Intersects search: Identify features that intersect with a given geometry\n* Within search: Locate features that fall entirely inside a specified boundary\n\nAll operations support attribute filtering with WHERE clauses, pagination for large results, and multiple geometry formats (GeoJSON, WKB, encoded polylines).\n", "item": [ { - "id": "200255b9-d8ad-4c38-b0c5-dd299d53cf68", + "id": "d911f7fc-5c66-4241-a5a1-c194e0ef0c78", "name": "Search Features", "request": { "name": "Search Features", @@ -24452,7 +24452,7 @@ }, "response": [ { - "id": "a65dc854-4b30-40e3-941b-d1352010b973", + "id": "14640b86-78e9-41a3-a3bd-498769ec2ddf", "name": "Successful Response", "originalRequest": { "url": { @@ -24535,12 +24535,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"velit_1e\": false,\n \"nulla_93\": -76418314.53380412\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"autedc\": \"irure ex labore consectetur\",\n \"id_718\": 1558350.8990016729\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"amet_2\": 67349746,\n \"consecteture\": true\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ipsum_14\": -6294064\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa1ed969-cba9-4245-82c3-10cc04e8671b", + "id": "036fc9b4-1ffb-4afe-a038-5901c2a30a33", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -24628,7 +24628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aeda7bad-7179-464b-a6a8-38595bcbc8f1", + "id": "37e98f8e-c3ad-4cc8-864a-713d79f7540a", "name": "Out of free quota.", "originalRequest": { "url": { @@ -24716,7 +24716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f6fddec-0c7a-4efe-8109-5c13f1938c0c", + "id": "16dab2fe-e494-4329-b807-a6539fc85500", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -24804,7 +24804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7c48d5e-8e4a-4b0a-b3e6-651cefa7348a", + "id": "60746137-3796-4591-954b-cd6e15f21508", "name": "Dataset was not found", "originalRequest": { "url": { @@ -24892,7 +24892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50e26963-a744-44f3-a443-9664e5fac596", + "id": "ebd4231d-a0a2-4d0d-b52e-022be2a0dce5", "name": "Validation Error", "originalRequest": { "url": { @@ -24980,7 +24980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd9b6bee-66b8-4819-b6ec-3377a6fc8756", + "id": "44101940-285e-452d-8b5b-72b234ff9e9d", "name": "Rate limit reached", "originalRequest": { "url": { @@ -25074,7 +25074,7 @@ } }, { - "id": "44c36d46-c02b-4c61-9885-fe85295a94cf", + "id": "7b54ccb0-e0b0-4d1f-9fbd-8aee66751472", "name": "Nearby Features", "request": { "name": "Nearby Features", @@ -25176,7 +25176,7 @@ }, "response": [ { - "id": "9c89e5a8-9daf-4fce-998b-b8e9da2ade21", + "id": "7ccc77be-7efc-4092-84c6-61b7022bb981", "name": "Successful Response", "originalRequest": { "url": { @@ -25259,12 +25259,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"velit_1e\": false,\n \"nulla_93\": -76418314.53380412\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"autedc\": \"irure ex labore consectetur\",\n \"id_718\": 1558350.8990016729\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"amet_2\": 67349746,\n \"consecteture\": true\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ipsum_14\": -6294064\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d93f1df0-c89f-44c7-8edf-8c44ab30ef51", + "id": "d27dd232-b42a-46f1-a44a-46d670ec160c", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -25352,7 +25352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "686730f1-534a-41f5-bf7b-c8a32b238dec", + "id": "4da02b06-da12-4766-8169-1b03003cee08", "name": "Out of free quota.", "originalRequest": { "url": { @@ -25440,7 +25440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e28fcb7-389d-4aa9-9fa1-a461968143ac", + "id": "55e7d71e-0e77-4057-af1b-e6074a6f47ff", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -25528,7 +25528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e5fee47-a244-4b58-b8e8-689f9058e09c", + "id": "b61fdadb-e991-4429-8555-f05d6d636be6", "name": "Dataset was not found", "originalRequest": { "url": { @@ -25616,7 +25616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d116414-3e24-40f5-817c-7d3c9d07c1c8", + "id": "11ca395f-66d0-4791-9c79-edac15648293", "name": "Validation Error", "originalRequest": { "url": { @@ -25704,7 +25704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92482039-810e-46d4-83c8-a884c431595b", + "id": "8d510041-1193-469b-a496-849b505d7c7f", "name": "Rate limit reached", "originalRequest": { "url": { @@ -25798,7 +25798,7 @@ } }, { - "id": "4fdc0074-7062-4b00-a9d8-c21878f69e99", + "id": "d908c187-289d-4da6-bd76-49b05435a46b", "name": "Intersect Features", "request": { "name": "Intersect Features", @@ -25900,7 +25900,7 @@ }, "response": [ { - "id": "353ba4e1-a734-4aa4-847f-c440199cd921", + "id": "b702263c-8312-4d7a-a9f7-705ad907e117", "name": "Successful Response", "originalRequest": { "url": { @@ -25983,12 +25983,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"velit_1e\": false,\n \"nulla_93\": -76418314.53380412\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"autedc\": \"irure ex labore consectetur\",\n \"id_718\": 1558350.8990016729\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"amet_2\": 67349746,\n \"consecteture\": true\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ipsum_14\": -6294064\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78092a41-d370-4dc4-8489-bf3436aa2e25", + "id": "d4cc1214-a9f0-441b-8c40-8b42965b7826", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -26076,7 +26076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d5f996d-2086-473d-aeb5-d8b4ee3105ff", + "id": "2cff9387-6d68-416b-bdb2-9a0b660163b4", "name": "Out of free quota.", "originalRequest": { "url": { @@ -26164,7 +26164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be381b5d-c5ac-4c48-a525-2f99e0b5cb88", + "id": "44666e33-9e82-425e-af89-b70e72dd0d0b", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -26252,7 +26252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ba311c3-9f98-4975-9a55-c4515ff4d618", + "id": "3c5ea0d9-7240-447b-a49f-1ba8659eaefe", "name": "Dataset was not found", "originalRequest": { "url": { @@ -26340,7 +26340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9a93caa-0516-4a37-b7aa-793e798a5cd1", + "id": "3c43cf32-242e-40a6-944a-f460aba998a3", "name": "Validation Error", "originalRequest": { "url": { @@ -26428,7 +26428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8ef206a-bbcb-45ae-a4ef-31a7edbe2c96", + "id": "3d970ae7-ddec-4784-bd21-f858abc1ffa1", "name": "Rate limit reached", "originalRequest": { "url": { @@ -26522,7 +26522,7 @@ } }, { - "id": "6ad7f74d-3318-421f-b15c-c01fb6129ae5", + "id": "6a4fb786-d1a2-40bf-a3cc-e5c1264ca13a", "name": "Contains Features", "request": { "name": "Contains Features", @@ -26624,7 +26624,7 @@ }, "response": [ { - "id": "6959993e-a334-4a6c-86ac-1f4e64ab5b4f", + "id": "6acd8206-8f60-4158-b2b8-5f2c6e285a83", "name": "Successful Response", "originalRequest": { "url": { @@ -26707,12 +26707,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"velit_1e\": false,\n \"nulla_93\": -76418314.53380412\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"autedc\": \"irure ex labore consectetur\",\n \"id_718\": 1558350.8990016729\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"amet_2\": 67349746,\n \"consecteture\": true\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ipsum_14\": -6294064\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f90606f4-0acf-4546-8c1f-6719829808d8", + "id": "7a2a0656-500c-474d-a47a-8fc7c185e635", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -26800,7 +26800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20770ec9-71c9-48c5-a878-23cfc4d5bb43", + "id": "adc178cc-d864-4e65-888e-accc07ef336e", "name": "Out of free quota.", "originalRequest": { "url": { @@ -26888,7 +26888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64782f94-e1b1-4ac8-ae11-7e30342e880b", + "id": "3ecedc57-9f7e-4055-a32f-c55d622c5253", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -26976,7 +26976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31c23eff-5c1c-4292-8a99-99d709082728", + "id": "96e3f543-f11b-4882-89cf-e05557f65138", "name": "Dataset was not found", "originalRequest": { "url": { @@ -27064,7 +27064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6248b56-8d9d-463f-8676-c1925351a148", + "id": "1e37132a-0df8-4e1a-91b3-1e6fbf7ebd0e", "name": "Validation Error", "originalRequest": { "url": { @@ -27152,7 +27152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f1a72cc-f062-4e06-a711-3e024725e972", + "id": "a37f5561-45d0-4739-a176-bcf031a9d924", "name": "Rate limit reached", "originalRequest": { "url": { @@ -27246,7 +27246,7 @@ } }, { - "id": "17adfe10-f801-4935-8037-8c0e3666c841", + "id": "980540ba-2767-4ec1-9d49-d260eba858c1", "name": "Within Features", "request": { "name": "Within Features", @@ -27348,7 +27348,7 @@ }, "response": [ { - "id": "479de1cf-3b02-457c-95a3-492b80154610", + "id": "272b628b-d8d4-4288-8925-4ee07a80c832", "name": "Successful Response", "originalRequest": { "url": { @@ -27431,12 +27431,12 @@ "value": "application/json" } ], - "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"velit_1e\": false,\n \"nulla_93\": -76418314.53380412\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"autedc\": \"irure ex labore consectetur\",\n \"id_718\": 1558350.8990016729\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", + "body": "{\n \"features\": [\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"amet_2\": 67349746,\n \"consecteture\": true\n }\n },\n {\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"ipsum_14\": -6294064\n }\n }\n ],\n \"pagination\": {\n \"page\": \"\",\n \"prev\": \"\",\n \"next\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c40d86f4-06b6-44c9-ba26-7145035f44d7", + "id": "714cffd1-b9de-4605-a88f-51ba85d1c5e4", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -27524,7 +27524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0528e1e-1ee4-46aa-ba00-65360c72fb30", + "id": "b2e07dc4-677a-4751-be60-c8c0af8acea0", "name": "Out of free quota.", "originalRequest": { "url": { @@ -27612,7 +27612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38933e34-a013-47a5-9a4d-a08caa89b527", + "id": "10ffa8cd-e230-437a-8115-9a1595af1810", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -27700,7 +27700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6324bce6-0bac-4760-a187-300189d6f1ca", + "id": "90bbb0ee-5910-4684-a5a6-dab04718ce92", "name": "Dataset was not found", "originalRequest": { "url": { @@ -27788,7 +27788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcc7c1e9-6d2c-4734-976b-96df8824fe56", + "id": "5c3da60e-c8f2-4dcd-9736-2e838648e330", "name": "Validation Error", "originalRequest": { "url": { @@ -27876,7 +27876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c59abfa2-408a-48db-bc68-96a622cf1b89", + "id": "e1c47cc9-758f-41d6-8806-3f94815445fa", "name": "Rate limit reached", "originalRequest": { "url": { @@ -27976,7 +27976,7 @@ "description": "Access and retrieve individual geographic features from your datasets by their unique ID. This endpoint provides direct access to the complete geometry and properties of specific features within your datasets.\n\nThe API supports field masking to optimize response size by retrieving only needed attributes. Output formats include both GeoJSON and WKB, allowing flexible integration with various mapping and analysis systems.\n", "item": [ { - "id": "1eed76e3-4c42-4fe7-9d33-a10d55eb842e", + "id": "8ea6ee80-dcae-49f1-a3db-a227190e8b38", "name": "Get Feature", "request": { "name": "Get Feature", @@ -28065,7 +28065,7 @@ }, "response": [ { - "id": "435f4d89-135e-498c-9dcf-0112d1bf0055", + "id": "e8a14b81-0299-4752-a388-16a802e3fb71", "name": "Successful Response", "originalRequest": { "url": { @@ -28125,12 +28125,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"Ut1\": 53013316.29298097\n }\n}", + "body": "{\n \"id\": \"\",\n \"geometry\": \"\",\n \"attributes\": {\n \"officia_2fc\": -86350349,\n \"culpa_833\": -68585778.32139754,\n \"mollit_5d9\": -44328381\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "902537d5-7cd4-4341-9828-5040d0460817", + "id": "7e8d1b27-c2a5-4132-b9a3-4d97030d5322", "name": "Unable to locate credentials.", "originalRequest": { "url": { @@ -28195,7 +28195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "187a34ae-8a9d-40d7-b0f3-fb9f6d64115f", + "id": "29601092-10b5-496e-9a27-092c10e65d55", "name": "Out of free quota.", "originalRequest": { "url": { @@ -28260,7 +28260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b172f439-76d1-4da3-8086-dce2caccb583", + "id": "70deb7be-2d8f-473c-93bc-87079638ac19", "name": "Credentials found, but not matching.", "originalRequest": { "url": { @@ -28325,7 +28325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2589532-6cf0-4783-8cc4-08cba1d6f08b", + "id": "dabe03b9-a1bf-4161-bd40-7d0ef3166374", "name": "Feature or Dataset were not found", "originalRequest": { "url": { @@ -28390,7 +28390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14aa3f19-d31f-41eb-91c4-e21af44dbded", + "id": "391cbb8f-8feb-430a-bee4-4dfdc135231a", "name": "Validation Error", "originalRequest": { "url": { @@ -28455,7 +28455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36366e4e-e5a1-4c25-91f4-74033b0e11d9", + "id": "c0ba294c-b2af-40e1-9c6a-7f0ee5819c4f", "name": "Rate limit reached", "originalRequest": { "url": { @@ -28540,7 +28540,7 @@ } ], "info": { - "_postman_id": "27bbed07-c0df-4a66-8391-fe24fc4a32c3", + "_postman_id": "fdc3bcf0-58dc-42a1-9b5e-d66f359bec19", "name": "Woosmap Platform API Reference", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": {