diff --git a/apimanager/apimanager/settings.py b/apimanager/apimanager/settings.py
index ba29889..6d566bb 100644
--- a/apimanager/apimanager/settings.py
+++ b/apimanager/apimanager/settings.py
@@ -60,6 +60,7 @@ INSTALLED_APPS = [
'config',
'webui',
'methodrouting',
+ 'connectormethod',
'dynamicendpoints',
'apicollections'
]
diff --git a/apimanager/apimanager/urls.py b/apimanager/apimanager/urls.py
index 2fabb9f..2ccaf10 100644
--- a/apimanager/apimanager/urls.py
+++ b/apimanager/apimanager/urls.py
@@ -45,6 +45,7 @@ urlpatterns += i18n_patterns(
url(r'^config/', include('config.urls')),
url(r'^webui/', include('webui.urls')),
url(r'^methodrouting/', include('methodrouting.urls')),
+ url(r'^connectormethod/', include('connectormethod.urls')),
url(r'^dynamicendpoints/', include('dynamicendpoints.urls')),
url(r'^apicollections/', include('apicollections.urls')),
)
diff --git a/apimanager/atmdetail/templates/atmsView/atmdetail.html b/apimanager/atmdetail/templates/atmsView/atmdetail.html
index b048a43..d7141ae 100644
--- a/apimanager/atmdetail/templates/atmsView/atmdetail.html
+++ b/apimanager/atmdetail/templates/atmsView/atmdetail.html
@@ -2,6 +2,9 @@
{% block page_title %} {% trans "API Manager" %}/{% trans "ATMs Detail" %}{% endblock page_title %} {% block content %}
{% trans "ATMs List" %}
+
diff --git a/apimanager/atmdetail/urls.py b/apimanager/atmdetail/urls.py
index fe08919..3768860 100644
--- a/apimanager/atmdetail/urls.py
+++ b/apimanager/atmdetail/urls.py
@@ -4,10 +4,13 @@ URLs for metrics app
"""
from django.conf.urls import url
-from .views import AtmListView
+from .views import AtmListView, ExportCsvView
urlpatterns = [
url(r'^$',
AtmListView.as_view(),
- name='atm-detail')
+ name='atm-detail'),
+ url(r'^export_csv$',
+ ExportCsvView.as_view(),
+ name='export-csv')
]
diff --git a/apimanager/atmdetail/views.py b/apimanager/atmdetail/views.py
index dce864d..221edf1 100644
--- a/apimanager/atmdetail/views.py
+++ b/apimanager/atmdetail/views.py
@@ -5,13 +5,16 @@ from django.shortcuts import render
"""
Views of atms app
"""
+import datetime
from django.contrib import messages
from django.contrib.auth.mixins import LoginRequiredMixin
import json
from django.urls import reverse_lazy
-from django.views.generic import FormView
+from django.http import HttpResponse
+from django.views.generic import FormView,TemplateView, View
from atms.views import IndexAtmsView
from obp.api import API, APIError
+import csv
@@ -58,3 +61,45 @@ class AtmListView(IndexAtmsView, LoginRequiredMixin, FormView ):
'bankids': self.bankids
})
return context
+class ExportCsvView(LoginRequiredMixin, View):
+ """View to export the user to csv"""
+ def get_banks(self):
+ api = API(self.request.session.get('obp'))
+ try:
+ urlpath = '/banks'
+ result = api.get(urlpath)
+ if 'banks' in result:
+ return [bank['id'] for bank in sorted(result['banks'], key=lambda d: d['id'])]
+ else:
+ return []
+ except APIError as err:
+ messages.error(self.request, err)
+ return []
+ def get(self, request, *args, **kwargs):
+ api = API(self.request.session.get('obp'))
+ try:
+ print("Helooooooo")
+ self.bankids = self.get_banks()
+ print("Worlddddddd", )
+ atms_list = []
+ for bank_id in self.bankids:
+ urlpath = '/banks/{}/atms'.format(bank_id)
+ result = api.get(urlpath)
+ #print(result)
+ if 'atms' in result:
+ atms_list.extend(result['atms'])
+ except APIError as err:
+ messages.error(self.request, err)
+ except Exception as inst:
+ messages.error(self.request, "Unknown Error {}".format(type(inst).__name__))
+ response = HttpResponse(content_type = 'text/csv')
+ response['Content-Disposition'] = 'attachment;filename= Atms'+ str(datetime.datetime.now())+'.csv'
+ writer = csv.writer(response)
+ writer.writerow(["id","name","notes","line_1","line_2","line_3","city", "county", "state", "postcode","country_code", "longitude","latitude","more_info"])
+ for user in atms_list:
+ writer.writerow([user['id'],user['name'], user['notes'], user["address"]['line_1'], user["address"]['line_2'],
+ user["address"]['line_3'], user["address"]['city'], user["address"]['county'], user["address"]['state'], user["address"]['postcode'], user["address"]['country_code'], user["location"]['longitude'], user["location"]['latitude'], user['more_info']])
+ return response
+
+ #print(atms_list)
+
diff --git a/apimanager/atms/templates/atms/atm_List.html b/apimanager/atms/templates/atms/atm_list.html
similarity index 100%
rename from apimanager/atms/templates/atms/atm_List.html
rename to apimanager/atms/templates/atms/atm_list.html
diff --git a/apimanager/base/templates/base.html b/apimanager/base/templates/base.html
index ebdd113..65742e8 100644
--- a/apimanager/base/templates/base.html
+++ b/apimanager/base/templates/base.html
@@ -88,6 +88,7 @@
{% url "config-index" as config_index_url %}
{% url "webui-index" as webui_props_index_url %}
{% url "methodrouting-index" as methodrouting_index_url %}
+ {% url "connectormethod" as connectormethod_url %}
{% url "dynamicendpoints-index" as dynamic_endpoints_index_url %}
{% url "apicollections-index" as api_collections_index_url %}
@@ -96,6 +97,7 @@
{% trans "Config" %}
{% trans "Webui Props" %}
{% trans "Method Routings" %}
+ {% trans "Connector Method" %}
{% trans "Dynamic Endpoints" %}
{% trans "My API Collections" %}
diff --git a/apimanager/connectormethod/__init__.py b/apimanager/connectormethod/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/apimanager/connectormethod/apps.py b/apimanager/connectormethod/apps.py
new file mode 100644
index 0000000..792a060
--- /dev/null
+++ b/apimanager/connectormethod/apps.py
@@ -0,0 +1,10 @@
+# -*- coding: utf-8 -*-
+"""
+App config for config app
+"""
+
+from django.apps import AppConfig
+
+class ApiCollectionsConfig(AppConfig):
+ """Config for connectormethod"""
+ name = 'connectormethod'
diff --git a/apimanager/connectormethod/forms.py b/apimanager/connectormethod/forms.py
new file mode 100644
index 0000000..9101ab4
--- /dev/null
+++ b/apimanager/connectormethod/forms.py
@@ -0,0 +1,24 @@
+from django import forms
+
+
+class ConnectorMethodForm(forms.Form):
+ api_collections_body = forms.CharField(
+ label='API Collections Body',
+ widget=forms.Textarea(
+ attrs={
+ 'class': 'form-control',
+ }
+ ),
+ required=False
+ )
+
+class ConnectorMethodEndpointForm(forms.Form):
+ operation_id = forms.CharField(
+ label='Operation Id',
+ widget=forms.TextInput(
+ attrs={
+ 'class': 'form-control',
+ }
+ ),
+ required=True
+ )
\ No newline at end of file
diff --git a/apimanager/connectormethod/static/connectormethod/js/connectormethod.js b/apimanager/connectormethod/static/connectormethod/js/connectormethod.js
new file mode 100644
index 0000000..d0d9d94
--- /dev/null
+++ b/apimanager/connectormethod/static/connectormethod/js/connectormethod.js
@@ -0,0 +1,34 @@
+$(document).ready(function($) {
+ $('.runner button.forSave').click(function(e) {
+ e.preventDefault();
+ var t = $(this);
+ var runner = t.parent().parent().parent();
+ var api_collection_name = $(runner).find('.api_collection_name').val();
+ var api_collection_is_sharable = $(runner).find('.api_collection_is_sharable').val();
+ var api_collection_description = $(runner).find('.api_collection_description').val();
+
+ $('.runner button.forSave').attr("disabled","disabled");
+ $('.runner button.forDelete').attr("disabled","disabled");
+ $.post('save/apicollection', {
+ 'api_collection_name': api_collection_name,
+ 'api_collection_is_sharable': api_collection_is_sharable,
+ 'api_collection_description': api_collection_description,
+ }, function (response) {
+ location.reload();
+ });
+ });
+
+ $('.runner button.forDelete').click(function(e) {
+ e.preventDefault();
+ var t = $(this);
+ var runner = t.parent().parent().parent();
+ var api_collection_id = $(runner).find('.api_collection_id').html();
+ $('.runner button.forSave').attr("disabled","disabled");
+ $('.runner button.forDelete').attr("disabled","disabled");
+ $.post('delete/apicollection', {
+ 'api_collection_id': api_collection_id
+ }, function (response) {
+ location.reload();
+ });
+ });
+});
diff --git a/apimanager/connectormethod/templates/connectormethod/detail.html b/apimanager/connectormethod/templates/connectormethod/detail.html
new file mode 100644
index 0000000..c461dbb
--- /dev/null
+++ b/apimanager/connectormethod/templates/connectormethod/detail.html
@@ -0,0 +1,43 @@
+{% extends 'base.html' %}
+{% load static %}
+{% block content %}
+
+
Add Endpoint to API Collection
+
+
+
Endpoints
+
+
+
+ | Operation Ids |
+
+
+ {% for connector_method in connector_method_endpoint %}
+
+ | {{ connector_method.operation_id }} |
+
+
+ |
+
+ {% endfor %}
+
+
+
+
+{% endblock %}
diff --git a/apimanager/connectormethod/templates/connectormethod/index.html b/apimanager/connectormethod/templates/connectormethod/index.html
new file mode 100644
index 0000000..6a1306f
--- /dev/null
+++ b/apimanager/connectormethod/templates/connectormethod/index.html
@@ -0,0 +1,86 @@
+{% extends 'base.html' %}
+{% load static i18n %}
+{% block page_title %}{{ block.super }} / API Collections{% endblock page_title %}
+
+{% block content %}
+{% trans "Connector Method" %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
+
+
+{% block extrajs %}
+
+{% endblock extrajs %}
diff --git a/apimanager/connectormethod/urls.py b/apimanager/connectormethod/urls.py
new file mode 100644
index 0000000..80e346d
--- /dev/null
+++ b/apimanager/connectormethod/urls.py
@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+"""
+URLs for config app
+"""
+
+from django.conf.urls import url
+
+from connectormethod.views import IndexView, connectormethod_save, DetailView
+
+urlpatterns = [
+ url(r'^$',
+ IndexView.as_view(),
+ name='connectormethod'),
+ url(r'save/connectormethod', connectormethod_save,
+ name='connectormethod-save'),
+ url(r'^my-connectormethod-ids/(?P[\w\@\.\+-]+)$',
+ DetailView.as_view(),
+ name='connector_detail'),
+
+]
+"""url(r'^my-connectormethod-ids/(?P[\w\@\.\+-]+)$',
+ DetailView.as_view(),
+ name='my-api-collection-detail'),
+ url(r'^delete/api-collections/(?P[\w-]+)/api-collection-endpoint/(?P[\w\@\.\+-]+)$',
+ DeleteCollectionEndpointView.as_view(),
+ name='delete-api-collection-endpoint'),"""
\ No newline at end of file
diff --git a/apimanager/connectormethod/views.py b/apimanager/connectormethod/views.py
new file mode 100644
index 0000000..bd3abd7
--- /dev/null
+++ b/apimanager/connectormethod/views.py
@@ -0,0 +1,160 @@
+# -*- coding: utf-8 -*-
+"""
+Views of config app
+"""
+
+import json
+from django.contrib import messages
+from django.contrib.auth.mixins import LoginRequiredMixin
+from django.http import HttpResponseRedirect
+from django.views.generic import FormView
+from obp.api import API, APIError
+from django.urls import reverse, reverse_lazy
+from base.utils import exception_handle, error_once_only
+from .forms import ConnectorMethodForm, ConnectorMethodEndpointForm
+from django.views.decorators.csrf import csrf_exempt
+
+
+class IndexView(LoginRequiredMixin, FormView):
+ """Index view for config"""
+ template_name = "connectormethod/index.html"
+ form_class = ConnectorMethodForm
+ success_url = reverse_lazy('connectormethod-index')
+
+ def get_context_data(self, **kwargs):
+ context = super(IndexView, self).get_context_data(**kwargs)
+ api = API(self.request.session.get('obp'))
+ urlpath = '/management/connector-methods'
+ connectormethod =[]
+ try:
+ response = api.get(urlpath)
+ if 'code' in response and response['code'] >= 400:
+ error_once_only(self.request, response['message'])
+ else:
+ connectormethod=response['connector_methods']
+ except APIError as err:
+ messages.error(self.request, err)
+ #error_once_only(self.request, Exception("OBP-API server is not running or do not response properly. "
+ # "Please check OBP-API server. "
+ # "Details: " + str(err)))
+ except BaseException as err:
+ messages.error(self.request, 'KeyError: {}'.format(err))
+ #error_once_only(self.request, (Exception("Unknown Error. Details:" + str(err))))
+ else:
+ # set the default endpoint there, the first item will be the new endpoint.
+ default_api_endpoint = {
+ "connectormethod": "method_name",
+ "is_sharable": True,
+ "description":"Describe the purpose of the collection"
+ }
+ connectormethod.insert(0,json.dumps(default_api_endpoint))
+
+ context.update({
+ 'connectormethods': connectormethod
+ })
+ return context
+
+class DetailView(LoginRequiredMixin, FormView):
+ """Index view for config"""
+ template_name = "connectormethod/detail.html"
+ form_class = ConnectorMethodEndpointForm
+ success_url = reverse_lazy('connector_detail')
+
+ def form_valid(self, form):
+ """Posts api collection endpoint data to API"""
+ try:
+ data = form.cleaned_data
+ api = API(self.request.session.get('obp'))
+ connectormethod_id = super(DetailView, self).get_context_data()['view'].kwargs['connectormethod_id']
+
+ urlpath = '/my/api-collection-ids/{}/api-collection-endpoints'.format(api_collection_id)
+ payload = {
+ 'operation_id': data['operation_id']
+ }
+ api_collection_endpoint = api.post(urlpath, payload=payload)
+ except APIError as err:
+ messages.error(self.request, err)
+ return super(DetailView, self).form_invalid(form)
+ except:
+ messages.error(self.request, 'Unknown Error')
+ return super(DetailView, self).form_invalid(form)
+ if 'code' in api_collection_endpoint and api_collection_endpoint['code']>=400:
+ messages.error(self.request, api_collection_endpoint['message'])
+ return super(DetailView, self).form_invalid(form)
+ else:
+ msg = 'Operation Id {} has been added.'.format(data['operation_id'])
+ messages.success(self.request, msg)
+ self.success_url = self.request.path
+ return super(DetailView, self).form_valid(form)
+
+ def get_context_data(self, **kwargs):
+ context = super(DetailView, self).get_context_data(**kwargs)
+ connectormethod_id = context['view'].kwargs['connectormethod_id']
+
+ api = API(self.request.session.get('obp'))
+ urlpath = '/my/api-collection-ids/{}/api-collection-endpoints'.format(api_collection_id)
+ api_collection_endpoints =[]
+ try:
+ response = api.get(urlpath)
+ if 'code' in response and response['code'] >= 400:
+ error_once_only(self.request, response['message'])
+ else:
+ api_collection_endpoints=response['api_collection_endpoints']
+ except APIError as err:
+ error_once_only(self.request, Exception("OBP-API server is not running or do not response properly. "
+ "Please check OBP-API server. "
+ "Details: " + str(err)))
+ except BaseException as err:
+ error_once_only(self.request, (Exception("Unknown Error. Details:" + str(err))))
+ else:
+ context.update({
+ 'api_collection_endpoints': api_collection_endpoints,
+ 'api_collection_id': api_collection_id
+ })
+ return context
+
+class DeleteCollectionEndpointView(LoginRequiredMixin, FormView):
+ """View to delete an api collection endpoint"""
+ def post(self, request, *args, **kwargs):
+ """Deletes api collection endpoint from API"""
+ api = API(self.request.session.get('obp'))
+ try:
+ urlpath = '/my/api-collections-ids/{}/api-collection-endpoints/{}'\
+ .format(kwargs['api_collection_id'],kwargs['operation_id'])
+ result = api.delete(urlpath)
+ if result is not None and 'code' in result and result['code']>=400:
+ messages.error(request, result['message'])
+ else:
+ msg = 'Operation Id {} has been deleted.'.format(kwargs['operation_id'])
+ messages.success(request, msg)
+ except APIError as err:
+ messages.error(request, err)
+ except:
+ messages.error(self.request, 'Unknown Error')
+
+ redirect_url = reverse('my-api-collection-detail',kwargs={"api_collection_id":kwargs['api_collection_id']})
+ return HttpResponseRedirect(redirect_url)
+
+@exception_handle
+@csrf_exempt
+def connectormethod_save(request):
+ api = API(request.session.get('obp'))
+ urlpath = '/my/connectormethod'
+ payload = {
+ 'api_collection_name': request.POST.get('api_collection_name').strip(),
+ 'is_sharable': bool(request.POST.get('api_collection_is_sharable')),
+ 'description': request.POST.get('api_collection_description').strip()
+ }
+ result = api.post(urlpath, payload = payload)
+ return result
+
+
+@exception_handle
+@csrf_exempt
+def apicollections_delete(request):
+ api_collection_id = request.POST.get('api_collection_id').strip()
+
+ api = API(request.session.get('obp'))
+ urlpath = '/my/api-collections/{}'.format(api_collection_id)
+ result = api.delete(urlpath)
+ return result
diff --git a/apimanager/users/templates/data_json.json b/apimanager/users/templates/data_json.json
new file mode 100644
index 0000000..f0d05e8
--- /dev/null
+++ b/apimanager/users/templates/data_json.json
@@ -0,0 +1,4351 @@
+[{
+ "id": "atm-1",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Intercam Cabo Marina Outside Terminal",
+ "address": {
+ "line_1": "Blvd. Paseo de la Marina N. 853",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23450.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.879624, "longitude": -109.90864599999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": "",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": ["en"],
+ "services": ["[\"['']\"]"],
+ "accessibility_features": [""],
+ "supported_currencies": ["EUR"],
+ "notes": ["String2"],
+ "location_categories": ["ATBE"],
+ "minimum_withdrawal": "15",
+ "branch_identification": "false",
+ "site_identification": "false",
+ "site_name": "false",
+ "cash_withdrawal_national_fee": "false",
+ "cash_withdrawal_international_fee": "false",
+ "balance_inquiry_fee": "false"
+ },
+ {
+ "id": "atm-10",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Intercam Cabo Mango Deck",
+ "address": {
+ "line_1": "Interior Marina Cabo San Lucas SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23400.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.884654, "longitude": -109.90878700000002 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-100",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Fishermans Deck",
+ "address": {
+ "line_1": "Muelle #8",
+ "line_2": " Marina",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23453.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.882939, "longitude": -109.909007 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-101",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Holiday Inn Arenas",
+ "address": {
+ "line_1": "Blvd. Kukulkan KM. 2.5 LT D1",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.155362, "longitude": -86.799027 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-102",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar John",
+ "address": {
+ "line_1": "Blvd. Marina Esq. Vicente Guerrero Local 1A",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23450.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.881864, "longitude": -109.912319 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-103",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar El Cuale",
+ "address": {
+ "line_1": "Agustín Rodríguez 333",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48300.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.606488, "longitude": -105.235059 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-104",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar El Cid Cozumel",
+ "address": {
+ "line_1": "Carr. a Chankanaab Km 4.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Cozumel",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77600.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.480127, "longitude": -86.972491 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-105",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar El Cid Casa Club",
+ "address": {
+ "line_1": "Ave. Camaron Sabalo s/n",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Mazatlán",
+ "county": "0",
+ "state": " Sinaloa",
+ "postcode": "82110.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.253403, "longitude": -106.45339799999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-106",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar El Cid Granada",
+ "address": {
+ "line_1": "Ave. Camaron Sabalo s/n",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Mazatlán",
+ "county": "0",
+ "state": " Sinaloa",
+ "postcode": "82110.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.252398, "longitude": -106.454679 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-107",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar El Cid Moro",
+ "address": {
+ "line_1": "Avenida Camarón Sábalo 811",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Mazatlán",
+ "county": "0",
+ "state": " Sinaloa",
+ "postcode": "82110.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.253365, "longitude": -106.456985 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-108",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US DollarEl Cid Marina Beach",
+ "address": {
+ "line_1": "Avenida Camarón Sábalo 1705",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Mazatlán",
+ "county": "0",
+ "state": " Sinaloa",
+ "postcode": "82110.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.268728, "longitude": -106.463218 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-109",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Plaza Santa Cecilia",
+ "address": {
+ "line_1": "Primera s/n",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Tijuana",
+ "county": "0",
+ "state": " Baja California",
+ "postcode": "22000.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 32.536251, "longitude": -117.037603 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-11",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Intercam E. Alley",
+ "address": {
+ "line_1": "Boulevard Kukulcan Km 9 SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.133584, "longitude": -86.746822 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-110",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Aeropuerto Puerto Vallarta",
+ "address": {
+ "line_1": "Carret a Tepic Km 7.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48311.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.677162, "longitude": -105.251116 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-111",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Hotel Solaz",
+ "address": {
+ "line_1": "Corredor Turístico CSL – SJC KM. 18.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23405.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.973685999999997, "longitude": -109.782008 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-112",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Solaz",
+ "address": {
+ "line_1": "Corredor Turístico CSL – SJC KM. 18.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23405.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.973685999999997, "longitude": -109.782008 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-113",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Occidental Cozumel",
+ "address": {
+ "line_1": "Carr.Costera Sur KM 16.6",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Cozumel",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77600.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.376766, "longitude": -87.020753 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-114",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Aeropuerto San José del Cabo",
+ "address": {
+ "line_1": "Carretera Transpeninsular s/n KM. 43.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23420.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.1457, "longitude": -109.71838500000001 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-115",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Selina",
+ "address": {
+ "line_1": "Blvd. Kukulcan km 8.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.134632, "longitude": -86.75001400000001 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-116",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Haven Riviera Cancún",
+ "address": {
+ "line_1": "Carr. Cancun Playa del Carmen Km 335.",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77569.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.968751, "longitude": -86.831414 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-117",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Parking Rosarito",
+ "address": {
+ "line_1": "Blvd. Benito Juárez 62",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Playas de Rosarito",
+ "county": "0",
+ "state": " Baja California",
+ "postcode": "22710.0",
+ "country_code": "CP"
+ },
+ "location": {
+ "latitude": 32.338409000000006,
+ "longitude": -117.05503700000001
+ },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-118",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Club Sola",
+ "address": {
+ "line_1": "Corredor Turístico CSL 18.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23405.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.974432999999998, "longitude": -109.781038 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-119",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Sapphire Cancún",
+ "address": {
+ "line_1": "Malecon 1",
+ "line_2": " ",
+ "line_3": " ",
+ "city": "['Puerto Vallarta']",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48399.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.597869, "longitude": -105.239158 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-12",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Pto. Morelos I",
+ "address": {
+ "line_1": "José María MorelosSN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "23400.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.848062, "longitude": -86.87574599999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-120",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Marriott Cancún",
+ "address": {
+ "line_1": "Blvd. Kukulcan – Retorno Chac",
+ "line_2": " Mza 53",
+ "line_3": " Lote 41, ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.086269, "longitude": -86.771394 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-121",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Hotel Marriot Cancún",
+ "address": {
+ "line_1": "Blvd. Kukulcan – Retorno Chac",
+ "line_2": " Mza 53",
+ "line_3": " Lote 41, ",
+ "city": " Lote 41",
+ "county": "0",
+ "state": " c.p. 77500 Benito Juárez Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.086269, "longitude": -86.771394 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-122",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel JW Marriott Cancún",
+ "address": {
+ "line_1": "Blvd. Kukulcan Km 14.5",
+ "line_2": " Lote 40 A",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.088258, "longitude": -86.770637 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-123",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Hotel JW Marriot Cancún",
+ "address": {
+ "line_1": "Blvd. Kukulcan Km 14.5",
+ "line_2": " Lote 40 A",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.088258, "longitude": -86.770637 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-124",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Artesanías API",
+ "address": {
+ "line_1": "Francisco Medina Ascencio 2752 U21",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48333.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.652545, "longitude": -105.24176299999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-125",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Artesanías API",
+ "address": {
+ "line_1": "Francisco Medina Ascencio 2752 U21",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48333.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.652545, "longitude": -105.24176299999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-126",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Eclipse",
+ "address": {
+ "line_1": "1ra Av. Norte",
+ "line_2": "Mz. 27",
+ "line_3": " Lt. 10., ",
+ "city": " c.p. Solidaridad",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77710.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.627579, "longitude": -87.07095100000001 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-127",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Presidente Intercontinental",
+ "address": {
+ "line_1": "Blvd. Kukulkan KM. 7.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.135451999999997, "longitude": -86.754745 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-128",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Esperanza Cabo",
+ "address": {
+ "line_1": "Carr. Transpeninsular KM 7 SN P.B.",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23455.0",
+ "country_code": "CP"
+ },
+ "location": {
+ "latitude": 22.901441000000002,
+ "longitude": -109.85253200000001
+ },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-129",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Chileno Bar Resort",
+ "address": {
+ "line_1": "Carr. Transpeninsular KM 14.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23455.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.947986, "longitude": -109.808631 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-13",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Intercam Bus Station",
+ "address": {
+ "line_1": "Terminal Turistica ADO",
+ "line_2": " Calle Quinta Avenida",
+ "line_3": " ",
+ "city": " Solidaridad",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77710.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.622787, "longitude": -87.07504200000001 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-130",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Zadún Ritz Carlton",
+ "address": {
+ "line_1": "Blvd. Mar de Cortes SN.",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23403.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.069279, "longitude": -109.647768 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-131",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Hotel Zadún Ritz Carlton",
+ "address": {
+ "line_1": "Blvd. Mar de Cortes SN.",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23403.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.069279, "longitude": -109.647768 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-132",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco CC Rock Mal Guadalajara",
+ "address": {
+ "line_1": "Av. Ignacio L. Vallarta 5145",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Zapopan",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "45040.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.676476, "longitude": -103.413386 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-133",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Occidental Cozumel",
+ "address": {
+ "line_1": "Carr.Costera Sur KM 16.6",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Cozumel",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77600.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.376766, "longitude": -87.020753 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-134",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Mejicanísimo Artesanías",
+ "address": {
+ "line_1": "Zaragoza # 4 y Mijares",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23400.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.061927999999998, "longitude": -109.694672 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-135",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Mejicanísimo Artesanías",
+ "address": {
+ "line_1": "Zaragoza # 4 y Mijares",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23400.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.061927999999998, "longitude": -109.694672 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-136",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Malecón 21 Mahahual",
+ "address": {
+ "line_1": "Av. Mahahual",
+ "line_2": " Mz 21",
+ "line_3": " Lt 03, ",
+ "city": " Othón P. Blanco",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77976.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 18.713558, "longitude": -87.70984399999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-137",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Malecón 21 Mahahual",
+ "address": {
+ "line_1": "Av. Mahahual",
+ "line_2": " Mz 21",
+ "line_3": " Lt 03, ",
+ "city": " Othón P. Blanco",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77976.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 18.713558, "longitude": -87.70984399999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-138",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Hotel Andaz Mayacoba",
+ "address": {
+ "line_1": "Carretera Federal Cancún Tulum Km 298.",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Solidaridad",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77710.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.687143, "longitude": -87.020363 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-139",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Mantamar Vallarta",
+ "address": {
+ "line_1": "Malecon 169",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48380.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.596487, "longitude": -105.23961899999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-14",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Intercam 2nd Street",
+ "address": {
+ "line_1": "2nd Street and Rafael Melgar SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Cozumel",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77600.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.511955, "longitude": -86.948929 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-140",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Go Mart Colosio",
+ "address": {
+ "line_1": "Av. Luis Donaldo Colosio – Carretera Cancún-Tulum",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Solidaridad",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77712.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.648689, "longitude": -87.068024 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-141",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Go Mart Moon Palace",
+ "address": {
+ "line_1": "Carretera Cancún – Tulum Km 22",
+ "line_2": " Mz 13",
+ "line_3": " Lt 03, ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77506.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.978417999999998, "longitude": -86.860759 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-142",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco The Store ZH Tulum",
+ "address": {
+ "line_1": "Carretera Tulum-Boca Paila km 7",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Tulum",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77780.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.161602, "longitude": -87.454803 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-143",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Go Mart Pescadores",
+ "address": {
+ "line_1": "Blvd. Kukulkan Km 2.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.153682999999997, "longitude": -86.797913 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-144",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Go Mart Kinbee",
+ "address": {
+ "line_1": "Blvd. Kukulcan Punta Nizuc - Cancún 335",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.058432, "longitude": -86.782112 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-145",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Go Mart Abastos",
+ "address": {
+ "line_1": "Carr. Cancún-Tulum",
+ "line_2": " Mz6",
+ "line_3": " Lt 6-1, ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77560.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.042893, "longitude": -86.850131 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-146",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Spa Mita & Boutique",
+ "address": {
+ "line_1": "Av. El Anclote",
+ "line_2": " Mz 10.",
+ "line_3": " ",
+ "city": " Bahía de Banderas",
+ "county": "0",
+ "state": " Nayarit",
+ "postcode": "63734.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.771719, "longitude": -105.518933 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-147",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Restaurante El Agasajo",
+ "address": {
+ "line_1": "Blvd. Paseo de la Marina S/N",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23450.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.882629, "longitude": -109.91228899999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-148",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Tequila House",
+ "address": {
+ "line_1": "Blvd. Paseo de la Marina S/N",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23450.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.882757, "longitude": -109.912369 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-149",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Rockstone",
+ "address": {
+ "line_1": "Blvd. Paseo de la Marina Esq Lázaro Cárdenas",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23450.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.886238, "longitude": -109.911925 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-15",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Intercam Oxxo",
+ "address": {
+ "line_1": "Boulevard Kukulcan Km 9 SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.135781, "longitude": -86.74727299999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-150",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Caf‚ La Plaza Sayulita",
+ "address": {
+ "line_1": "MARLINNo.20",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Bahía De Banderas",
+ "county": "0",
+ "state": " Nayarit",
+ "postcode": "63734.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.869177, "longitude": -105.44108500000002 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-151",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Caf‚ La Plaza Sayulita",
+ "address": {
+ "line_1": "MARLINNo.20",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Bahía De Banderas",
+ "county": "0",
+ "state": " Nayarit",
+ "postcode": "63734.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.869177, "longitude": -105.44108500000002 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-152",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Marival Residences",
+ "address": {
+ "line_1": "PASEO DE LOS COCOTEROSSN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Bahía De Banderas",
+ "county": "0",
+ "state": " Nayarit",
+ "postcode": "63735.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.717479, "longitude": -105.304464 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-153",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Charly s Sailing Marina",
+ "address": {
+ "line_1": "COND. CLUB DE TENISSN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48335.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.663608, "longitude": -105.252579 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-154",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Uakusi",
+ "address": {
+ "line_1": "PELICANOS Y REVOLUCIONNo.50",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Bahía De Banderas",
+ "county": "0",
+ "state": " Nayarit",
+ "postcode": "63734.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.86928, "longitude": -105.438925 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-155",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Yoyomo s Sport Bar",
+ "address": {
+ "line_1": "AV. MEXICO 17 No.17",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Bahía De Banderas",
+ "county": "0",
+ "state": " Nayarit",
+ "postcode": "63732.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.757338, "longitude": -105.341454 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-156",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Farmacia 3",
+ "address": {
+ "line_1": "BASILIO BADILLONo.310",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48380.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.602794, "longitude": -105.234118 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-157",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Plaza Malecón",
+ "address": {
+ "line_1": "PASEO DIAS ORDAZNo.874",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48300.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.613873, "longitude": -105.23301599999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-158",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Canto del Mar",
+ "address": {
+ "line_1": "LAZARO CARDENASNo.365",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48380.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.603094, "longitude": -105.23819499999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-159",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Rolling Stone",
+ "address": {
+ "line_1": "PASEO DIAZ ORDAS 3 No.802",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48300.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.613296, "longitude": -105.233325 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-16",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Intercam Marsol",
+ "address": {
+ "line_1": "FRANCISCA RODRIGUEZNo.103",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48380.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.600682, "longitude": -105.23852600000001 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-160",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Breakfast",
+ "address": {
+ "line_1": "MALECON 1 SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Bahía De Banderas",
+ "county": "0",
+ "state": " Nayarit",
+ "postcode": "63734.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.870206, "longitude": -105.441077 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-161",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Farmacia 2",
+ "address": {
+ "line_1": "IGNACIO L. VALLARTANo.189",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Vallarta",
+ "county": "0",
+ "state": " Jalisco",
+ "postcode": "48380.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.604277, "longitude": -105.23618799999998 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-162",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Akumal",
+ "address": {
+ "line_1": "Carretera federal Puerto Juarez Tulum Km. 104 SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Tulum",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77780.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.397403, "longitude": -87.314903 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-163",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Playacar",
+ "address": {
+ "line_1": "Paseo Xaman-haNo.19",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Solidaridad",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77710.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.608947, "longitude": -87.091125 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-164",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Ritz Carlton",
+ "address": {
+ "line_1": "Retorno del Rey SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.093146, "longitude": -86.767822 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-165",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Ritz Carlton",
+ "address": {
+ "line_1": "Retorno del Rey SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.093146, "longitude": -86.767822 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-166",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Barcelo Tucancun",
+ "address": {
+ "line_1": "Boulevard Kukulcan Km. 13.5No.24",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.101364, "longitude": -86.76468100000001 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-167",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Sandos Playacar",
+ "address": {
+ "line_1": "Montes Urales Manzana 5 Lote 2 No. 278",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Solidaridad",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77710.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.651805, "longitude": -87.070902 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-168",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Azul Five",
+ "address": {
+ "line_1": "PREDIO EL LIMONAR FRACION 2 XCALACOCO SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Solidaridad",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77727.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.6648086, "longitude": -87.0347627 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-169",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Costco Los Cabos",
+ "address": {
+ "line_1": "Carretera Transpeninsular km 4.5 SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23400.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.903536, "longitude": -109.88229399999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-17",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Intercam Puerto Maya",
+ "address": {
+ "line_1": "CARRETERA COSTERA SUR SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Cozumel",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77600.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.476623, "longitude": -86.973112 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-170",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Playa Bonita",
+ "address": {
+ "line_1": "Calle Paseo Balboa 100",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Peñasco",
+ "county": "0",
+ "state": " Sonora",
+ "postcode": "83550.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 31.317807600000002, "longitude": -113.5594582 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-171",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Sonoran Sea",
+ "address": {
+ "line_1": "Calle Camino a la cholla km 3.5SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Puerto Peñasco",
+ "county": "0",
+ "state": " Sonora",
+ "postcode": "83550.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 31.323808000000003, "longitude": -113.574317 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-172",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Sani Dental Algodones",
+ "address": {
+ "line_1": "Calle Alamo 289",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Mexicali",
+ "county": "0",
+ "state": " Baja California",
+ "postcode": "21970.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 32.715463, "longitude": -114.72910300000001 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-173",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Neveria Thirfty",
+ "address": {
+ "line_1": "1er de Junio #10",
+ "line_2": " esquina Zaragoza",
+ "line_3": " ",
+ "city": " Puerto Peñasco",
+ "county": "0",
+ "state": " Sonora",
+ "postcode": "83550.0",
+ "country_code": "CP"
+ },
+ "location": {
+ "latitude": 31.303016999999997,
+ "longitude": -113.55120600000001
+ },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-174",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Barriles",
+ "address": {
+ "line_1": "Calle 20 de Noviembre 113",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " La Paz",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23330.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.686323, "longitude": -109.69858799999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-175",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Playa Grande",
+ "address": {
+ "line_1": "Av. Solmar No. 1",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23450.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.87655, "longitude": -109.90845 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-176",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Solmar",
+ "address": {
+ "line_1": "Av. Solmar No. 1",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23450.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.8752263, "longitude": -109.90086480000001 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-177",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Barriles",
+ "address": {
+ "line_1": "Calle 20 de Noviembre 113",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " La Paz",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23330.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 23.686323, "longitude": -109.69858799999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-178",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Rancho San Lucas",
+ "address": {
+ "line_1": "Predio Laguna #1",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Los Cabos",
+ "county": "0",
+ "state": " Baja California Sur",
+ "postcode": "23473.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 22.9061125, "longitude": -110.0154953 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-179",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Hotel Oleo",
+ "address": {
+ "line_1": "Blvd. Kukulcan Km 19.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.0456899, "longitude": -86.7914623 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-18",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Royal Sands 1",
+ "address": {
+ "line_1": "Blvd. Kukulcan Km 13.5",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Benito Juárez",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77500.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.098273000000002, "longitude": -86.765695 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-180",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Huaya Camp Tulum",
+ "address": {
+ "line_1": "Av. Tulum",
+ "line_2": " Mza. 32",
+ "line_3": " Lt. 8, ",
+ "city": " Tulum",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77760.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.2084696, "longitude": -87.47156319999999 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-181",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar El Gourmet Tulum",
+ "address": {
+ "line_1": "Calle Centauro Sur",
+ "line_2": " Mz. 15",
+ "line_3": " Lt. 14, ",
+ "city": " Tulum",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77760.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.211176000000002, "longitude": -87.459049 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-182",
+ "bank_id": "OBP_Reena",
+ "name": "ATM US Dollar Gran Palas Tulum",
+ "address": {
+ "line_1": "Carr. Tulum Boca Paila Km 7",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Tulum",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77780.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.153714, "longitude": -87.457661 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-183",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Public Market",
+ "address": {
+ "line_1": "Av. CTM",
+ "line_2": " Mz 168",
+ "line_3": " Lt 005, ",
+ "city": " Solidaridad",
+ "county": "0",
+ "state": " Quintana Roo",
+ "postcode": "77723.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.661215, "longitude": -87.09739300000001 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-184",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Gardens Vallarta",
+ "address": {
+ "line_1": "Carr. a Punta de Mita Km 1.2",
+ "line_2": " #54",
+ "line_3": " ",
+ "city": " Bahía de Banderas",
+ "county": "0",
+ "state": " Nayarit",
+ "postcode": "63734.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 20.756104999999998, "longitude": -105.37636 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-185",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Residence Inn By Marriot Mérida",
+ "address": {
+ "line_1": "Calle 3-A No.272 x 20 A",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Mérida",
+ "county": "0",
+ "state": " Yucatán",
+ "postcode": "97204.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 21.037276000000002, "longitude": -89.636129 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-186",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Zurich",
+ "address": {
+ "line_1": "LAGO ZURICH SN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Miguel Hidalgo",
+ "county": "0",
+ "state": " Ciudad de México",
+ "postcode": "11529.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 19.442350899999997, "longitude": -99.2031198 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-187",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Pedregal",
+ "address": {
+ "line_1": "Ave. Ciudad universitariaSN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Álvaro Obregón",
+ "county": "0",
+ "state": " Ciudad de México",
+ "postcode": "19000.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 19.332983, "longitude": -99.19963800000001 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-188",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Aeropuerto 4 T1 Bath",
+ "address": {
+ "line_1": "Avenida Capitán Carlos LeónSN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Venustiano Carranza",
+ "county": "0",
+ "state": " Ciudad de México",
+ "postcode": "15520.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 19.436379000000002, "longitude": -99.071923 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-189",
+ "bank_id": "OBP_Reena",
+ "name": "Cajero Intercam Banco Aeropuerto 6 Downstairs T1",
+ "address": {
+ "line_1": "Avenida Capitán Carlos LeónSN",
+ "line_2": " ",
+ "line_3": " ",
+ "city": " Venustiano Carranza",
+ "county": "0",
+ "state": " Ciudad de México",
+ "postcode": "15520.0",
+ "country_code": "CP"
+ },
+ "location": { "latitude": 19.436379000000002, "longitude": -99.071923 },
+ "meta": {
+ "license": { "id": "ODbL-1.0", "name": "Open Database License" }
+ },
+ "monday": { "opening_time": " ", "closing_time": " " },
+ "tuesday": { "opening_time": " ", "closing_time": " " },
+ "wednesday": { "opening_time": " ", "closing_time": " " },
+ "thursday": { "opening_time": " ", "closing_time": " " },
+ "friday": { "opening_time": " ", "closing_time": " " },
+ "saturday": { "opening_time": " ", "closing_time": " " },
+ "sunday": { "opening_time": " ", "closing_time": " " },
+ "is_accessible": "true",
+ "located_at": " ",
+ "more_info": "S/N",
+ "has_deposit_capability": "true",
+ "supported_languages": [""],
+ "services": [""],
+ "accessibility_features": [""],
+ "supported_currencies": [""],
+ "notes": ["(null)"],
+ "location_categories": [""],
+ "minimum_withdrawal": "5",
+ "branch_identification": " ",
+ "site_identification": " ",
+ "site_name": " ",
+ "cash_withdrawal_national_fee": " ",
+ "cash_withdrawal_international_fee": " ",
+ "balance_inquiry_fee": " "
+ },
+ {
+ "id": "atm-id-582",
+ "bank_id": "THE_DEFAULT_BANK_ID",
+ "name": "Piano",
+ "address": {
+ "line_1": "No 1 the Road",
+ "line_2": "The Place",
+ "line_3": "The Hill",
+ "city": "Berlin",
+ "county": "String",
+ "state": "Brandenburg",
+ "postcode": "13359",
+ "country_code": "DE"
+ },
+ "location": { "latitude": 37.0, "longitude": 10.0 },
+ "meta": { "license": { "id": "PDDL", "name": "10" } },
+ "monday": { "opening_time": "10:00", "closing_time": "18:00" },
+ "tuesday": { "opening_time": "10:00", "closing_time": "18:00" },
+ "wednesday": { "opening_time": "10:00", "closing_time": "18:00" },
+ "thursday": { "opening_time": "10:00", "closing_time": "18:00" },
+ "friday": { "opening_time": "10:00", "closing_time": "18:00" },
+ "saturday": { "opening_time": "10:00", "closing_time": "18:00" },
+ "sunday": { "opening_time": "10:00", "closing_time": "18:00" },
+ "is_accessible": "true",
+ "located_at": "test",
+ "more_info": "Test",
+ "has_deposit_capability": "true",
+ "supported_languages": ["en"],
+ "services": ["Test"],
+ "accessibility_features": [""],
+ "supported_currencies": ["EUR"],
+ "notes": ["String1"],
+ "location_categories": ["ATBI"],
+ "minimum_withdrawal": "false",
+ "branch_identification": "Test",
+ "site_identification": "false",
+ "site_name": "Tesobe",
+ "cash_withdrawal_national_fee": "Test",
+ "cash_withdrawal_international_fee": "Test",
+ "balance_inquiry_fee": "Test"
+ }
+]
\ No newline at end of file
diff --git a/apimanager/users/views.py b/apimanager/users/views.py
index 46bdb2a..c445624 100644
--- a/apimanager/users/views.py
+++ b/apimanager/users/views.py
@@ -247,7 +247,9 @@ class MyDetailView(LoginRequiredMixin, FormView):
messages.error(self.request, err)
except Exception as err:
messages.error(self.request, 'Unknown Error')
-
+ #print(user,"This is ")
+ #entitlements=user["entitlements"]["list"]
+ user["entitlements"]["list"] = sorted(user["entitlements"]["list"], key=lambda d: d['role_name'])
context.update({
'apiuser': user, # 'user' is logged-in user in template context
})
@@ -416,25 +418,23 @@ class ExportCsvView(LoginRequiredMixin, View):
username = self.request.GET.get('username')
lockedstatus = self.request.GET.get('locked_status')
if lockedstatus is None: lockedstatus = "active"
-
if email:
urlpath = '/users/email/{}/terminator'.format(email)
elif username:
urlpath = '/users/username/{}'.format(username)
else:
urlpath = '/users?limit={}&offset={}&locked_status={}'.format(limit, offset, lockedstatus)
-
try:
response = api.get(urlpath)
if 'code' in response and response['code'] >= 400:
messages.error(self.request, response['message'])
else:
users = response['users']
+
except APIError as err:
messages.error(self.request, err)
except:
messages.error(self.request, 'Unknown Error')
-
response = HttpResponse(content_type = 'text/csv')
response['Content-Disposition'] = 'attachment;filename= Users'+ str(datetime.datetime.now())+'.csv'
writer = csv.writer(response)
diff --git a/apimanager/webui/templates/webui/index.html b/apimanager/webui/templates/webui/index.html
index afba4dd..5f0723e 100644
--- a/apimanager/webui/templates/webui/index.html
+++ b/apimanager/webui/templates/webui/index.html
@@ -29,7 +29,7 @@
@@ -39,8 +39,7 @@
diff --git a/apimanager/webui/views.py b/apimanager/webui/views.py
index 2f4d1f6..1d64c35 100644
--- a/apimanager/webui/views.py
+++ b/apimanager/webui/views.py
@@ -65,7 +65,8 @@ class IndexView(LoginRequiredMixin, FormView):
def webui_save(request):
web_ui_props_name = request.POST.get('web_ui_props_name')
web_ui_props_value = request.POST.get('web_ui_props_value')
-
+ print("request.POST.get", request.GET)
+ #print("web_ui_props_value", web_ui_props_value)
payload = {
'name': web_ui_props_name,
'value': web_ui_props_value