diff --git a/open-zaak/.gitignore b/open-zaak/.gitignore new file mode 100644 index 000000000..3f73c411f --- /dev/null +++ b/open-zaak/.gitignore @@ -0,0 +1,5 @@ +.idea +.pyc +__pycache__/ +.vscode/ +.DS_Store diff --git a/open-zaak/Jenkinsfile b/open-zaak/Jenkinsfile new file mode 100644 index 000000000..b6d0d3124 --- /dev/null +++ b/open-zaak/Jenkinsfile @@ -0,0 +1,110 @@ +#!groovy + +def tag_image_as(docker_image_url, tag) { + // Tag image, push to repo, remove local tagged image + script { + docker.image("${docker_image_url}:${env.COMMIT_HASH}").push(tag) + sh "docker rmi ${docker_image_url}:${tag} || true" + } +} + +def deploy(app_name, environment) { + // Deploys the app to the given environment + build job: 'Subtask_Openstack_Playbook', + parameters: [ + [$class: 'StringParameterValue', name: 'INVENTORY', value: environment], + [$class: 'StringParameterValue', name: 'PLAYBOOK', value: 'deploy.yml'], + [$class: 'StringParameterValue', name: 'PLAYBOOKPARAMS', value: "-e cmdb_id=app_${app_name}"], + ] +} + +def tag_and_deploy(docker_image_url, app_name, environment) { + // Tags the Docker with the environment, en deploys to the same environment + script { + tag_image_as(docker_image_url, environment) + deploy(app_name, environment) + } +} + +def build_image(docker_image_url, source) { + // Builds the image given the source, and pushes it to the Amsterdam Docker registry + script { + def image = docker.build("${docker_image_url}:${env.COMMIT_HASH}", + "--no-cache " + + "--shm-size 1G " + + "--build-arg COMMIT_HASH=${env.COMMIT_HASH} " + + "--build-arg BRANCH_NAME=${env.BRANCH_NAME} " + + " ${source}") + image.push() + tag_image_as(docker_image_url, "latest") + } +} + +def remove_image(docker_image_url) { + // delete original image built on the build server + script { + sh "docker rmi ${docker_image_url}:${env.COMMIT_HASH} || true" + } +} + +pipeline { + agent any + environment { + PRODUCTION = "production" + ACCEPTANCE = "acceptance" + + OPEN_ZAAK_IMAGE_URL = "${DOCKER_REGISTRY_NO_PROTOCOL}/open-zaak" + OPEN_ZAAK_SOURCE = "./open-zaak" + OPEN_ZAAK_NAME = "open-zaak" + + OPEN_NOTIFICATIES_IMAGE_URL = "${DOCKER_REGISTRY_NO_PROTOCOL}/open-notificaties" + OPEN_NOTIFICATIES_SOURCE = "./open-notificaties" + OPEN_NOTIFICATIES_NAME = "open-notificaties" + + } + + stages { + stage("Checkout") { + steps { + checkout scm + script { + env.COMMIT_HASH = sh(returnStdout: true, script: "git log -n 1 --pretty=format:'%h'").trim() + } + } + } + + stage("Build docker images") { + steps { + build_image(env.OPEN_ZAAK_IMAGE_URL, env.OPEN_ZAAK_SOURCE) + build_image(env.OPEN_NOTIFICATIES_IMAGE_URL, env.OPEN_NOTIFICATIES_SOURCE) + } + } + + stage("Push and deploy acceptance images") { + when { + not { buildingTag() } + branch 'master' + } + steps { + tag_and_deploy(env.OPEN_ZAAK_IMAGE_URL, env.OPEN_ZAAK_NAME, env.ACCEPTANCE) + tag_and_deploy(env.OPEN_NOTIFICATIES_IMAGE_URL, env.OPEN_NOTIFICATIES_NAME, env.ACCEPTANCE) + } + } + + stage("Push and deploy production images") { + // Only deploy to production if there is a tag + when { buildingTag() } + steps { + tag_and_deploy(env.OPEN_ZAAK_IMAGE_URL, env.OPEN_ZAAK_NAME, env.PRODUCTION) + tag_and_deploy(env.OPEN_NOTIFICATIES_IMAGE_URL, env.OPEN_NOTIFICATIES_NAME, env.PRODUCTION) + } + } + } + + post { + always { + remove_image(env.OPEN_ZAAK_IMAGE_URL) + remove_image(env.OPEN_NOTIFICATIES_IMAGE_URL) + } + } +} diff --git a/open-zaak/config/cmis_mapper.json b/open-zaak/config/cmis_mapper.json new file mode 100644 index 000000000..b8a999976 --- /dev/null +++ b/open-zaak/config/cmis_mapper.json @@ -0,0 +1,62 @@ +{ + "ZAAKTYPE_MAP": { + "object_type_id": "cmis:objectTypeId", + "url": "drc:zaaktype__url", + "identificatie": "drc:zaaktype__identificatie" + }, + "ZAAK_MAP": { + "object_type_id": "cmis:objectTypeId", + "url": "drc:zaak__url", + "identificatie": "drc:zaak__identificatie", + "zaaktype": "drc:zaak__zaaktypeurl", + "bronorganisatie": "drc:zaak__bronorganisatie" + }, + "DOCUMENT_MAP": { + "object_type_id": "cmis:objectTypeId", + "uuid": "drc:document__uuid", + "bronorganisatie": "drc:document__bronorganisatie", + "identificatie": "drc:document__identificatie", + "titel": "drc:document__titel", + "bestandsnaam": "drc:document__bestandsnaam", + "formaat": "drc:document__formaat", + "bestandsomvang": "cmis:contentStreamLength", + "versie": "drc:document__versie", + "beschrijving": "drc:document__beschrijving", + "verzenddatum": "drc:document__verzenddatum", + "taal": "drc:document__taal", + "indicatie_gebruiksrecht": "drc:document__indicatiegebruiksrecht", + "verwijderd": "drc:document__verwijderd", + "status": "drc:document__status", + "ontvangstdatum": "drc:document__ontvangstdatum", + "informatieobjecttype": "drc:document__informatieobjecttype", + "auteur": "drc:document__auteur", + "vertrouwelijkheidaanduiding": "drc:document__vertrouwelijkaanduiding", + "begin_registratie": "drc:document__begin_registratie", + "integriteit_algoritme": "drc:document__integriteitalgoritme", + "integriteit_datum": "drc:document__integriteitdatum", + "integriteit_waarde": "drc:document__integriteitwaarde", + "ondertekening_soort": "drc:document__ondertekeningsoort", + "ondertekening_datum": "drc:document__ondertekeningdatum", + "link": "drc:document__link", + "creatiedatum": "drc:document__creatiedatum", + "lock": "drc:document__lock", + "kopie_van": "drc:kopie_van" + }, + "OBJECTINFORMATIEOBJECT_MAP": { + "object_type_id": "cmis:objectTypeId", + "uuid": "drc:oio__uuid", + "object_type": "drc:oio__object_type", + "besluit": "drc:oio__besluit", + "zaak": "drc:oio__zaak", + "informatieobject": "drc:oio__informatieobject" + }, + "GEBRUIKSRECHTEN_MAP": { + "object_type_id": "cmis:objectTypeId", + "uuid": "drc:gebruiksrechten__uuid", + "einddatum": "drc:gebruiksrechten__einddatum", + "omschrijving_voorwaarden": "drc:gebruiksrechten__omschrijving_voorwaarden", + "informatieobject": "drc:gebruiksrechten__informatieobject", + "startdatum": "drc:gebruiksrechten__startdatum", + "kopie_van": "drc:gebruiksrechten__kopie_van" + } +} diff --git a/open-zaak/docker-compose.yml b/open-zaak/docker-compose.yml new file mode 100644 index 000000000..20b9673e2 --- /dev/null +++ b/open-zaak/docker-compose.yml @@ -0,0 +1,113 @@ +version: "3.5" + +services: + db: + image: mdillon/postgis + ports: + - 5432:5432 + environment: + - POSTGRES_HOST_AUTH_METHOD=trust + - POSTGRES_DB=openzaak + - POSTGRES_USER=openzaak + - POSTGRES_PASSWORD=openzaak + networks: + - open_zaken_network + volumes: + - ./docker/postgres.entrypoint-initdb.d:/docker-entrypoint-initdb.d:ro + - openzaak-data:/var/lib/postgresql/data + + redis: + image: redis + ports: + - 6379:6379 + networks: + - open_zaken_network + - zaken_network + + rabbitmq: + image: rabbitmq:3.7-alpine + environment: + - RABBITMQ_DEFAULT_USER=guest + - RABBITMQ_DEFAULT_PASS=guest + networks: + - open_zaken_network + + openzaak_local: + image: openzaak/open-zaak + networks: + - open_zaken_network + - zaken_network + ports: + - 80:8000 + env_file: + - ./open-zaak/.env + depends_on: + - db + - redis + volumes: + - ./config:/app/config + - ./open-zaak/db:/app/src/db + + # + # OPEN NOTIFICATIES + # + + open_notificaties_database: + image: mdillon/postgis + ports: + - 5433:5432 + env_file: + - open-notificaties/.env + environment: + - POSTGRES_HOST_AUTH_METHOD=trust + - POSTGRES_DB=open_notificaties + - POSTGRES_USER=openzaak + - POSTGRES_PASSWORD=openzaak + networks: + - open_zaken_network + volumes: + - open-notificaties-data:/var/lib/postgresql/data + + open_notificaties_celery: + image: openzaak/open-notificaties + command: /celery_worker.sh + env_file: + - open-notificaties/.env + environment: + - DJANGO_SETTINGS_MODULE=nrc.conf.docker + - CACHE_DEFAULT=redis:6379/0 + - CACHE_AXES=redis:6379/1 + - RABBITMQ_HOST=rabbitmq + - PUBLISH_BROKER_URL=amqp://guest:guest@rabbitmq:5672// + - CELERY_BROKER_URL=amqp://guest:guest@rabbitmq:5672// + - CELERY_RESULT_BACKEND=amqp://guest:guest@rabbitmq:5672// + - CELERY_LOGLEVEL=DEBUG + - SUBPATH=${SUBPATH:-/} + networks: + - open_zaken_network + depends_on: + - open_notificaties_database + - redis + - rabbitmq + + open_notificaties: + image: openzaak/open-notificaties + ports: + - 8888:8000 + env_file: + - open-notificaties/.env + networks: + - open_zaken_network + depends_on: + - open_notificaties_database + - redis + +networks: + zaken_network: + external: true + open_zaken_network: + external: true + +volumes: + openzaak-data: + open-notificaties-data: diff --git a/open-zaak/docker/alfresco/alfresco-global.properties b/open-zaak/docker/alfresco/alfresco-global.properties new file mode 100644 index 000000000..0db666095 --- /dev/null +++ b/open-zaak/docker/alfresco/alfresco-global.properties @@ -0,0 +1,52 @@ +# Required to isolate logs folder +dir.root=/usr/local/tomcat/alf_data + +# Copied from https://github.com/Alfresco/acs-community-packaging/blob/master/docker-alfresco/Dockerfile +alfresco-pdf-renderer.root=/usr/bin/ +alfresco-pdf-renderer.exe=${alfresco-pdf-renderer.root}/alfresco-pdf-renderer + +# Disabled below +# jodconverter.enabled=true +# jodconverter.portNumbers=8100 +# jodconverter.officeHome=/opt/libreoffice5.4/ + +img.root=/usr/lib64/ImageMagick-7.0.7 +img.coders=/usr/lib64/ImageMagick-7.0.7/modules-Q16HDRI/coders +img.config=/usr/lib64/ImageMagick-7.0.7/config-Q16HDRI +img.exe=/usr/bin/convert + +# Smart Folders Config Properties +smart.folders.enabled=true + +# Trashcan cleaner +trashcan-cleaner.cron=0 30 * * * ? +trashcan-cleaner.keepPeriod=P1D + +# Required if you are using CMIS Client +alfresco.restApi.basicAuthScheme=true + +# Disable some stuff that is not needed. +audit.enabled=true +audit.alfresco-access.enabled=true +audit.cmischangelog.enabled=true +replication.enabled=false +ftp.enabled=false +nfs.enabled=false +cifs.enabled=false +lucene.indexer.cacheEnabled=false +lucene.indexer.contentIndexingEnabled=false +sync.mode=OFF +syncService.mode=OFF +activities.feed.notifier.enabled=false +activities.feed.max.ageMins=60 +ooo.enabled=false +jodconverter.enabled=false +db.schema.update=true +index.recovery.mode=AUTO +system.thumbnail.generate=false +index.subsystem.name=solr4 +trashcan-cleaner.deleteBatchCount=1000 +system.content.eagerOrphanCleanup=true +org.alfresco.integrations.google.docs=false +org.alfresco.integrations.share.google.docs=false +alfresco.index.transformContent=false diff --git a/open-zaak/docker/postgres.entrypoint-initdb.d/0001-open-zaak.sql b/open-zaak/docker/postgres.entrypoint-initdb.d/0001-open-zaak.sql new file mode 100644 index 000000000..40ea2b09f --- /dev/null +++ b/open-zaak/docker/postgres.entrypoint-initdb.d/0001-open-zaak.sql @@ -0,0 +1,3 @@ +-- CREATE USER openzaak; +-- CREATE DATABASE openzaak; +-- GRANT ALL PRIVILEGES ON DATABASE openzaak TO openzaak; diff --git a/open-zaak/docker/postgres.entrypoint-initdb.d/0002-open-zaak-extensions.sh b/open-zaak/docker/postgres.entrypoint-initdb.d/0002-open-zaak-extensions.sh new file mode 100644 index 000000000..1adfaeec0 --- /dev/null +++ b/open-zaak/docker/postgres.entrypoint-initdb.d/0002-open-zaak-extensions.sh @@ -0,0 +1,7 @@ +#!/bin/bash +set -e + +psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "openzaak" <<-EOSQL + CREATE EXTENSION postgis; + CREATE EXTENSION pg_trgm; +EOSQL diff --git a/open-zaak/docker/postgres.entrypoint-initdb.d/0010-alfresco.sql b/open-zaak/docker/postgres.entrypoint-initdb.d/0010-alfresco.sql new file mode 100644 index 000000000..a7fa360e3 --- /dev/null +++ b/open-zaak/docker/postgres.entrypoint-initdb.d/0010-alfresco.sql @@ -0,0 +1,3 @@ +CREATE USER alfresco; +CREATE DATABASE alfresco; +GRANT ALL PRIVILEGES ON DATABASE alfresco TO alfresco; diff --git a/open-zaak/docker/volumes/.gitkeep b/open-zaak/docker/volumes/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/open-zaak/open-notificaties/.env b/open-zaak/open-notificaties/.env new file mode 100644 index 000000000..8060e95a8 --- /dev/null +++ b/open-zaak/open-notificaties/.env @@ -0,0 +1,19 @@ +SECRET_KEY=${SECRET_KEY:-7(h1r2hk)8z9+05edulo_3qzymwbo&c24=)qz7+_@3&2sp=u%i} +IS_HTTPS=no +ALLOWED_HOSTS=* +# SUBPATH=${SUBPATH:-/localhost} +NOTIFICATIONS_DISABLED=True +DEBUG=yes +DJANGO_SETTINGS_MODULE=nrc.conf.docker + +CACHE_DEFAULT=openzaak_redis:6379/0 +CACHE_AXES=openzaak_redis:6379/0 + +DB_HOST=open_notificaties_database +DB_NAME=open_notificaties +DB_USER=openzaak +DB_PASSWORD=openzaak + +POSTGRES_DB=open_notificaties_database +POSTGRES_USER=openzaak +POSTGRES_PASSWORD=openzaak diff --git a/open-zaak/open-notificaties/Dockerfile b/open-zaak/open-notificaties/Dockerfile new file mode 100644 index 000000000..f7a1cfbda --- /dev/null +++ b/open-zaak/open-notificaties/Dockerfile @@ -0,0 +1,14 @@ +FROM openzaak/open-notificaties + +ENV REQUESTS_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt + +# Setup Certificates for ADP/Motiv +ADD certificates/adp_rootca.crt /usr/local/share/ca-certificates/adp_rootca.crt +ADD certificates/nl_root.crt /usr/local/share/ca-certificates/nl_root.crt +RUN chmod 644 /usr/local/share/ca-certificates/adp_rootca.crt \ + && chmod 644 /usr/local/share/ca-certificates/nl_root.crt \ + && update-ca-certificates --fresh + +# TODO: this is a mock cmis_mapper, based on https://github.com/open-zaak/open-zaak/blob/master/config/cmis_mapper.json +# Update this once we have received the definite mapping +ADD cmis/cmis_mapper.json /app/cmis/cmis_mapper.json diff --git a/open-zaak/open-notificaties/certificates/adp_rootca.crt b/open-zaak/open-notificaties/certificates/adp_rootca.crt new file mode 100644 index 000000000..90269c2db --- /dev/null +++ b/open-zaak/open-notificaties/certificates/adp_rootca.crt @@ -0,0 +1,31 @@ +-----BEGIN CERTIFICATE----- +MIIFVDCCAzygAwIBAgIQPVjMoVC1Dq5AEwir99iRkTANBgkqhkiG9w0BAQsFADAc +MRowGAYDVQQDExFBbXN0ZXJkYW0tUm9vdC1DQTAeFw0xNDA2MDYwOTQwNDZaFw0z +NDA2MDYwOTUwMzhaMBwxGjAYBgNVBAMTEUFtc3RlcmRhbS1Sb290LUNBMIICIjAN +BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv1IXzzaZZab1iDDLYDGTOYcxoSZE +S0GS2nI0PYEAvcKPojqIdr3VzhgSYFlOaX3t+E+w8DjF0clzVdH730vf/ofAi3NZ +WC1XjupAyaTbnbr05ww9+pE7+LzVEbGTYJue4K6TwH1jUNo1qSA7DC5370s5/kr2 +h8dpzZwqMMpUssvMS4laqtHokZpuaWZ7akWRXApRqSy2aWExJ+lfCrKbZVl+RMkz +Y36fvJj/gRSLZrCYD9fV7hngKoDfDnUJG7NO31CopF/+9RgjMT8S9DwfL3MKy1Uw +szEOtnwiuYKBrKY59guTfgRXIy/DRfDR8+1XwrcuXQNdRUgztdX6OQhbv396GScm +9EDnDVWCtV+oSH4LAIjhxCeRDjCxRhxuO4P/TpUwjW6vpx7j7tFOSf9YJcwPcMqi +eoHdde7JkQTTXzzVe1tP8ybCaqI+THsUD4t39HLp90WwWqwkd6m0lRns03e6qOl8 +EthbLkhsSQHAQGvHVzBttEPxpfVy+zQtXIrUX7svfLzS2BYmsJzTvmWHfijItbG5 +BfWnwj/Gpf2erdRQLuTOZkRajtyade58tcaN0RuKGEb95tLeqOx9ttV+w4AfNTiR +oCChtN1sQKPYnfwwCCdqhDgyU0+0dB5iby0vymmKnNN88TOeZR03cRBhqn+iqdLk +5fzUdxGFjLMCIo0CAwEAAaOBkTCBjjALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUEBqbZq4Qbh76HzImS1fLgRY/vCQwEAYJKwYBBAGCNxUB +BAMCAQAwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHA6Ly9w +a2kuYW1zdGVyZGFtLm5sL2NzcAAwDQYJKoZIhvcNAQELBQADggIBAEiWc6z4Rkq2 +jZMbmCaC264F5Bt9u4tvOSV8PO3EVSkwNeqMZQ64Ga/C9BqpRWEpBXBlhaAGJgDd +65mnYLsi0AYEQ7BXKFkXHp+MpMiWGnknp/RstOpJuHE3yj7QjKeSqeXbCw4hOoVK +wT0gbGNDvviDd40MYcGii0y7MeO3dd/dSfdA0yOFsY/y3DOX3Q/JYG3hIQ1IbTFk +7ySMVX0U3XF2ZQjXk1cSiqA5/UgBNLe4+i0pBJyEOhnnJfCH3s83riSMdLM4D/Us +DSE1XflFGUCMhrr06wV9tXuroiK1nJhY2Z//w7RcNJIEMjzekfZH9ZC06nBPjxCa +G7TxY7eZfQ/l/UofjiuMr3RHYg7XvkQRjYdAYCZQWzcJs1QO/OTY5lz1Q1aR5NB5 +EP/jahYlQcywH+ISqTh6RfOKWFvTtTSAXrp8VRPiolBbvZBAQb6xXLKjav8oFLqp +r/eAYLIXPFRladiewBoJMIhBrMW51xCMSz0HsepbKWIaoEgxRb0ya2NxwozbDA8F +lxMb/sZXG7K1uN40jDeUp+fE236381Fw9RfTKdkvtXbjpEJ8byuCILRscEjLs+RX +sqIU/Wz1etLxrZdrKNlgbGB6U7ZP6gNu3N8XH4kp/y9EUn3v5CJbOIFrOSNd6FeO +sEOmbBwAzVc6Q5CUM/iAum3SC/K/vZnz +-----END CERTIFICATE----- diff --git a/open-zaak/open-notificaties/certificates/nl_root.crt b/open-zaak/open-notificaties/certificates/nl_root.crt new file mode 100644 index 000000000..315f66589 --- /dev/null +++ b/open-zaak/open-notificaties/certificates/nl_root.crt @@ -0,0 +1,32 @@ +-----BEGIN CERTIFICATE----- +MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gRVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0y +MjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIg +TmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBS +b290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkkSzrS +M4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nC +UiY4iKTWO0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3d +Z//BYY1jTw+bbRcwJu+r0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46p +rfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13l +pJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gVXJrm0w912fxBmJc+qiXb +j5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr08C+eKxC +KFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS +/ZbV0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0X +cgOPvZuM5l5Tnrmd74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH +1vI4gnPah1vlPNOePqc7nvQDs/nxfRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrP +px9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwaivsnuL8wbqg7 +MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI +eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u +2dfOWBfoqSmuc0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHS +v4ilf0X8rLiltTMMgsT7B/Zq5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTC +wPTxGfARKbalGAKb12NMcIxHowNDXLldRqANb/9Zjr7dn3LDWyvfjFvO5QxGbJKy +CqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tNf1zuacpzEPuKqf2e +vTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi5Dp6 +Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIa +Gl6I6lD4WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeL +eG9QgkRQP2YGiqtDhFZKDyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8 +FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGyeUN51q1veieQA6TqJIc/2b3Z6fJfUEkc +7uzXLg== +-----END CERTIFICATE----- diff --git a/open-zaak/open-notificaties/cmis/cmis_mapper.json b/open-zaak/open-notificaties/cmis/cmis_mapper.json new file mode 100644 index 000000000..b8a999976 --- /dev/null +++ b/open-zaak/open-notificaties/cmis/cmis_mapper.json @@ -0,0 +1,62 @@ +{ + "ZAAKTYPE_MAP": { + "object_type_id": "cmis:objectTypeId", + "url": "drc:zaaktype__url", + "identificatie": "drc:zaaktype__identificatie" + }, + "ZAAK_MAP": { + "object_type_id": "cmis:objectTypeId", + "url": "drc:zaak__url", + "identificatie": "drc:zaak__identificatie", + "zaaktype": "drc:zaak__zaaktypeurl", + "bronorganisatie": "drc:zaak__bronorganisatie" + }, + "DOCUMENT_MAP": { + "object_type_id": "cmis:objectTypeId", + "uuid": "drc:document__uuid", + "bronorganisatie": "drc:document__bronorganisatie", + "identificatie": "drc:document__identificatie", + "titel": "drc:document__titel", + "bestandsnaam": "drc:document__bestandsnaam", + "formaat": "drc:document__formaat", + "bestandsomvang": "cmis:contentStreamLength", + "versie": "drc:document__versie", + "beschrijving": "drc:document__beschrijving", + "verzenddatum": "drc:document__verzenddatum", + "taal": "drc:document__taal", + "indicatie_gebruiksrecht": "drc:document__indicatiegebruiksrecht", + "verwijderd": "drc:document__verwijderd", + "status": "drc:document__status", + "ontvangstdatum": "drc:document__ontvangstdatum", + "informatieobjecttype": "drc:document__informatieobjecttype", + "auteur": "drc:document__auteur", + "vertrouwelijkheidaanduiding": "drc:document__vertrouwelijkaanduiding", + "begin_registratie": "drc:document__begin_registratie", + "integriteit_algoritme": "drc:document__integriteitalgoritme", + "integriteit_datum": "drc:document__integriteitdatum", + "integriteit_waarde": "drc:document__integriteitwaarde", + "ondertekening_soort": "drc:document__ondertekeningsoort", + "ondertekening_datum": "drc:document__ondertekeningdatum", + "link": "drc:document__link", + "creatiedatum": "drc:document__creatiedatum", + "lock": "drc:document__lock", + "kopie_van": "drc:kopie_van" + }, + "OBJECTINFORMATIEOBJECT_MAP": { + "object_type_id": "cmis:objectTypeId", + "uuid": "drc:oio__uuid", + "object_type": "drc:oio__object_type", + "besluit": "drc:oio__besluit", + "zaak": "drc:oio__zaak", + "informatieobject": "drc:oio__informatieobject" + }, + "GEBRUIKSRECHTEN_MAP": { + "object_type_id": "cmis:objectTypeId", + "uuid": "drc:gebruiksrechten__uuid", + "einddatum": "drc:gebruiksrechten__einddatum", + "omschrijving_voorwaarden": "drc:gebruiksrechten__omschrijving_voorwaarden", + "informatieobject": "drc:gebruiksrechten__informatieobject", + "startdatum": "drc:gebruiksrechten__startdatum", + "kopie_van": "drc:gebruiksrechten__kopie_van" + } +} diff --git a/open-zaak/open-zaak/.env b/open-zaak/open-zaak/.env new file mode 100644 index 000000000..29a91c8fb --- /dev/null +++ b/open-zaak/open-zaak/.env @@ -0,0 +1,60 @@ +# DJANGO_SETTINGS_MODULE=openzaak.conf.docker +# SECRET_KEY=${SECRET_KEY:-7(h1r2hk)8z9+05edulo_3qzymwbo&c24=)qz7+_@3&2sp=u%i} +# IS_HTTPS=no +# ALLOWED_HOSTS=["http://localhost:8090", "http://localhost:8000"] +# SUBPATH=${SUBPATH:-/} +# NOTIFICATIONS_DISABLED=False +# DEBUG=True + +# LOG_STDOUT=1 + +# CACHE_DEFAULT=openzaak_redis:6379/0 +# CACHE_AXES=openzaak_redis:6379/0 + +# CMIS_ENABLED=False +# CMIS_MAPPER_FILE="/app/config/cmis_mapper.json" + +# # DB_HOST=openzaak_database +# DB_NAME=openzaak +# DB_USER=openzaak +# # DB_PASSWORD=openzaak + +# # POSTGRES_DB=openzaak +# # POSTGRES_USER=openzaak +# # POSTGRES_PASSWORD=openzaak + +# OPENZAAK_SUPERUSER_USERNAME=admin +# DJANGO_SUPERUSER_PASSWORD=admin +# OPENZAAK_SUPERUSER_EMAIL=admin@localhost + +# DJANGO_SETTINGS_MODULE=openzaak.conf.docker +# SECRET_KEY=${SECRET_KEY:-7(h1r2hk)8z9+05edulo_3qzymwbo&c24=)qz7+_@3&2sp=u%i} +# DB_NAME=openzaak +# DB_USER=openzaak +# IS_HTTPS=no +# ALLOWED_HOSTS=["localhost", "xavier.local"] +# CACHE_DEFAULT=redis:6379/0 +# CACHE_AXES=redis:6379/0 +# SUBPATH=${SUBPATH:-/} +# OPENZAAK_SUPERUSER_USERNAME=admin +# DJANGO_SUPERUSER_PASSWORD=admin +# OPENZAAK_SUPERUSER_EMAIL=admin@localhost + +DJANGO_SETTINGS_MODULE=openzaak.conf.docker +SECRET_KEY=d)-n^ysm*cebb1^0u6nx-+ye=b8^yv0+yggspy9mh46#7ypc0q +ALLOWED_HOSTS=localhost,127.0.0.1,open-zaak.gemeente.local +LOG_STDOUT=1 + +DB_HOST=db +DB_NAME=openzaak +DB_USER=openzaak +DB_PASSWORD=openzaak + +CACHE_DEFAULT=redis:6379 +CACHE_AXES=redis:6379 +EMAIL_HOST=mail.gemeente.nl + +CMIS_ENABLED=False +CMIS_MAPPER_FILE="/app/config/cmis_mapper.json" +CORS_ALLOW_ALL_ORIGINS=True +DEBUG=yes diff --git a/open-zaak/open-zaak/Dockerfile b/open-zaak/open-zaak/Dockerfile new file mode 100644 index 000000000..ef38a2571 --- /dev/null +++ b/open-zaak/open-zaak/Dockerfile @@ -0,0 +1,14 @@ +FROM openzaak/open-zaak + +ENV REQUESTS_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt + +# Setup Certificates for ADP/Motiv +ADD certificates/adp_rootca.crt /usr/local/share/ca-certificates/adp_rootca.crt +ADD certificates/nl_root.crt /usr/local/share/ca-certificates/nl_root.crt +RUN chmod 644 /usr/local/share/ca-certificates/adp_rootca.crt \ + && chmod 644 /usr/local/share/ca-certificates/nl_root.crt \ + && update-ca-certificates --fresh + +# TODO: this is a mock cmis_mapper, based on https://github.com/open-zaak/open-zaak/blob/master/config/cmis_mapper.json +# Update this once we have received the definite mapping +ADD cmis/cmis_mapper.json /app/cmis/cmis_mapper.json diff --git a/open-zaak/open-zaak/certificates/adp_rootca.crt b/open-zaak/open-zaak/certificates/adp_rootca.crt new file mode 100644 index 000000000..90269c2db --- /dev/null +++ b/open-zaak/open-zaak/certificates/adp_rootca.crt @@ -0,0 +1,31 @@ +-----BEGIN CERTIFICATE----- +MIIFVDCCAzygAwIBAgIQPVjMoVC1Dq5AEwir99iRkTANBgkqhkiG9w0BAQsFADAc +MRowGAYDVQQDExFBbXN0ZXJkYW0tUm9vdC1DQTAeFw0xNDA2MDYwOTQwNDZaFw0z +NDA2MDYwOTUwMzhaMBwxGjAYBgNVBAMTEUFtc3RlcmRhbS1Sb290LUNBMIICIjAN +BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv1IXzzaZZab1iDDLYDGTOYcxoSZE +S0GS2nI0PYEAvcKPojqIdr3VzhgSYFlOaX3t+E+w8DjF0clzVdH730vf/ofAi3NZ +WC1XjupAyaTbnbr05ww9+pE7+LzVEbGTYJue4K6TwH1jUNo1qSA7DC5370s5/kr2 +h8dpzZwqMMpUssvMS4laqtHokZpuaWZ7akWRXApRqSy2aWExJ+lfCrKbZVl+RMkz +Y36fvJj/gRSLZrCYD9fV7hngKoDfDnUJG7NO31CopF/+9RgjMT8S9DwfL3MKy1Uw +szEOtnwiuYKBrKY59guTfgRXIy/DRfDR8+1XwrcuXQNdRUgztdX6OQhbv396GScm +9EDnDVWCtV+oSH4LAIjhxCeRDjCxRhxuO4P/TpUwjW6vpx7j7tFOSf9YJcwPcMqi +eoHdde7JkQTTXzzVe1tP8ybCaqI+THsUD4t39HLp90WwWqwkd6m0lRns03e6qOl8 +EthbLkhsSQHAQGvHVzBttEPxpfVy+zQtXIrUX7svfLzS2BYmsJzTvmWHfijItbG5 +BfWnwj/Gpf2erdRQLuTOZkRajtyade58tcaN0RuKGEb95tLeqOx9ttV+w4AfNTiR +oCChtN1sQKPYnfwwCCdqhDgyU0+0dB5iby0vymmKnNN88TOeZR03cRBhqn+iqdLk +5fzUdxGFjLMCIo0CAwEAAaOBkTCBjjALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUEBqbZq4Qbh76HzImS1fLgRY/vCQwEAYJKwYBBAGCNxUB +BAMCAQAwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHA6Ly9w +a2kuYW1zdGVyZGFtLm5sL2NzcAAwDQYJKoZIhvcNAQELBQADggIBAEiWc6z4Rkq2 +jZMbmCaC264F5Bt9u4tvOSV8PO3EVSkwNeqMZQ64Ga/C9BqpRWEpBXBlhaAGJgDd +65mnYLsi0AYEQ7BXKFkXHp+MpMiWGnknp/RstOpJuHE3yj7QjKeSqeXbCw4hOoVK +wT0gbGNDvviDd40MYcGii0y7MeO3dd/dSfdA0yOFsY/y3DOX3Q/JYG3hIQ1IbTFk +7ySMVX0U3XF2ZQjXk1cSiqA5/UgBNLe4+i0pBJyEOhnnJfCH3s83riSMdLM4D/Us +DSE1XflFGUCMhrr06wV9tXuroiK1nJhY2Z//w7RcNJIEMjzekfZH9ZC06nBPjxCa +G7TxY7eZfQ/l/UofjiuMr3RHYg7XvkQRjYdAYCZQWzcJs1QO/OTY5lz1Q1aR5NB5 +EP/jahYlQcywH+ISqTh6RfOKWFvTtTSAXrp8VRPiolBbvZBAQb6xXLKjav8oFLqp +r/eAYLIXPFRladiewBoJMIhBrMW51xCMSz0HsepbKWIaoEgxRb0ya2NxwozbDA8F +lxMb/sZXG7K1uN40jDeUp+fE236381Fw9RfTKdkvtXbjpEJ8byuCILRscEjLs+RX +sqIU/Wz1etLxrZdrKNlgbGB6U7ZP6gNu3N8XH4kp/y9EUn3v5CJbOIFrOSNd6FeO +sEOmbBwAzVc6Q5CUM/iAum3SC/K/vZnz +-----END CERTIFICATE----- diff --git a/open-zaak/open-zaak/certificates/nl_root.crt b/open-zaak/open-zaak/certificates/nl_root.crt new file mode 100644 index 000000000..315f66589 --- /dev/null +++ b/open-zaak/open-zaak/certificates/nl_root.crt @@ -0,0 +1,32 @@ +-----BEGIN CERTIFICATE----- +MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gRVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0y +MjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIg +TmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBS +b290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkkSzrS +M4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nC +UiY4iKTWO0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3d +Z//BYY1jTw+bbRcwJu+r0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46p +rfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13l +pJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gVXJrm0w912fxBmJc+qiXb +j5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr08C+eKxC +KFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS +/ZbV0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0X +cgOPvZuM5l5Tnrmd74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH +1vI4gnPah1vlPNOePqc7nvQDs/nxfRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrP +px9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwaivsnuL8wbqg7 +MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI +eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u +2dfOWBfoqSmuc0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHS +v4ilf0X8rLiltTMMgsT7B/Zq5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTC +wPTxGfARKbalGAKb12NMcIxHowNDXLldRqANb/9Zjr7dn3LDWyvfjFvO5QxGbJKy +CqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tNf1zuacpzEPuKqf2e +vTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi5Dp6 +Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIa +Gl6I6lD4WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeL +eG9QgkRQP2YGiqtDhFZKDyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8 +FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGyeUN51q1veieQA6TqJIc/2b3Z6fJfUEkc +7uzXLg== +-----END CERTIFICATE----- diff --git a/open-zaak/open-zaak/cmis/cmis_mapper.json b/open-zaak/open-zaak/cmis/cmis_mapper.json new file mode 100644 index 000000000..b8a999976 --- /dev/null +++ b/open-zaak/open-zaak/cmis/cmis_mapper.json @@ -0,0 +1,62 @@ +{ + "ZAAKTYPE_MAP": { + "object_type_id": "cmis:objectTypeId", + "url": "drc:zaaktype__url", + "identificatie": "drc:zaaktype__identificatie" + }, + "ZAAK_MAP": { + "object_type_id": "cmis:objectTypeId", + "url": "drc:zaak__url", + "identificatie": "drc:zaak__identificatie", + "zaaktype": "drc:zaak__zaaktypeurl", + "bronorganisatie": "drc:zaak__bronorganisatie" + }, + "DOCUMENT_MAP": { + "object_type_id": "cmis:objectTypeId", + "uuid": "drc:document__uuid", + "bronorganisatie": "drc:document__bronorganisatie", + "identificatie": "drc:document__identificatie", + "titel": "drc:document__titel", + "bestandsnaam": "drc:document__bestandsnaam", + "formaat": "drc:document__formaat", + "bestandsomvang": "cmis:contentStreamLength", + "versie": "drc:document__versie", + "beschrijving": "drc:document__beschrijving", + "verzenddatum": "drc:document__verzenddatum", + "taal": "drc:document__taal", + "indicatie_gebruiksrecht": "drc:document__indicatiegebruiksrecht", + "verwijderd": "drc:document__verwijderd", + "status": "drc:document__status", + "ontvangstdatum": "drc:document__ontvangstdatum", + "informatieobjecttype": "drc:document__informatieobjecttype", + "auteur": "drc:document__auteur", + "vertrouwelijkheidaanduiding": "drc:document__vertrouwelijkaanduiding", + "begin_registratie": "drc:document__begin_registratie", + "integriteit_algoritme": "drc:document__integriteitalgoritme", + "integriteit_datum": "drc:document__integriteitdatum", + "integriteit_waarde": "drc:document__integriteitwaarde", + "ondertekening_soort": "drc:document__ondertekeningsoort", + "ondertekening_datum": "drc:document__ondertekeningdatum", + "link": "drc:document__link", + "creatiedatum": "drc:document__creatiedatum", + "lock": "drc:document__lock", + "kopie_van": "drc:kopie_van" + }, + "OBJECTINFORMATIEOBJECT_MAP": { + "object_type_id": "cmis:objectTypeId", + "uuid": "drc:oio__uuid", + "object_type": "drc:oio__object_type", + "besluit": "drc:oio__besluit", + "zaak": "drc:oio__zaak", + "informatieobject": "drc:oio__informatieobject" + }, + "GEBRUIKSRECHTEN_MAP": { + "object_type_id": "cmis:objectTypeId", + "uuid": "drc:gebruiksrechten__uuid", + "einddatum": "drc:gebruiksrechten__einddatum", + "omschrijving_voorwaarden": "drc:gebruiksrechten__omschrijving_voorwaarden", + "informatieobject": "drc:gebruiksrechten__informatieobject", + "startdatum": "drc:gebruiksrechten__startdatum", + "kopie_van": "drc:gebruiksrechten__kopie_van" + } +} diff --git a/open-zaak/open-zaak/db/filterted-open-zaak-db.json b/open-zaak/open-zaak/db/filterted-open-zaak-db.json new file mode 100644 index 000000000..53e161260 --- /dev/null +++ b/open-zaak/open-zaak/db/filterted-open-zaak-db.json @@ -0,0 +1,10813 @@ +[{ + "model": "contenttypes.contenttype", + "pk": 1, + "fields": { + "app_label": "contenttypes", + "model": "contenttype" + } +}, { + "model": "contenttypes.contenttype", + "pk": 2, + "fields": { + "app_label": "auth", + "model": "permission" + } +}, { + "model": "contenttypes.contenttype", + "pk": 3, + "fields": { + "app_label": "auth", + "model": "group" + } +}, { + "model": "contenttypes.contenttype", + "pk": 4, + "fields": { + "app_label": "sessions", + "model": "session" + } +}, { + "model": "contenttypes.contenttype", + "pk": 5, + "fields": { + "app_label": "sites", + "model": "site" + } +}, { + "model": "contenttypes.contenttype", + "pk": 6, + "fields": { + "app_label": "admin_index", + "model": "contenttypeproxy" + } +}, { + "model": "contenttypes.contenttype", + "pk": 7, + "fields": { + "app_label": "admin_index", + "model": "appgroup" + } +}, { + "model": "contenttypes.contenttype", + "pk": 8, + "fields": { + "app_label": "admin_index", + "model": "applink" + } +}, { + "model": "contenttypes.contenttype", + "pk": 9, + "fields": { + "app_label": "admin", + "model": "logentry" + } +}, { + "model": "contenttypes.contenttype", + "pk": 10, + "fields": { + "app_label": "axes", + "model": "accessattempt" + } +}, { + "model": "contenttypes.contenttype", + "pk": 11, + "fields": { + "app_label": "axes", + "model": "accesslog" + } +}, { + "model": "contenttypes.contenttype", + "pk": 12, + "fields": { + "app_label": "django_auth_adfs_db", + "model": "adfsconfig" + } +}, { + "model": "contenttypes.contenttype", + "pk": 13, + "fields": { + "app_label": "django_db_logger", + "model": "statuslog" + } +}, { + "model": "contenttypes.contenttype", + "pk": 14, + "fields": { + "app_label": "corsheaders", + "model": "corsmodel" + } +}, { + "model": "contenttypes.contenttype", + "pk": 15, + "fields": { + "app_label": "vng_api_common", + "model": "jwtsecret" + } +}, { + "model": "contenttypes.contenttype", + "pk": 16, + "fields": { + "app_label": "vng_api_common", + "model": "apicredential" + } +}, { + "model": "contenttypes.contenttype", + "pk": 17, + "fields": { + "app_label": "authorizations", + "model": "authorizationsconfig" + } +}, { + "model": "contenttypes.contenttype", + "pk": 18, + "fields": { + "app_label": "authorizations", + "model": "applicatie" + } +}, { + "model": "contenttypes.contenttype", + "pk": 19, + "fields": { + "app_label": "authorizations", + "model": "autorisatie" + } +}, { + "model": "contenttypes.contenttype", + "pk": 20, + "fields": { + "app_label": "audittrails", + "model": "audittrail" + } +}, { + "model": "contenttypes.contenttype", + "pk": 21, + "fields": { + "app_label": "notifications", + "model": "notificationsconfig" + } +}, { + "model": "contenttypes.contenttype", + "pk": 22, + "fields": { + "app_label": "notifications", + "model": "subscription" + } +}, { + "model": "contenttypes.contenttype", + "pk": 23, + "fields": { + "app_label": "nlx_url_rewriter", + "model": "urlrewrite" + } +}, { + "model": "contenttypes.contenttype", + "pk": 24, + "fields": { + "app_label": "zgw_consumers", + "model": "service" + } +}, { + "model": "contenttypes.contenttype", + "pk": 25, + "fields": { + "app_label": "zgw_consumers", + "model": "nlxconfig" + } +}, { + "model": "contenttypes.contenttype", + "pk": 26, + "fields": { + "app_label": "drc_cmis", + "model": "cmisconfig" + } +}, { + "model": "contenttypes.contenttype", + "pk": 27, + "fields": { + "app_label": "accounts", + "model": "user" + } +}, { + "model": "contenttypes.contenttype", + "pk": 28, + "fields": { + "app_label": "autorisaties", + "model": "autorisatiespec" + } +}, { + "model": "contenttypes.contenttype", + "pk": 29, + "fields": { + "app_label": "zaken", + "model": "zaak" + } +}, { + "model": "contenttypes.contenttype", + "pk": 30, + "fields": { + "app_label": "zaken", + "model": "relevantezaakrelatie" + } +}, { + "model": "contenttypes.contenttype", + "pk": 31, + "fields": { + "app_label": "zaken", + "model": "status" + } +}, { + "model": "contenttypes.contenttype", + "pk": 32, + "fields": { + "app_label": "zaken", + "model": "resultaat" + } +}, { + "model": "contenttypes.contenttype", + "pk": 33, + "fields": { + "app_label": "zaken", + "model": "rol" + } +}, { + "model": "contenttypes.contenttype", + "pk": 34, + "fields": { + "app_label": "zaken", + "model": "zaakobject" + } +}, { + "model": "contenttypes.contenttype", + "pk": 35, + "fields": { + "app_label": "zaken", + "model": "zaakeigenschap" + } +}, { + "model": "contenttypes.contenttype", + "pk": 36, + "fields": { + "app_label": "zaken", + "model": "zaakkenmerk" + } +}, { + "model": "contenttypes.contenttype", + "pk": 37, + "fields": { + "app_label": "zaken", + "model": "zaakinformatieobject" + } +}, { + "model": "contenttypes.contenttype", + "pk": 38, + "fields": { + "app_label": "zaken", + "model": "klantcontact" + } +}, { + "model": "contenttypes.contenttype", + "pk": 39, + "fields": { + "app_label": "zaken", + "model": "zaakbesluit" + } +}, { + "model": "contenttypes.contenttype", + "pk": 40, + "fields": { + "app_label": "zaken", + "model": "buurt" + } +}, { + "model": "contenttypes.contenttype", + "pk": 41, + "fields": { + "app_label": "zaken", + "model": "gemeente" + } +}, { + "model": "contenttypes.contenttype", + "pk": 42, + "fields": { + "app_label": "zaken", + "model": "gemeentelijkeopenbareruimte" + } +}, { + "model": "contenttypes.contenttype", + "pk": 43, + "fields": { + "app_label": "zaken", + "model": "huishouden" + } +}, { + "model": "contenttypes.contenttype", + "pk": 44, + "fields": { + "app_label": "zaken", + "model": "inrichtingselement" + } +}, { + "model": "contenttypes.contenttype", + "pk": 45, + "fields": { + "app_label": "zaken", + "model": "kunstwerkdeel" + } +}, { + "model": "contenttypes.contenttype", + "pk": 46, + "fields": { + "app_label": "zaken", + "model": "maatschappelijkeactiviteit" + } +}, { + "model": "contenttypes.contenttype", + "pk": 47, + "fields": { + "app_label": "zaken", + "model": "openbareruimte" + } +}, { + "model": "contenttypes.contenttype", + "pk": 48, + "fields": { + "app_label": "zaken", + "model": "pand" + } +}, { + "model": "contenttypes.contenttype", + "pk": 49, + "fields": { + "app_label": "zaken", + "model": "spoorbaandeel" + } +}, { + "model": "contenttypes.contenttype", + "pk": 50, + "fields": { + "app_label": "zaken", + "model": "terreindeel" + } +}, { + "model": "contenttypes.contenttype", + "pk": 51, + "fields": { + "app_label": "zaken", + "model": "waterdeel" + } +}, { + "model": "contenttypes.contenttype", + "pk": 52, + "fields": { + "app_label": "zaken", + "model": "wegdeel" + } +}, { + "model": "contenttypes.contenttype", + "pk": 53, + "fields": { + "app_label": "zaken", + "model": "wijk" + } +}, { + "model": "contenttypes.contenttype", + "pk": 54, + "fields": { + "app_label": "zaken", + "model": "woonplaats" + } +}, { + "model": "contenttypes.contenttype", + "pk": 55, + "fields": { + "app_label": "zaken", + "model": "overige" + } +}, { + "model": "contenttypes.contenttype", + "pk": 56, + "fields": { + "app_label": "zaken", + "model": "terreingebouwdobject" + } +}, { + "model": "contenttypes.contenttype", + "pk": 57, + "fields": { + "app_label": "zaken", + "model": "wozdeelobject" + } +}, { + "model": "contenttypes.contenttype", + "pk": 58, + "fields": { + "app_label": "zaken", + "model": "wozwaarde" + } +}, { + "model": "contenttypes.contenttype", + "pk": 59, + "fields": { + "app_label": "zaken", + "model": "wozobject" + } +}, { + "model": "contenttypes.contenttype", + "pk": 60, + "fields": { + "app_label": "zaken", + "model": "zakelijkrecht" + } +}, { + "model": "contenttypes.contenttype", + "pk": 61, + "fields": { + "app_label": "zaken", + "model": "kadastraleonroerendezaak" + } +}, { + "model": "contenttypes.contenttype", + "pk": 62, + "fields": { + "app_label": "zaken", + "model": "zakelijkrechtheeftalsgerechtigde" + } +}, { + "model": "contenttypes.contenttype", + "pk": 63, + "fields": { + "app_label": "zaken", + "model": "adres" + } +}, { + "model": "contenttypes.contenttype", + "pk": 64, + "fields": { + "app_label": "zaken", + "model": "natuurlijkpersoon" + } +}, { + "model": "contenttypes.contenttype", + "pk": 65, + "fields": { + "app_label": "zaken", + "model": "nietnatuurlijkpersoon" + } +}, { + "model": "contenttypes.contenttype", + "pk": 66, + "fields": { + "app_label": "zaken", + "model": "vestiging" + } +}, { + "model": "contenttypes.contenttype", + "pk": 67, + "fields": { + "app_label": "zaken", + "model": "organisatorischeeenheid" + } +}, { + "model": "contenttypes.contenttype", + "pk": 68, + "fields": { + "app_label": "zaken", + "model": "medewerker" + } +}, { + "model": "contenttypes.contenttype", + "pk": 69, + "fields": { + "app_label": "zaken", + "model": "subverblijfbuitenland" + } +}, { + "model": "contenttypes.contenttype", + "pk": 70, + "fields": { + "app_label": "besluiten", + "model": "besluit" + } +}, { + "model": "contenttypes.contenttype", + "pk": 71, + "fields": { + "app_label": "besluiten", + "model": "besluitinformatieobject" + } +}, { + "model": "contenttypes.contenttype", + "pk": 72, + "fields": { + "app_label": "documenten", + "model": "enkelvoudiginformatieobjectcanonical" + } +}, { + "model": "contenttypes.contenttype", + "pk": 73, + "fields": { + "app_label": "documenten", + "model": "enkelvoudiginformatieobject" + } +}, { + "model": "contenttypes.contenttype", + "pk": 74, + "fields": { + "app_label": "documenten", + "model": "gebruiksrechten" + } +}, { + "model": "contenttypes.contenttype", + "pk": 75, + "fields": { + "app_label": "documenten", + "model": "objectinformatieobject" + } +}, { + "model": "contenttypes.contenttype", + "pk": 76, + "fields": { + "app_label": "catalogi", + "model": "besluittype" + } +}, { + "model": "contenttypes.contenttype", + "pk": 77, + "fields": { + "app_label": "catalogi", + "model": "catalogus" + } +}, { + "model": "contenttypes.contenttype", + "pk": 78, + "fields": { + "app_label": "catalogi", + "model": "eigenschapspecificatie" + } +}, { + "model": "contenttypes.contenttype", + "pk": 79, + "fields": { + "app_label": "catalogi", + "model": "eigenschap" + } +}, { + "model": "contenttypes.contenttype", + "pk": 80, + "fields": { + "app_label": "catalogi", + "model": "informatieobjecttype" + } +}, { + "model": "contenttypes.contenttype", + "pk": 81, + "fields": { + "app_label": "catalogi", + "model": "zaaktypeinformatieobjecttype" + } +}, { + "model": "contenttypes.contenttype", + "pk": 82, + "fields": { + "app_label": "catalogi", + "model": "zaaktypenrelatie" + } +}, { + "model": "contenttypes.contenttype", + "pk": 83, + "fields": { + "app_label": "catalogi", + "model": "resultaattype" + } +}, { + "model": "contenttypes.contenttype", + "pk": 84, + "fields": { + "app_label": "catalogi", + "model": "roltype" + } +}, { + "model": "contenttypes.contenttype", + "pk": 85, + "fields": { + "app_label": "catalogi", + "model": "statustype" + } +}, { + "model": "contenttypes.contenttype", + "pk": 86, + "fields": { + "app_label": "catalogi", + "model": "zaaktype" + } +}, { + "model": "contenttypes.contenttype", + "pk": 87, + "fields": { + "app_label": "config", + "model": "nlxconfig" + } +}, { + "model": "contenttypes.contenttype", + "pk": 88, + "fields": { + "app_label": "config", + "model": "internalservice" + } +}, { + "model": "contenttypes.contenttype", + "pk": 89, + "fields": { + "app_label": "config", + "model": "featureflags" + } +}, { + "model": "contenttypes.contenttype", + "pk": 90, + "fields": { + "app_label": "selectielijst", + "model": "referentielijstconfig" + } +}, { + "model": "contenttypes.contenttype", + "pk": 91, + "fields": { + "app_label": "notifications_log", + "model": "failednotification" + } +}, { + "model": "contenttypes.contenttype", + "pk": 92, + "fields": { + "app_label": "drc_cmis", + "model": "urlmapping" + } +}, { + "model": "auth.permission", + "pk": 1, + "fields": { + "name": "Can add content type", + "content_type": 1, + "codename": "add_contenttype" + } +}, { + "model": "auth.permission", + "pk": 2, + "fields": { + "name": "Can change content type", + "content_type": 1, + "codename": "change_contenttype" + } +}, { + "model": "auth.permission", + "pk": 3, + "fields": { + "name": "Can delete content type", + "content_type": 1, + "codename": "delete_contenttype" + } +}, { + "model": "auth.permission", + "pk": 4, + "fields": { + "name": "Can view content type", + "content_type": 1, + "codename": "view_contenttype" + } +}, { + "model": "auth.permission", + "pk": 5, + "fields": { + "name": "Can add permission", + "content_type": 2, + "codename": "add_permission" + } +}, { + "model": "auth.permission", + "pk": 6, + "fields": { + "name": "Can change permission", + "content_type": 2, + "codename": "change_permission" + } +}, { + "model": "auth.permission", + "pk": 7, + "fields": { + "name": "Can delete permission", + "content_type": 2, + "codename": "delete_permission" + } +}, { + "model": "auth.permission", + "pk": 8, + "fields": { + "name": "Can view permission", + "content_type": 2, + "codename": "view_permission" + } +}, { + "model": "auth.permission", + "pk": 9, + "fields": { + "name": "Can add group", + "content_type": 3, + "codename": "add_group" + } +}, { + "model": "auth.permission", + "pk": 10, + "fields": { + "name": "Can change group", + "content_type": 3, + "codename": "change_group" + } +}, { + "model": "auth.permission", + "pk": 11, + "fields": { + "name": "Can delete group", + "content_type": 3, + "codename": "delete_group" + } +}, { + "model": "auth.permission", + "pk": 12, + "fields": { + "name": "Can view group", + "content_type": 3, + "codename": "view_group" + } +}, { + "model": "auth.permission", + "pk": 13, + "fields": { + "name": "Can add session", + "content_type": 4, + "codename": "add_session" + } +}, { + "model": "auth.permission", + "pk": 14, + "fields": { + "name": "Can change session", + "content_type": 4, + "codename": "change_session" + } +}, { + "model": "auth.permission", + "pk": 15, + "fields": { + "name": "Can delete session", + "content_type": 4, + "codename": "delete_session" + } +}, { + "model": "auth.permission", + "pk": 16, + "fields": { + "name": "Can view session", + "content_type": 4, + "codename": "view_session" + } +}, { + "model": "auth.permission", + "pk": 17, + "fields": { + "name": "Can add site", + "content_type": 5, + "codename": "add_site" + } +}, { + "model": "auth.permission", + "pk": 18, + "fields": { + "name": "Can change site", + "content_type": 5, + "codename": "change_site" + } +}, { + "model": "auth.permission", + "pk": 19, + "fields": { + "name": "Can delete site", + "content_type": 5, + "codename": "delete_site" + } +}, { + "model": "auth.permission", + "pk": 20, + "fields": { + "name": "Can view site", + "content_type": 5, + "codename": "view_site" + } +}, { + "model": "auth.permission", + "pk": 21, + "fields": { + "name": "Can add content type proxy", + "content_type": 6, + "codename": "add_contenttypeproxy" + } +}, { + "model": "auth.permission", + "pk": 22, + "fields": { + "name": "Can change content type proxy", + "content_type": 6, + "codename": "change_contenttypeproxy" + } +}, { + "model": "auth.permission", + "pk": 23, + "fields": { + "name": "Can delete content type proxy", + "content_type": 6, + "codename": "delete_contenttypeproxy" + } +}, { + "model": "auth.permission", + "pk": 24, + "fields": { + "name": "Can view content type proxy", + "content_type": 6, + "codename": "view_contenttypeproxy" + } +}, { + "model": "auth.permission", + "pk": 25, + "fields": { + "name": "Can add application group", + "content_type": 7, + "codename": "add_appgroup" + } +}, { + "model": "auth.permission", + "pk": 26, + "fields": { + "name": "Can change application group", + "content_type": 7, + "codename": "change_appgroup" + } +}, { + "model": "auth.permission", + "pk": 27, + "fields": { + "name": "Can delete application group", + "content_type": 7, + "codename": "delete_appgroup" + } +}, { + "model": "auth.permission", + "pk": 28, + "fields": { + "name": "Can view application group", + "content_type": 7, + "codename": "view_appgroup" + } +}, { + "model": "auth.permission", + "pk": 29, + "fields": { + "name": "Can add application link", + "content_type": 8, + "codename": "add_applink" + } +}, { + "model": "auth.permission", + "pk": 30, + "fields": { + "name": "Can change application link", + "content_type": 8, + "codename": "change_applink" + } +}, { + "model": "auth.permission", + "pk": 31, + "fields": { + "name": "Can delete application link", + "content_type": 8, + "codename": "delete_applink" + } +}, { + "model": "auth.permission", + "pk": 32, + "fields": { + "name": "Can view application link", + "content_type": 8, + "codename": "view_applink" + } +}, { + "model": "auth.permission", + "pk": 33, + "fields": { + "name": "Can add log entry", + "content_type": 9, + "codename": "add_logentry" + } +}, { + "model": "auth.permission", + "pk": 34, + "fields": { + "name": "Can change log entry", + "content_type": 9, + "codename": "change_logentry" + } +}, { + "model": "auth.permission", + "pk": 35, + "fields": { + "name": "Can delete log entry", + "content_type": 9, + "codename": "delete_logentry" + } +}, { + "model": "auth.permission", + "pk": 36, + "fields": { + "name": "Can view log entry", + "content_type": 9, + "codename": "view_logentry" + } +}, { + "model": "auth.permission", + "pk": 37, + "fields": { + "name": "Can add access attempt", + "content_type": 10, + "codename": "add_accessattempt" + } +}, { + "model": "auth.permission", + "pk": 38, + "fields": { + "name": "Can change access attempt", + "content_type": 10, + "codename": "change_accessattempt" + } +}, { + "model": "auth.permission", + "pk": 39, + "fields": { + "name": "Can delete access attempt", + "content_type": 10, + "codename": "delete_accessattempt" + } +}, { + "model": "auth.permission", + "pk": 40, + "fields": { + "name": "Can view access attempt", + "content_type": 10, + "codename": "view_accessattempt" + } +}, { + "model": "auth.permission", + "pk": 41, + "fields": { + "name": "Can add access log", + "content_type": 11, + "codename": "add_accesslog" + } +}, { + "model": "auth.permission", + "pk": 42, + "fields": { + "name": "Can change access log", + "content_type": 11, + "codename": "change_accesslog" + } +}, { + "model": "auth.permission", + "pk": 43, + "fields": { + "name": "Can delete access log", + "content_type": 11, + "codename": "delete_accesslog" + } +}, { + "model": "auth.permission", + "pk": 44, + "fields": { + "name": "Can view access log", + "content_type": 11, + "codename": "view_accesslog" + } +}, { + "model": "auth.permission", + "pk": 45, + "fields": { + "name": "Can add ADFS Configuration", + "content_type": 12, + "codename": "add_adfsconfig" + } +}, { + "model": "auth.permission", + "pk": 46, + "fields": { + "name": "Can change ADFS Configuration", + "content_type": 12, + "codename": "change_adfsconfig" + } +}, { + "model": "auth.permission", + "pk": 47, + "fields": { + "name": "Can delete ADFS Configuration", + "content_type": 12, + "codename": "delete_adfsconfig" + } +}, { + "model": "auth.permission", + "pk": 48, + "fields": { + "name": "Can view ADFS Configuration", + "content_type": 12, + "codename": "view_adfsconfig" + } +}, { + "model": "auth.permission", + "pk": 49, + "fields": { + "name": "Can add Logging", + "content_type": 13, + "codename": "add_statuslog" + } +}, { + "model": "auth.permission", + "pk": 50, + "fields": { + "name": "Can change Logging", + "content_type": 13, + "codename": "change_statuslog" + } +}, { + "model": "auth.permission", + "pk": 51, + "fields": { + "name": "Can delete Logging", + "content_type": 13, + "codename": "delete_statuslog" + } +}, { + "model": "auth.permission", + "pk": 52, + "fields": { + "name": "Can view Logging", + "content_type": 13, + "codename": "view_statuslog" + } +}, { + "model": "auth.permission", + "pk": 53, + "fields": { + "name": "Can add cors model", + "content_type": 14, + "codename": "add_corsmodel" + } +}, { + "model": "auth.permission", + "pk": 54, + "fields": { + "name": "Can change cors model", + "content_type": 14, + "codename": "change_corsmodel" + } +}, { + "model": "auth.permission", + "pk": 55, + "fields": { + "name": "Can delete cors model", + "content_type": 14, + "codename": "delete_corsmodel" + } +}, { + "model": "auth.permission", + "pk": 56, + "fields": { + "name": "Can view cors model", + "content_type": 14, + "codename": "view_corsmodel" + } +}, { + "model": "auth.permission", + "pk": 57, + "fields": { + "name": "Can add client credential", + "content_type": 15, + "codename": "add_jwtsecret" + } +}, { + "model": "auth.permission", + "pk": 58, + "fields": { + "name": "Can change client credential", + "content_type": 15, + "codename": "change_jwtsecret" + } +}, { + "model": "auth.permission", + "pk": 59, + "fields": { + "name": "Can delete client credential", + "content_type": 15, + "codename": "delete_jwtsecret" + } +}, { + "model": "auth.permission", + "pk": 60, + "fields": { + "name": "Can view client credential", + "content_type": 15, + "codename": "view_jwtsecret" + } +}, { + "model": "auth.permission", + "pk": 61, + "fields": { + "name": "Can add external API credential", + "content_type": 16, + "codename": "add_apicredential" + } +}, { + "model": "auth.permission", + "pk": 62, + "fields": { + "name": "Can change external API credential", + "content_type": 16, + "codename": "change_apicredential" + } +}, { + "model": "auth.permission", + "pk": 63, + "fields": { + "name": "Can delete external API credential", + "content_type": 16, + "codename": "delete_apicredential" + } +}, { + "model": "auth.permission", + "pk": 64, + "fields": { + "name": "Can view external API credential", + "content_type": 16, + "codename": "view_apicredential" + } +}, { + "model": "auth.permission", + "pk": 65, + "fields": { + "name": "Can add Autorisatiecomponentconfiguratie", + "content_type": 17, + "codename": "add_authorizationsconfig" + } +}, { + "model": "auth.permission", + "pk": 66, + "fields": { + "name": "Can change Autorisatiecomponentconfiguratie", + "content_type": 17, + "codename": "change_authorizationsconfig" + } +}, { + "model": "auth.permission", + "pk": 67, + "fields": { + "name": "Can delete Autorisatiecomponentconfiguratie", + "content_type": 17, + "codename": "delete_authorizationsconfig" + } +}, { + "model": "auth.permission", + "pk": 68, + "fields": { + "name": "Can view Autorisatiecomponentconfiguratie", + "content_type": 17, + "codename": "view_authorizationsconfig" + } +}, { + "model": "auth.permission", + "pk": 69, + "fields": { + "name": "Can add applicatie", + "content_type": 18, + "codename": "add_applicatie" + } +}, { + "model": "auth.permission", + "pk": 70, + "fields": { + "name": "Can change applicatie", + "content_type": 18, + "codename": "change_applicatie" + } +}, { + "model": "auth.permission", + "pk": 71, + "fields": { + "name": "Can delete applicatie", + "content_type": 18, + "codename": "delete_applicatie" + } +}, { + "model": "auth.permission", + "pk": 72, + "fields": { + "name": "Can view applicatie", + "content_type": 18, + "codename": "view_applicatie" + } +}, { + "model": "auth.permission", + "pk": 73, + "fields": { + "name": "Can add autorisatie", + "content_type": 19, + "codename": "add_autorisatie" + } +}, { + "model": "auth.permission", + "pk": 74, + "fields": { + "name": "Can change autorisatie", + "content_type": 19, + "codename": "change_autorisatie" + } +}, { + "model": "auth.permission", + "pk": 75, + "fields": { + "name": "Can delete autorisatie", + "content_type": 19, + "codename": "delete_autorisatie" + } +}, { + "model": "auth.permission", + "pk": 76, + "fields": { + "name": "Can view autorisatie", + "content_type": 19, + "codename": "view_autorisatie" + } +}, { + "model": "auth.permission", + "pk": 77, + "fields": { + "name": "Can add audit trail", + "content_type": 20, + "codename": "add_audittrail" + } +}, { + "model": "auth.permission", + "pk": 78, + "fields": { + "name": "Can change audit trail", + "content_type": 20, + "codename": "change_audittrail" + } +}, { + "model": "auth.permission", + "pk": 79, + "fields": { + "name": "Can delete audit trail", + "content_type": 20, + "codename": "delete_audittrail" + } +}, { + "model": "auth.permission", + "pk": 80, + "fields": { + "name": "Can view audit trail", + "content_type": 20, + "codename": "view_audittrail" + } +}, { + "model": "auth.permission", + "pk": 81, + "fields": { + "name": "Can add Notificatiescomponentconfiguratie", + "content_type": 21, + "codename": "add_notificationsconfig" + } +}, { + "model": "auth.permission", + "pk": 82, + "fields": { + "name": "Can change Notificatiescomponentconfiguratie", + "content_type": 21, + "codename": "change_notificationsconfig" + } +}, { + "model": "auth.permission", + "pk": 83, + "fields": { + "name": "Can delete Notificatiescomponentconfiguratie", + "content_type": 21, + "codename": "delete_notificationsconfig" + } +}, { + "model": "auth.permission", + "pk": 84, + "fields": { + "name": "Can view Notificatiescomponentconfiguratie", + "content_type": 21, + "codename": "view_notificationsconfig" + } +}, { + "model": "auth.permission", + "pk": 85, + "fields": { + "name": "Can add Webhook subscription", + "content_type": 22, + "codename": "add_subscription" + } +}, { + "model": "auth.permission", + "pk": 86, + "fields": { + "name": "Can change Webhook subscription", + "content_type": 22, + "codename": "change_subscription" + } +}, { + "model": "auth.permission", + "pk": 87, + "fields": { + "name": "Can delete Webhook subscription", + "content_type": 22, + "codename": "delete_subscription" + } +}, { + "model": "auth.permission", + "pk": 88, + "fields": { + "name": "Can view Webhook subscription", + "content_type": 22, + "codename": "view_subscription" + } +}, { + "model": "auth.permission", + "pk": 89, + "fields": { + "name": "Can add URL rewrite", + "content_type": 23, + "codename": "add_urlrewrite" + } +}, { + "model": "auth.permission", + "pk": 90, + "fields": { + "name": "Can change URL rewrite", + "content_type": 23, + "codename": "change_urlrewrite" + } +}, { + "model": "auth.permission", + "pk": 91, + "fields": { + "name": "Can delete URL rewrite", + "content_type": 23, + "codename": "delete_urlrewrite" + } +}, { + "model": "auth.permission", + "pk": 92, + "fields": { + "name": "Can view URL rewrite", + "content_type": 23, + "codename": "view_urlrewrite" + } +}, { + "model": "auth.permission", + "pk": 93, + "fields": { + "name": "Can add service", + "content_type": 24, + "codename": "add_service" + } +}, { + "model": "auth.permission", + "pk": 94, + "fields": { + "name": "Can change service", + "content_type": 24, + "codename": "change_service" + } +}, { + "model": "auth.permission", + "pk": 95, + "fields": { + "name": "Can delete service", + "content_type": 24, + "codename": "delete_service" + } +}, { + "model": "auth.permission", + "pk": 96, + "fields": { + "name": "Can view service", + "content_type": 24, + "codename": "view_service" + } +}, { + "model": "auth.permission", + "pk": 97, + "fields": { + "name": "Can add NLX configuration", + "content_type": 25, + "codename": "add_nlxconfig" + } +}, { + "model": "auth.permission", + "pk": 98, + "fields": { + "name": "Can change NLX configuration", + "content_type": 25, + "codename": "change_nlxconfig" + } +}, { + "model": "auth.permission", + "pk": 99, + "fields": { + "name": "Can delete NLX configuration", + "content_type": 25, + "codename": "delete_nlxconfig" + } +}, { + "model": "auth.permission", + "pk": 100, + "fields": { + "name": "Can view NLX configuration", + "content_type": 25, + "codename": "view_nlxconfig" + } +}, { + "model": "auth.permission", + "pk": 101, + "fields": { + "name": "Can add CMIS Configuration", + "content_type": 26, + "codename": "add_cmisconfig" + } +}, { + "model": "auth.permission", + "pk": 102, + "fields": { + "name": "Can change CMIS Configuration", + "content_type": 26, + "codename": "change_cmisconfig" + } +}, { + "model": "auth.permission", + "pk": 103, + "fields": { + "name": "Can delete CMIS Configuration", + "content_type": 26, + "codename": "delete_cmisconfig" + } +}, { + "model": "auth.permission", + "pk": 104, + "fields": { + "name": "Can view CMIS Configuration", + "content_type": 26, + "codename": "view_cmisconfig" + } +}, { + "model": "auth.permission", + "pk": 105, + "fields": { + "name": "Can add user", + "content_type": 27, + "codename": "add_user" + } +}, { + "model": "auth.permission", + "pk": 106, + "fields": { + "name": "Can change user", + "content_type": 27, + "codename": "change_user" + } +}, { + "model": "auth.permission", + "pk": 107, + "fields": { + "name": "Can delete user", + "content_type": 27, + "codename": "delete_user" + } +}, { + "model": "auth.permission", + "pk": 108, + "fields": { + "name": "Can view user", + "content_type": 27, + "codename": "view_user" + } +}, { + "model": "auth.permission", + "pk": 109, + "fields": { + "name": "Can add autorisatiespec", + "content_type": 28, + "codename": "add_autorisatiespec" + } +}, { + "model": "auth.permission", + "pk": 110, + "fields": { + "name": "Can change autorisatiespec", + "content_type": 28, + "codename": "change_autorisatiespec" + } +}, { + "model": "auth.permission", + "pk": 111, + "fields": { + "name": "Can delete autorisatiespec", + "content_type": 28, + "codename": "delete_autorisatiespec" + } +}, { + "model": "auth.permission", + "pk": 112, + "fields": { + "name": "Can view autorisatiespec", + "content_type": 28, + "codename": "view_autorisatiespec" + } +}, { + "model": "auth.permission", + "pk": 113, + "fields": { + "name": "Can add zaak", + "content_type": 29, + "codename": "add_zaak" + } +}, { + "model": "auth.permission", + "pk": 114, + "fields": { + "name": "Can change zaak", + "content_type": 29, + "codename": "change_zaak" + } +}, { + "model": "auth.permission", + "pk": 115, + "fields": { + "name": "Can delete zaak", + "content_type": 29, + "codename": "delete_zaak" + } +}, { + "model": "auth.permission", + "pk": 116, + "fields": { + "name": "Can view zaak", + "content_type": 29, + "codename": "view_zaak" + } +}, { + "model": "auth.permission", + "pk": 117, + "fields": { + "name": "Can add relevante zaak relatie", + "content_type": 30, + "codename": "add_relevantezaakrelatie" + } +}, { + "model": "auth.permission", + "pk": 118, + "fields": { + "name": "Can change relevante zaak relatie", + "content_type": 30, + "codename": "change_relevantezaakrelatie" + } +}, { + "model": "auth.permission", + "pk": 119, + "fields": { + "name": "Can delete relevante zaak relatie", + "content_type": 30, + "codename": "delete_relevantezaakrelatie" + } +}, { + "model": "auth.permission", + "pk": 120, + "fields": { + "name": "Can view relevante zaak relatie", + "content_type": 30, + "codename": "view_relevantezaakrelatie" + } +}, { + "model": "auth.permission", + "pk": 121, + "fields": { + "name": "Can add status", + "content_type": 31, + "codename": "add_status" + } +}, { + "model": "auth.permission", + "pk": 122, + "fields": { + "name": "Can change status", + "content_type": 31, + "codename": "change_status" + } +}, { + "model": "auth.permission", + "pk": 123, + "fields": { + "name": "Can delete status", + "content_type": 31, + "codename": "delete_status" + } +}, { + "model": "auth.permission", + "pk": 124, + "fields": { + "name": "Can view status", + "content_type": 31, + "codename": "view_status" + } +}, { + "model": "auth.permission", + "pk": 125, + "fields": { + "name": "Can add resultaat", + "content_type": 32, + "codename": "add_resultaat" + } +}, { + "model": "auth.permission", + "pk": 126, + "fields": { + "name": "Can change resultaat", + "content_type": 32, + "codename": "change_resultaat" + } +}, { + "model": "auth.permission", + "pk": 127, + "fields": { + "name": "Can delete resultaat", + "content_type": 32, + "codename": "delete_resultaat" + } +}, { + "model": "auth.permission", + "pk": 128, + "fields": { + "name": "Can view resultaat", + "content_type": 32, + "codename": "view_resultaat" + } +}, { + "model": "auth.permission", + "pk": 129, + "fields": { + "name": "Can add Rol", + "content_type": 33, + "codename": "add_rol" + } +}, { + "model": "auth.permission", + "pk": 130, + "fields": { + "name": "Can change Rol", + "content_type": 33, + "codename": "change_rol" + } +}, { + "model": "auth.permission", + "pk": 131, + "fields": { + "name": "Can delete Rol", + "content_type": 33, + "codename": "delete_rol" + } +}, { + "model": "auth.permission", + "pk": 132, + "fields": { + "name": "Can view Rol", + "content_type": 33, + "codename": "view_rol" + } +}, { + "model": "auth.permission", + "pk": 133, + "fields": { + "name": "Can add zaakobject", + "content_type": 34, + "codename": "add_zaakobject" + } +}, { + "model": "auth.permission", + "pk": 134, + "fields": { + "name": "Can change zaakobject", + "content_type": 34, + "codename": "change_zaakobject" + } +}, { + "model": "auth.permission", + "pk": 135, + "fields": { + "name": "Can delete zaakobject", + "content_type": 34, + "codename": "delete_zaakobject" + } +}, { + "model": "auth.permission", + "pk": 136, + "fields": { + "name": "Can view zaakobject", + "content_type": 34, + "codename": "view_zaakobject" + } +}, { + "model": "auth.permission", + "pk": 137, + "fields": { + "name": "Can add zaakeigenschap", + "content_type": 35, + "codename": "add_zaakeigenschap" + } +}, { + "model": "auth.permission", + "pk": 138, + "fields": { + "name": "Can change zaakeigenschap", + "content_type": 35, + "codename": "change_zaakeigenschap" + } +}, { + "model": "auth.permission", + "pk": 139, + "fields": { + "name": "Can delete zaakeigenschap", + "content_type": 35, + "codename": "delete_zaakeigenschap" + } +}, { + "model": "auth.permission", + "pk": 140, + "fields": { + "name": "Can view zaakeigenschap", + "content_type": 35, + "codename": "view_zaakeigenschap" + } +}, { + "model": "auth.permission", + "pk": 141, + "fields": { + "name": "Can add zaak kenmerk", + "content_type": 36, + "codename": "add_zaakkenmerk" + } +}, { + "model": "auth.permission", + "pk": 142, + "fields": { + "name": "Can change zaak kenmerk", + "content_type": 36, + "codename": "change_zaakkenmerk" + } +}, { + "model": "auth.permission", + "pk": 143, + "fields": { + "name": "Can delete zaak kenmerk", + "content_type": 36, + "codename": "delete_zaakkenmerk" + } +}, { + "model": "auth.permission", + "pk": 144, + "fields": { + "name": "Can view zaak kenmerk", + "content_type": 36, + "codename": "view_zaakkenmerk" + } +}, { + "model": "auth.permission", + "pk": 145, + "fields": { + "name": "Can add zaakinformatieobject", + "content_type": 37, + "codename": "add_zaakinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 146, + "fields": { + "name": "Can change zaakinformatieobject", + "content_type": 37, + "codename": "change_zaakinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 147, + "fields": { + "name": "Can delete zaakinformatieobject", + "content_type": 37, + "codename": "delete_zaakinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 148, + "fields": { + "name": "Can view zaakinformatieobject", + "content_type": 37, + "codename": "view_zaakinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 149, + "fields": { + "name": "Can add klantcontact", + "content_type": 38, + "codename": "add_klantcontact" + } +}, { + "model": "auth.permission", + "pk": 150, + "fields": { + "name": "Can change klantcontact", + "content_type": 38, + "codename": "change_klantcontact" + } +}, { + "model": "auth.permission", + "pk": 151, + "fields": { + "name": "Can delete klantcontact", + "content_type": 38, + "codename": "delete_klantcontact" + } +}, { + "model": "auth.permission", + "pk": 152, + "fields": { + "name": "Can view klantcontact", + "content_type": 38, + "codename": "view_klantcontact" + } +}, { + "model": "auth.permission", + "pk": 153, + "fields": { + "name": "Can add zaakbesluit", + "content_type": 39, + "codename": "add_zaakbesluit" + } +}, { + "model": "auth.permission", + "pk": 154, + "fields": { + "name": "Can change zaakbesluit", + "content_type": 39, + "codename": "change_zaakbesluit" + } +}, { + "model": "auth.permission", + "pk": 155, + "fields": { + "name": "Can delete zaakbesluit", + "content_type": 39, + "codename": "delete_zaakbesluit" + } +}, { + "model": "auth.permission", + "pk": 156, + "fields": { + "name": "Can view zaakbesluit", + "content_type": 39, + "codename": "view_zaakbesluit" + } +}, { + "model": "auth.permission", + "pk": 157, + "fields": { + "name": "Can add buurt", + "content_type": 40, + "codename": "add_buurt" + } +}, { + "model": "auth.permission", + "pk": 158, + "fields": { + "name": "Can change buurt", + "content_type": 40, + "codename": "change_buurt" + } +}, { + "model": "auth.permission", + "pk": 159, + "fields": { + "name": "Can delete buurt", + "content_type": 40, + "codename": "delete_buurt" + } +}, { + "model": "auth.permission", + "pk": 160, + "fields": { + "name": "Can view buurt", + "content_type": 40, + "codename": "view_buurt" + } +}, { + "model": "auth.permission", + "pk": 161, + "fields": { + "name": "Can add gemeente", + "content_type": 41, + "codename": "add_gemeente" + } +}, { + "model": "auth.permission", + "pk": 162, + "fields": { + "name": "Can change gemeente", + "content_type": 41, + "codename": "change_gemeente" + } +}, { + "model": "auth.permission", + "pk": 163, + "fields": { + "name": "Can delete gemeente", + "content_type": 41, + "codename": "delete_gemeente" + } +}, { + "model": "auth.permission", + "pk": 164, + "fields": { + "name": "Can view gemeente", + "content_type": 41, + "codename": "view_gemeente" + } +}, { + "model": "auth.permission", + "pk": 165, + "fields": { + "name": "Can add gemeentelijke openbare ruimte", + "content_type": 42, + "codename": "add_gemeentelijkeopenbareruimte" + } +}, { + "model": "auth.permission", + "pk": 166, + "fields": { + "name": "Can change gemeentelijke openbare ruimte", + "content_type": 42, + "codename": "change_gemeentelijkeopenbareruimte" + } +}, { + "model": "auth.permission", + "pk": 167, + "fields": { + "name": "Can delete gemeentelijke openbare ruimte", + "content_type": 42, + "codename": "delete_gemeentelijkeopenbareruimte" + } +}, { + "model": "auth.permission", + "pk": 168, + "fields": { + "name": "Can view gemeentelijke openbare ruimte", + "content_type": 42, + "codename": "view_gemeentelijkeopenbareruimte" + } +}, { + "model": "auth.permission", + "pk": 169, + "fields": { + "name": "Can add huishouden", + "content_type": 43, + "codename": "add_huishouden" + } +}, { + "model": "auth.permission", + "pk": 170, + "fields": { + "name": "Can change huishouden", + "content_type": 43, + "codename": "change_huishouden" + } +}, { + "model": "auth.permission", + "pk": 171, + "fields": { + "name": "Can delete huishouden", + "content_type": 43, + "codename": "delete_huishouden" + } +}, { + "model": "auth.permission", + "pk": 172, + "fields": { + "name": "Can view huishouden", + "content_type": 43, + "codename": "view_huishouden" + } +}, { + "model": "auth.permission", + "pk": 173, + "fields": { + "name": "Can add inrichtingselement", + "content_type": 44, + "codename": "add_inrichtingselement" + } +}, { + "model": "auth.permission", + "pk": 174, + "fields": { + "name": "Can change inrichtingselement", + "content_type": 44, + "codename": "change_inrichtingselement" + } +}, { + "model": "auth.permission", + "pk": 175, + "fields": { + "name": "Can delete inrichtingselement", + "content_type": 44, + "codename": "delete_inrichtingselement" + } +}, { + "model": "auth.permission", + "pk": 176, + "fields": { + "name": "Can view inrichtingselement", + "content_type": 44, + "codename": "view_inrichtingselement" + } +}, { + "model": "auth.permission", + "pk": 177, + "fields": { + "name": "Can add kunstwerkdeel", + "content_type": 45, + "codename": "add_kunstwerkdeel" + } +}, { + "model": "auth.permission", + "pk": 178, + "fields": { + "name": "Can change kunstwerkdeel", + "content_type": 45, + "codename": "change_kunstwerkdeel" + } +}, { + "model": "auth.permission", + "pk": 179, + "fields": { + "name": "Can delete kunstwerkdeel", + "content_type": 45, + "codename": "delete_kunstwerkdeel" + } +}, { + "model": "auth.permission", + "pk": 180, + "fields": { + "name": "Can view kunstwerkdeel", + "content_type": 45, + "codename": "view_kunstwerkdeel" + } +}, { + "model": "auth.permission", + "pk": 181, + "fields": { + "name": "Can add maatschappelijke activiteit", + "content_type": 46, + "codename": "add_maatschappelijkeactiviteit" + } +}, { + "model": "auth.permission", + "pk": 182, + "fields": { + "name": "Can change maatschappelijke activiteit", + "content_type": 46, + "codename": "change_maatschappelijkeactiviteit" + } +}, { + "model": "auth.permission", + "pk": 183, + "fields": { + "name": "Can delete maatschappelijke activiteit", + "content_type": 46, + "codename": "delete_maatschappelijkeactiviteit" + } +}, { + "model": "auth.permission", + "pk": 184, + "fields": { + "name": "Can view maatschappelijke activiteit", + "content_type": 46, + "codename": "view_maatschappelijkeactiviteit" + } +}, { + "model": "auth.permission", + "pk": 185, + "fields": { + "name": "Can add openbare ruimte", + "content_type": 47, + "codename": "add_openbareruimte" + } +}, { + "model": "auth.permission", + "pk": 186, + "fields": { + "name": "Can change openbare ruimte", + "content_type": 47, + "codename": "change_openbareruimte" + } +}, { + "model": "auth.permission", + "pk": 187, + "fields": { + "name": "Can delete openbare ruimte", + "content_type": 47, + "codename": "delete_openbareruimte" + } +}, { + "model": "auth.permission", + "pk": 188, + "fields": { + "name": "Can view openbare ruimte", + "content_type": 47, + "codename": "view_openbareruimte" + } +}, { + "model": "auth.permission", + "pk": 189, + "fields": { + "name": "Can add pand", + "content_type": 48, + "codename": "add_pand" + } +}, { + "model": "auth.permission", + "pk": 190, + "fields": { + "name": "Can change pand", + "content_type": 48, + "codename": "change_pand" + } +}, { + "model": "auth.permission", + "pk": 191, + "fields": { + "name": "Can delete pand", + "content_type": 48, + "codename": "delete_pand" + } +}, { + "model": "auth.permission", + "pk": 192, + "fields": { + "name": "Can view pand", + "content_type": 48, + "codename": "view_pand" + } +}, { + "model": "auth.permission", + "pk": 193, + "fields": { + "name": "Can add spoorbaandeel", + "content_type": 49, + "codename": "add_spoorbaandeel" + } +}, { + "model": "auth.permission", + "pk": 194, + "fields": { + "name": "Can change spoorbaandeel", + "content_type": 49, + "codename": "change_spoorbaandeel" + } +}, { + "model": "auth.permission", + "pk": 195, + "fields": { + "name": "Can delete spoorbaandeel", + "content_type": 49, + "codename": "delete_spoorbaandeel" + } +}, { + "model": "auth.permission", + "pk": 196, + "fields": { + "name": "Can view spoorbaandeel", + "content_type": 49, + "codename": "view_spoorbaandeel" + } +}, { + "model": "auth.permission", + "pk": 197, + "fields": { + "name": "Can add terreindeel", + "content_type": 50, + "codename": "add_terreindeel" + } +}, { + "model": "auth.permission", + "pk": 198, + "fields": { + "name": "Can change terreindeel", + "content_type": 50, + "codename": "change_terreindeel" + } +}, { + "model": "auth.permission", + "pk": 199, + "fields": { + "name": "Can delete terreindeel", + "content_type": 50, + "codename": "delete_terreindeel" + } +}, { + "model": "auth.permission", + "pk": 200, + "fields": { + "name": "Can view terreindeel", + "content_type": 50, + "codename": "view_terreindeel" + } +}, { + "model": "auth.permission", + "pk": 201, + "fields": { + "name": "Can add waterdeel", + "content_type": 51, + "codename": "add_waterdeel" + } +}, { + "model": "auth.permission", + "pk": 202, + "fields": { + "name": "Can change waterdeel", + "content_type": 51, + "codename": "change_waterdeel" + } +}, { + "model": "auth.permission", + "pk": 203, + "fields": { + "name": "Can delete waterdeel", + "content_type": 51, + "codename": "delete_waterdeel" + } +}, { + "model": "auth.permission", + "pk": 204, + "fields": { + "name": "Can view waterdeel", + "content_type": 51, + "codename": "view_waterdeel" + } +}, { + "model": "auth.permission", + "pk": 205, + "fields": { + "name": "Can add wegdeel", + "content_type": 52, + "codename": "add_wegdeel" + } +}, { + "model": "auth.permission", + "pk": 206, + "fields": { + "name": "Can change wegdeel", + "content_type": 52, + "codename": "change_wegdeel" + } +}, { + "model": "auth.permission", + "pk": 207, + "fields": { + "name": "Can delete wegdeel", + "content_type": 52, + "codename": "delete_wegdeel" + } +}, { + "model": "auth.permission", + "pk": 208, + "fields": { + "name": "Can view wegdeel", + "content_type": 52, + "codename": "view_wegdeel" + } +}, { + "model": "auth.permission", + "pk": 209, + "fields": { + "name": "Can add wijk", + "content_type": 53, + "codename": "add_wijk" + } +}, { + "model": "auth.permission", + "pk": 210, + "fields": { + "name": "Can change wijk", + "content_type": 53, + "codename": "change_wijk" + } +}, { + "model": "auth.permission", + "pk": 211, + "fields": { + "name": "Can delete wijk", + "content_type": 53, + "codename": "delete_wijk" + } +}, { + "model": "auth.permission", + "pk": 212, + "fields": { + "name": "Can view wijk", + "content_type": 53, + "codename": "view_wijk" + } +}, { + "model": "auth.permission", + "pk": 213, + "fields": { + "name": "Can add woonplaats", + "content_type": 54, + "codename": "add_woonplaats" + } +}, { + "model": "auth.permission", + "pk": 214, + "fields": { + "name": "Can change woonplaats", + "content_type": 54, + "codename": "change_woonplaats" + } +}, { + "model": "auth.permission", + "pk": 215, + "fields": { + "name": "Can delete woonplaats", + "content_type": 54, + "codename": "delete_woonplaats" + } +}, { + "model": "auth.permission", + "pk": 216, + "fields": { + "name": "Can view woonplaats", + "content_type": 54, + "codename": "view_woonplaats" + } +}, { + "model": "auth.permission", + "pk": 217, + "fields": { + "name": "Can add overig", + "content_type": 55, + "codename": "add_overige" + } +}, { + "model": "auth.permission", + "pk": 218, + "fields": { + "name": "Can change overig", + "content_type": 55, + "codename": "change_overige" + } +}, { + "model": "auth.permission", + "pk": 219, + "fields": { + "name": "Can delete overig", + "content_type": 55, + "codename": "delete_overige" + } +}, { + "model": "auth.permission", + "pk": 220, + "fields": { + "name": "Can view overig", + "content_type": 55, + "codename": "view_overige" + } +}, { + "model": "auth.permission", + "pk": 221, + "fields": { + "name": "Can add terreingebouwd object", + "content_type": 56, + "codename": "add_terreingebouwdobject" + } +}, { + "model": "auth.permission", + "pk": 222, + "fields": { + "name": "Can change terreingebouwd object", + "content_type": 56, + "codename": "change_terreingebouwdobject" + } +}, { + "model": "auth.permission", + "pk": 223, + "fields": { + "name": "Can delete terreingebouwd object", + "content_type": 56, + "codename": "delete_terreingebouwdobject" + } +}, { + "model": "auth.permission", + "pk": 224, + "fields": { + "name": "Can view terreingebouwd object", + "content_type": 56, + "codename": "view_terreingebouwdobject" + } +}, { + "model": "auth.permission", + "pk": 225, + "fields": { + "name": "Can add WOZ-deelobject", + "content_type": 57, + "codename": "add_wozdeelobject" + } +}, { + "model": "auth.permission", + "pk": 226, + "fields": { + "name": "Can change WOZ-deelobject", + "content_type": 57, + "codename": "change_wozdeelobject" + } +}, { + "model": "auth.permission", + "pk": 227, + "fields": { + "name": "Can delete WOZ-deelobject", + "content_type": 57, + "codename": "delete_wozdeelobject" + } +}, { + "model": "auth.permission", + "pk": 228, + "fields": { + "name": "Can view WOZ-deelobject", + "content_type": 57, + "codename": "view_wozdeelobject" + } +}, { + "model": "auth.permission", + "pk": 229, + "fields": { + "name": "Can add WOZ-waarde", + "content_type": 58, + "codename": "add_wozwaarde" + } +}, { + "model": "auth.permission", + "pk": 230, + "fields": { + "name": "Can change WOZ-waarde", + "content_type": 58, + "codename": "change_wozwaarde" + } +}, { + "model": "auth.permission", + "pk": 231, + "fields": { + "name": "Can delete WOZ-waarde", + "content_type": 58, + "codename": "delete_wozwaarde" + } +}, { + "model": "auth.permission", + "pk": 232, + "fields": { + "name": "Can view WOZ-waarde", + "content_type": 58, + "codename": "view_wozwaarde" + } +}, { + "model": "auth.permission", + "pk": 233, + "fields": { + "name": "Can add WOZ-object", + "content_type": 59, + "codename": "add_wozobject" + } +}, { + "model": "auth.permission", + "pk": 234, + "fields": { + "name": "Can change WOZ-object", + "content_type": 59, + "codename": "change_wozobject" + } +}, { + "model": "auth.permission", + "pk": 235, + "fields": { + "name": "Can delete WOZ-object", + "content_type": 59, + "codename": "delete_wozobject" + } +}, { + "model": "auth.permission", + "pk": 236, + "fields": { + "name": "Can view WOZ-object", + "content_type": 59, + "codename": "view_wozobject" + } +}, { + "model": "auth.permission", + "pk": 237, + "fields": { + "name": "Can add zakelijk recht", + "content_type": 60, + "codename": "add_zakelijkrecht" + } +}, { + "model": "auth.permission", + "pk": 238, + "fields": { + "name": "Can change zakelijk recht", + "content_type": 60, + "codename": "change_zakelijkrecht" + } +}, { + "model": "auth.permission", + "pk": 239, + "fields": { + "name": "Can delete zakelijk recht", + "content_type": 60, + "codename": "delete_zakelijkrecht" + } +}, { + "model": "auth.permission", + "pk": 240, + "fields": { + "name": "Can view zakelijk recht", + "content_type": 60, + "codename": "view_zakelijkrecht" + } +}, { + "model": "auth.permission", + "pk": 241, + "fields": { + "name": "Can add kadastrale onroerende zaak", + "content_type": 61, + "codename": "add_kadastraleonroerendezaak" + } +}, { + "model": "auth.permission", + "pk": 242, + "fields": { + "name": "Can change kadastrale onroerende zaak", + "content_type": 61, + "codename": "change_kadastraleonroerendezaak" + } +}, { + "model": "auth.permission", + "pk": 243, + "fields": { + "name": "Can delete kadastrale onroerende zaak", + "content_type": 61, + "codename": "delete_kadastraleonroerendezaak" + } +}, { + "model": "auth.permission", + "pk": 244, + "fields": { + "name": "Can view kadastrale onroerende zaak", + "content_type": 61, + "codename": "view_kadastraleonroerendezaak" + } +}, { + "model": "auth.permission", + "pk": 245, + "fields": { + "name": "Can add zakelijk recht heeft als gerechtigde", + "content_type": 62, + "codename": "add_zakelijkrechtheeftalsgerechtigde" + } +}, { + "model": "auth.permission", + "pk": 246, + "fields": { + "name": "Can change zakelijk recht heeft als gerechtigde", + "content_type": 62, + "codename": "change_zakelijkrechtheeftalsgerechtigde" + } +}, { + "model": "auth.permission", + "pk": 247, + "fields": { + "name": "Can delete zakelijk recht heeft als gerechtigde", + "content_type": 62, + "codename": "delete_zakelijkrechtheeftalsgerechtigde" + } +}, { + "model": "auth.permission", + "pk": 248, + "fields": { + "name": "Can view zakelijk recht heeft als gerechtigde", + "content_type": 62, + "codename": "view_zakelijkrechtheeftalsgerechtigde" + } +}, { + "model": "auth.permission", + "pk": 249, + "fields": { + "name": "Can add adres", + "content_type": 63, + "codename": "add_adres" + } +}, { + "model": "auth.permission", + "pk": 250, + "fields": { + "name": "Can change adres", + "content_type": 63, + "codename": "change_adres" + } +}, { + "model": "auth.permission", + "pk": 251, + "fields": { + "name": "Can delete adres", + "content_type": 63, + "codename": "delete_adres" + } +}, { + "model": "auth.permission", + "pk": 252, + "fields": { + "name": "Can view adres", + "content_type": 63, + "codename": "view_adres" + } +}, { + "model": "auth.permission", + "pk": 253, + "fields": { + "name": "Can add natuurlijk persoon", + "content_type": 64, + "codename": "add_natuurlijkpersoon" + } +}, { + "model": "auth.permission", + "pk": 254, + "fields": { + "name": "Can change natuurlijk persoon", + "content_type": 64, + "codename": "change_natuurlijkpersoon" + } +}, { + "model": "auth.permission", + "pk": 255, + "fields": { + "name": "Can delete natuurlijk persoon", + "content_type": 64, + "codename": "delete_natuurlijkpersoon" + } +}, { + "model": "auth.permission", + "pk": 256, + "fields": { + "name": "Can view natuurlijk persoon", + "content_type": 64, + "codename": "view_natuurlijkpersoon" + } +}, { + "model": "auth.permission", + "pk": 257, + "fields": { + "name": "Can add niet-natuurlijk persoon", + "content_type": 65, + "codename": "add_nietnatuurlijkpersoon" + } +}, { + "model": "auth.permission", + "pk": 258, + "fields": { + "name": "Can change niet-natuurlijk persoon", + "content_type": 65, + "codename": "change_nietnatuurlijkpersoon" + } +}, { + "model": "auth.permission", + "pk": 259, + "fields": { + "name": "Can delete niet-natuurlijk persoon", + "content_type": 65, + "codename": "delete_nietnatuurlijkpersoon" + } +}, { + "model": "auth.permission", + "pk": 260, + "fields": { + "name": "Can view niet-natuurlijk persoon", + "content_type": 65, + "codename": "view_nietnatuurlijkpersoon" + } +}, { + "model": "auth.permission", + "pk": 261, + "fields": { + "name": "Can add vestiging", + "content_type": 66, + "codename": "add_vestiging" + } +}, { + "model": "auth.permission", + "pk": 262, + "fields": { + "name": "Can change vestiging", + "content_type": 66, + "codename": "change_vestiging" + } +}, { + "model": "auth.permission", + "pk": 263, + "fields": { + "name": "Can delete vestiging", + "content_type": 66, + "codename": "delete_vestiging" + } +}, { + "model": "auth.permission", + "pk": 264, + "fields": { + "name": "Can view vestiging", + "content_type": 66, + "codename": "view_vestiging" + } +}, { + "model": "auth.permission", + "pk": 265, + "fields": { + "name": "Can add organisatorische eenheid", + "content_type": 67, + "codename": "add_organisatorischeeenheid" + } +}, { + "model": "auth.permission", + "pk": 266, + "fields": { + "name": "Can change organisatorische eenheid", + "content_type": 67, + "codename": "change_organisatorischeeenheid" + } +}, { + "model": "auth.permission", + "pk": 267, + "fields": { + "name": "Can delete organisatorische eenheid", + "content_type": 67, + "codename": "delete_organisatorischeeenheid" + } +}, { + "model": "auth.permission", + "pk": 268, + "fields": { + "name": "Can view organisatorische eenheid", + "content_type": 67, + "codename": "view_organisatorischeeenheid" + } +}, { + "model": "auth.permission", + "pk": 269, + "fields": { + "name": "Can add medewerker", + "content_type": 68, + "codename": "add_medewerker" + } +}, { + "model": "auth.permission", + "pk": 270, + "fields": { + "name": "Can change medewerker", + "content_type": 68, + "codename": "change_medewerker" + } +}, { + "model": "auth.permission", + "pk": 271, + "fields": { + "name": "Can delete medewerker", + "content_type": 68, + "codename": "delete_medewerker" + } +}, { + "model": "auth.permission", + "pk": 272, + "fields": { + "name": "Can view medewerker", + "content_type": 68, + "codename": "view_medewerker" + } +}, { + "model": "auth.permission", + "pk": 273, + "fields": { + "name": "Can add sub verblijf buitenland", + "content_type": 69, + "codename": "add_subverblijfbuitenland" + } +}, { + "model": "auth.permission", + "pk": 274, + "fields": { + "name": "Can change sub verblijf buitenland", + "content_type": 69, + "codename": "change_subverblijfbuitenland" + } +}, { + "model": "auth.permission", + "pk": 275, + "fields": { + "name": "Can delete sub verblijf buitenland", + "content_type": 69, + "codename": "delete_subverblijfbuitenland" + } +}, { + "model": "auth.permission", + "pk": 276, + "fields": { + "name": "Can view sub verblijf buitenland", + "content_type": 69, + "codename": "view_subverblijfbuitenland" + } +}, { + "model": "auth.permission", + "pk": 277, + "fields": { + "name": "Can add besluit", + "content_type": 70, + "codename": "add_besluit" + } +}, { + "model": "auth.permission", + "pk": 278, + "fields": { + "name": "Can change besluit", + "content_type": 70, + "codename": "change_besluit" + } +}, { + "model": "auth.permission", + "pk": 279, + "fields": { + "name": "Can delete besluit", + "content_type": 70, + "codename": "delete_besluit" + } +}, { + "model": "auth.permission", + "pk": 280, + "fields": { + "name": "Can view besluit", + "content_type": 70, + "codename": "view_besluit" + } +}, { + "model": "auth.permission", + "pk": 281, + "fields": { + "name": "Can add besluitinformatieobject", + "content_type": 71, + "codename": "add_besluitinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 282, + "fields": { + "name": "Can change besluitinformatieobject", + "content_type": 71, + "codename": "change_besluitinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 283, + "fields": { + "name": "Can delete besluitinformatieobject", + "content_type": 71, + "codename": "delete_besluitinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 284, + "fields": { + "name": "Can view besluitinformatieobject", + "content_type": 71, + "codename": "view_besluitinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 285, + "fields": { + "name": "Can add enkelvoudig informatie object canonical", + "content_type": 72, + "codename": "add_enkelvoudiginformatieobjectcanonical" + } +}, { + "model": "auth.permission", + "pk": 286, + "fields": { + "name": "Can change enkelvoudig informatie object canonical", + "content_type": 72, + "codename": "change_enkelvoudiginformatieobjectcanonical" + } +}, { + "model": "auth.permission", + "pk": 287, + "fields": { + "name": "Can delete enkelvoudig informatie object canonical", + "content_type": 72, + "codename": "delete_enkelvoudiginformatieobjectcanonical" + } +}, { + "model": "auth.permission", + "pk": 288, + "fields": { + "name": "Can view enkelvoudig informatie object canonical", + "content_type": 72, + "codename": "view_enkelvoudiginformatieobjectcanonical" + } +}, { + "model": "auth.permission", + "pk": 289, + "fields": { + "name": "Can add Document", + "content_type": 73, + "codename": "add_enkelvoudiginformatieobject" + } +}, { + "model": "auth.permission", + "pk": 290, + "fields": { + "name": "Can change Document", + "content_type": 73, + "codename": "change_enkelvoudiginformatieobject" + } +}, { + "model": "auth.permission", + "pk": 291, + "fields": { + "name": "Can delete Document", + "content_type": 73, + "codename": "delete_enkelvoudiginformatieobject" + } +}, { + "model": "auth.permission", + "pk": 292, + "fields": { + "name": "Can view Document", + "content_type": 73, + "codename": "view_enkelvoudiginformatieobject" + } +}, { + "model": "auth.permission", + "pk": 293, + "fields": { + "name": "Can add gebruiksrecht informatieobject", + "content_type": 74, + "codename": "add_gebruiksrechten" + } +}, { + "model": "auth.permission", + "pk": 294, + "fields": { + "name": "Can change gebruiksrecht informatieobject", + "content_type": 74, + "codename": "change_gebruiksrechten" + } +}, { + "model": "auth.permission", + "pk": 295, + "fields": { + "name": "Can delete gebruiksrecht informatieobject", + "content_type": 74, + "codename": "delete_gebruiksrechten" + } +}, { + "model": "auth.permission", + "pk": 296, + "fields": { + "name": "Can view gebruiksrecht informatieobject", + "content_type": 74, + "codename": "view_gebruiksrechten" + } +}, { + "model": "auth.permission", + "pk": 297, + "fields": { + "name": "Can add objectinformatieobject", + "content_type": 75, + "codename": "add_objectinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 298, + "fields": { + "name": "Can change objectinformatieobject", + "content_type": 75, + "codename": "change_objectinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 299, + "fields": { + "name": "Can delete objectinformatieobject", + "content_type": 75, + "codename": "delete_objectinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 300, + "fields": { + "name": "Can view objectinformatieobject", + "content_type": 75, + "codename": "view_objectinformatieobject" + } +}, { + "model": "auth.permission", + "pk": 301, + "fields": { + "name": "Can add besluittype", + "content_type": 76, + "codename": "add_besluittype" + } +}, { + "model": "auth.permission", + "pk": 302, + "fields": { + "name": "Can change besluittype", + "content_type": 76, + "codename": "change_besluittype" + } +}, { + "model": "auth.permission", + "pk": 303, + "fields": { + "name": "Can delete besluittype", + "content_type": 76, + "codename": "delete_besluittype" + } +}, { + "model": "auth.permission", + "pk": 304, + "fields": { + "name": "Can view besluittype", + "content_type": 76, + "codename": "view_besluittype" + } +}, { + "model": "auth.permission", + "pk": 305, + "fields": { + "name": "Can add catalogus", + "content_type": 77, + "codename": "add_catalogus" + } +}, { + "model": "auth.permission", + "pk": 306, + "fields": { + "name": "Can change catalogus", + "content_type": 77, + "codename": "change_catalogus" + } +}, { + "model": "auth.permission", + "pk": 307, + "fields": { + "name": "Can delete catalogus", + "content_type": 77, + "codename": "delete_catalogus" + } +}, { + "model": "auth.permission", + "pk": 308, + "fields": { + "name": "Can view catalogus", + "content_type": 77, + "codename": "view_catalogus" + } +}, { + "model": "auth.permission", + "pk": 309, + "fields": { + "name": "Can add Eigenschap specificatie", + "content_type": 78, + "codename": "add_eigenschapspecificatie" + } +}, { + "model": "auth.permission", + "pk": 310, + "fields": { + "name": "Can change Eigenschap specificatie", + "content_type": 78, + "codename": "change_eigenschapspecificatie" + } +}, { + "model": "auth.permission", + "pk": 311, + "fields": { + "name": "Can delete Eigenschap specificatie", + "content_type": 78, + "codename": "delete_eigenschapspecificatie" + } +}, { + "model": "auth.permission", + "pk": 312, + "fields": { + "name": "Can view Eigenschap specificatie", + "content_type": 78, + "codename": "view_eigenschapspecificatie" + } +}, { + "model": "auth.permission", + "pk": 313, + "fields": { + "name": "Can add Eigenschap", + "content_type": 79, + "codename": "add_eigenschap" + } +}, { + "model": "auth.permission", + "pk": 314, + "fields": { + "name": "Can change Eigenschap", + "content_type": 79, + "codename": "change_eigenschap" + } +}, { + "model": "auth.permission", + "pk": 315, + "fields": { + "name": "Can delete Eigenschap", + "content_type": 79, + "codename": "delete_eigenschap" + } +}, { + "model": "auth.permission", + "pk": 316, + "fields": { + "name": "Can view Eigenschap", + "content_type": 79, + "codename": "view_eigenschap" + } +}, { + "model": "auth.permission", + "pk": 317, + "fields": { + "name": "Can add Informatieobjecttype", + "content_type": 80, + "codename": "add_informatieobjecttype" + } +}, { + "model": "auth.permission", + "pk": 318, + "fields": { + "name": "Can change Informatieobjecttype", + "content_type": 80, + "codename": "change_informatieobjecttype" + } +}, { + "model": "auth.permission", + "pk": 319, + "fields": { + "name": "Can delete Informatieobjecttype", + "content_type": 80, + "codename": "delete_informatieobjecttype" + } +}, { + "model": "auth.permission", + "pk": 320, + "fields": { + "name": "Can view Informatieobjecttype", + "content_type": 80, + "codename": "view_informatieobjecttype" + } +}, { + "model": "auth.permission", + "pk": 321, + "fields": { + "name": "Can add Zaak-Informatieobject-Type", + "content_type": 81, + "codename": "add_zaaktypeinformatieobjecttype" + } +}, { + "model": "auth.permission", + "pk": 322, + "fields": { + "name": "Can change Zaak-Informatieobject-Type", + "content_type": 81, + "codename": "change_zaaktypeinformatieobjecttype" + } +}, { + "model": "auth.permission", + "pk": 323, + "fields": { + "name": "Can delete Zaak-Informatieobject-Type", + "content_type": 81, + "codename": "delete_zaaktypeinformatieobjecttype" + } +}, { + "model": "auth.permission", + "pk": 324, + "fields": { + "name": "Can view Zaak-Informatieobject-Type", + "content_type": 81, + "codename": "view_zaaktypeinformatieobjecttype" + } +}, { + "model": "auth.permission", + "pk": 325, + "fields": { + "name": "Can add Zaaktypenrelatie", + "content_type": 82, + "codename": "add_zaaktypenrelatie" + } +}, { + "model": "auth.permission", + "pk": 326, + "fields": { + "name": "Can change Zaaktypenrelatie", + "content_type": 82, + "codename": "change_zaaktypenrelatie" + } +}, { + "model": "auth.permission", + "pk": 327, + "fields": { + "name": "Can delete Zaaktypenrelatie", + "content_type": 82, + "codename": "delete_zaaktypenrelatie" + } +}, { + "model": "auth.permission", + "pk": 328, + "fields": { + "name": "Can view Zaaktypenrelatie", + "content_type": 82, + "codename": "view_zaaktypenrelatie" + } +}, { + "model": "auth.permission", + "pk": 329, + "fields": { + "name": "Can add resultaattype", + "content_type": 83, + "codename": "add_resultaattype" + } +}, { + "model": "auth.permission", + "pk": 330, + "fields": { + "name": "Can change resultaattype", + "content_type": 83, + "codename": "change_resultaattype" + } +}, { + "model": "auth.permission", + "pk": 331, + "fields": { + "name": "Can delete resultaattype", + "content_type": 83, + "codename": "delete_resultaattype" + } +}, { + "model": "auth.permission", + "pk": 332, + "fields": { + "name": "Can view resultaattype", + "content_type": 83, + "codename": "view_resultaattype" + } +}, { + "model": "auth.permission", + "pk": 333, + "fields": { + "name": "Can add Roltype", + "content_type": 84, + "codename": "add_roltype" + } +}, { + "model": "auth.permission", + "pk": 334, + "fields": { + "name": "Can change Roltype", + "content_type": 84, + "codename": "change_roltype" + } +}, { + "model": "auth.permission", + "pk": 335, + "fields": { + "name": "Can delete Roltype", + "content_type": 84, + "codename": "delete_roltype" + } +}, { + "model": "auth.permission", + "pk": 336, + "fields": { + "name": "Can view Roltype", + "content_type": 84, + "codename": "view_roltype" + } +}, { + "model": "auth.permission", + "pk": 337, + "fields": { + "name": "Can add Statustype", + "content_type": 85, + "codename": "add_statustype" + } +}, { + "model": "auth.permission", + "pk": 338, + "fields": { + "name": "Can change Statustype", + "content_type": 85, + "codename": "change_statustype" + } +}, { + "model": "auth.permission", + "pk": 339, + "fields": { + "name": "Can delete Statustype", + "content_type": 85, + "codename": "delete_statustype" + } +}, { + "model": "auth.permission", + "pk": 340, + "fields": { + "name": "Can view Statustype", + "content_type": 85, + "codename": "view_statustype" + } +}, { + "model": "auth.permission", + "pk": 341, + "fields": { + "name": "Can add Zaaktype", + "content_type": 86, + "codename": "add_zaaktype" + } +}, { + "model": "auth.permission", + "pk": 342, + "fields": { + "name": "Can change Zaaktype", + "content_type": 86, + "codename": "change_zaaktype" + } +}, { + "model": "auth.permission", + "pk": 343, + "fields": { + "name": "Can delete Zaaktype", + "content_type": 86, + "codename": "delete_zaaktype" + } +}, { + "model": "auth.permission", + "pk": 344, + "fields": { + "name": "Can view Zaaktype", + "content_type": 86, + "codename": "view_zaaktype" + } +}, { + "model": "auth.permission", + "pk": 345, + "fields": { + "name": "Can add NLX configuration", + "content_type": 87, + "codename": "add_nlxconfig" + } +}, { + "model": "auth.permission", + "pk": 346, + "fields": { + "name": "Can change NLX configuration", + "content_type": 87, + "codename": "change_nlxconfig" + } +}, { + "model": "auth.permission", + "pk": 347, + "fields": { + "name": "Can delete NLX configuration", + "content_type": 87, + "codename": "delete_nlxconfig" + } +}, { + "model": "auth.permission", + "pk": 348, + "fields": { + "name": "Can view NLX configuration", + "content_type": 87, + "codename": "view_nlxconfig" + } +}, { + "model": "auth.permission", + "pk": 349, + "fields": { + "name": "Can add Internal service", + "content_type": 88, + "codename": "add_internalservice" + } +}, { + "model": "auth.permission", + "pk": 350, + "fields": { + "name": "Can change Internal service", + "content_type": 88, + "codename": "change_internalservice" + } +}, { + "model": "auth.permission", + "pk": 351, + "fields": { + "name": "Can delete Internal service", + "content_type": 88, + "codename": "delete_internalservice" + } +}, { + "model": "auth.permission", + "pk": 352, + "fields": { + "name": "Can view Internal service", + "content_type": 88, + "codename": "view_internalservice" + } +}, { + "model": "auth.permission", + "pk": 353, + "fields": { + "name": "Can add feature flags", + "content_type": 89, + "codename": "add_featureflags" + } +}, { + "model": "auth.permission", + "pk": 354, + "fields": { + "name": "Can change feature flags", + "content_type": 89, + "codename": "change_featureflags" + } +}, { + "model": "auth.permission", + "pk": 355, + "fields": { + "name": "Can delete feature flags", + "content_type": 89, + "codename": "delete_featureflags" + } +}, { + "model": "auth.permission", + "pk": 356, + "fields": { + "name": "Can view feature flags", + "content_type": 89, + "codename": "view_featureflags" + } +}, { + "model": "auth.permission", + "pk": 357, + "fields": { + "name": "Can add Selectielijstconfiguratie", + "content_type": 90, + "codename": "add_referentielijstconfig" + } +}, { + "model": "auth.permission", + "pk": 358, + "fields": { + "name": "Can change Selectielijstconfiguratie", + "content_type": 90, + "codename": "change_referentielijstconfig" + } +}, { + "model": "auth.permission", + "pk": 359, + "fields": { + "name": "Can delete Selectielijstconfiguratie", + "content_type": 90, + "codename": "delete_referentielijstconfig" + } +}, { + "model": "auth.permission", + "pk": 360, + "fields": { + "name": "Can view Selectielijstconfiguratie", + "content_type": 90, + "codename": "view_referentielijstconfig" + } +}, { + "model": "auth.permission", + "pk": 361, + "fields": { + "name": "Can add failed notification", + "content_type": 91, + "codename": "add_failednotification" + } +}, { + "model": "auth.permission", + "pk": 362, + "fields": { + "name": "Can change failed notification", + "content_type": 91, + "codename": "change_failednotification" + } +}, { + "model": "auth.permission", + "pk": 363, + "fields": { + "name": "Can delete failed notification", + "content_type": 91, + "codename": "delete_failednotification" + } +}, { + "model": "auth.permission", + "pk": 364, + "fields": { + "name": "Can view failed notification", + "content_type": 91, + "codename": "view_failednotification" + } +}, { + "model": "auth.permission", + "pk": 365, + "fields": { + "name": "Can add URL mapping", + "content_type": 92, + "codename": "add_urlmapping" + } +}, { + "model": "auth.permission", + "pk": 366, + "fields": { + "name": "Can change URL mapping", + "content_type": 92, + "codename": "change_urlmapping" + } +}, { + "model": "auth.permission", + "pk": 367, + "fields": { + "name": "Can delete URL mapping", + "content_type": 92, + "codename": "delete_urlmapping" + } +}, { + "model": "auth.permission", + "pk": 368, + "fields": { + "name": "Can view URL mapping", + "content_type": 92, + "codename": "view_urlmapping" + } +}, { + "model": "auth.group", + "pk": 1, + "fields": { + "name": "Admin", + "permissions": [105, 106, 107, 108, 33, 34, 35, 36, 25, 26, 27, 28, 29, 30, 31, 32, 21, 22, 23, 24, 77, 78, 79, 80, 9, 10, 11, 12, 5, 6, 7, 8, 69, 70, 71, 72, 65, 66, 67, 68, 73, 74, 75, 76, 109, 110, 111, 112, 37, 38, 39, 40, 41, 42, 43, 44, 277, 278, 279, 280, 281, 282, 283, 284, 301, 302, 303, 304, 305, 306, 307, 308, 313, 314, 315, 316, 309, 310, 311, 312, 317, 318, 319, 320, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 321, 322, 323, 324, 325, 326, 327, 328, 1, 2, 3, 4, 53, 54, 55, 56, 49, 50, 51, 52, 289, 290, 291, 292, 285, 286, 287, 288, 293, 294, 295, 296, 297, 298, 299, 300, 81, 82, 83, 84, 85, 86, 87, 88, 361, 362, 363, 364, 13, 14, 15, 16, 17, 18, 19, 20, 57, 58, 59, 60, 249, 250, 251, 252, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 241, 242, 243, 244, 149, 150, 151, 152, 177, 178, 179, 180, 181, 182, 183, 184, 269, 270, 271, 272, 253, 254, 255, 256, 257, 258, 259, 260, 185, 186, 187, 188, 265, 266, 267, 268, 217, 218, 219, 220, 189, 190, 191, 192, 117, 118, 119, 120, 125, 126, 127, 128, 129, 130, 131, 132, 193, 194, 195, 196, 121, 122, 123, 124, 273, 274, 275, 276, 197, 198, 199, 200, 221, 222, 223, 224, 261, 262, 263, 264, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 225, 226, 227, 228, 233, 234, 235, 236, 229, 230, 231, 232, 113, 114, 115, 116, 153, 154, 155, 156, 137, 138, 139, 140, 145, 146, 147, 148, 141, 142, 143, 144, 133, 134, 135, 136, 237, 238, 239, 240, 245, 246, 247, 248] + } +}, { + "model": "auth.group", + "pk": 2, + "fields": { + "name": "Autorisaties admin", + "permissions": [69, 70, 71, 72, 65, 66, 67, 68, 73, 74, 75, 76, 109, 110, 111, 112] + } +}, { + "model": "auth.group", + "pk": 3, + "fields": { + "name": "Besluiten admin", + "permissions": [277, 278, 279, 280, 281, 282, 283, 284] + } +}, { + "model": "auth.group", + "pk": 4, + "fields": { + "name": "Catalogi admin", + "permissions": [301, 302, 303, 304, 305, 306, 307, 308, 313, 314, 315, 316, 309, 310, 311, 312, 317, 318, 319, 320, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 321, 322, 323, 324, 325, 326, 327, 328] + } +}, { + "model": "auth.group", + "pk": 5, + "fields": { + "name": "Documenten admin", + "permissions": [289, 290, 291, 292, 285, 286, 287, 288, 293, 294, 295, 296, 297, 298, 299, 300] + } +}, { + "model": "auth.group", + "pk": 6, + "fields": { + "name": "Zaken admin", + "permissions": [249, 250, 251, 252, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 241, 242, 243, 244, 149, 150, 151, 152, 177, 178, 179, 180, 181, 182, 183, 184, 269, 270, 271, 272, 253, 254, 255, 256, 257, 258, 259, 260, 185, 186, 187, 188, 265, 266, 267, 268, 217, 218, 219, 220, 189, 190, 191, 192, 117, 118, 119, 120, 125, 126, 127, 128, 129, 130, 131, 132, 193, 194, 195, 196, 121, 122, 123, 124, 273, 274, 275, 276, 197, 198, 199, 200, 221, 222, 223, 224, 261, 262, 263, 264, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 225, 226, 227, 228, 233, 234, 235, 236, 229, 230, 231, 232, 113, 114, 115, 116, 153, 154, 155, 156, 137, 138, 139, 140, 145, 146, 147, 148, 141, 142, 143, 144, 133, 134, 135, 136, 237, 238, 239, 240, 245, 246, 247, 248] + } +}, { + "model": "auth.group", + "pk": 7, + "fields": { + "name": "Autorisaties read", + "permissions": [72, 68, 76, 112] + } +}, { + "model": "auth.group", + "pk": 8, + "fields": { + "name": "Besluiten read", + "permissions": [280, 284] + } +}, { + "model": "auth.group", + "pk": 9, + "fields": { + "name": "Catalogi read", + "permissions": [304, 308, 316, 312, 320, 332, 336, 340, 344, 324, 328] + } +}, { + "model": "auth.group", + "pk": 10, + "fields": { + "name": "Documenten read", + "permissions": [292, 288, 296, 300] + } +}, { + "model": "auth.group", + "pk": 11, + "fields": { + "name": "Zaken read", + "permissions": [252, 160, 164, 168, 172, 176, 244, 152, 180, 184, 272, 256, 260, 188, 268, 220, 192, 120, 128, 132, 196, 124, 276, 200, 224, 264, 204, 208, 212, 216, 228, 236, 232, 116, 156, 140, 148, 144, 136, 240, 248] + } +}, { + "model": "auth.group", + "pk": 12, + "fields": { + "name": "User admin", + "permissions": [105, 106, 107, 108, 12] + } +}, { + "model": "auth.group", + "pk": 13, + "fields": { + "name": "API admin", + "permissions": [69, 70, 71, 72, 73, 74, 75, 76, 109, 110, 111, 112, 57, 58, 59, 60] + } +}, { + "model": "sites.site", + "pk": 1, + "fields": { + "domain": "acc.api.wonen.zaken.amsterdam.nl/open-zaak", + "name": "acc.api.wonen.zaken.amsterdam.nl/open-zaak" + } +}, { + "model": "admin_index.appgroup", + "pk": 1, + "fields": { + "order": 0, + "name": "Accounts", + "slug": "accounts", + "models": [27, 3] + } +}, { + "model": "admin_index.appgroup", + "pk": 2, + "fields": { + "order": 1, + "name": "API Autorisaties", + "slug": "api-authorizations", + "models": [18, 24] + } +}, { + "model": "admin_index.appgroup", + "pk": 3, + "fields": { + "order": 3, + "name": "Configuratie", + "slug": "configuration", + "models": [7, 89, 87, 12, 26, 23, 21, 22, 90, 5] + } +}, { + "model": "admin_index.appgroup", + "pk": 4, + "fields": { + "order": 2, + "name": "Gegevens", + "slug": "gegevens", + "models": [70, 71, 76, 77, 80, 73, 72, 75, 29, 37, 34] + } +}, { + "model": "admin_index.appgroup", + "pk": 5, + "fields": { + "order": 4, + "name": "Logs", + "slug": "logs", + "models": [10, 11, 13, 91] + } +}, { + "model": "admin_index.applink", + "pk": 1, + "fields": { + "order": 0, + "app_group": 3, + "name": "Service configuration", + "link": "/open-zaak/admin/config/detail" + } +}, { + "model": "axes.accessattempt", + "pk": 21, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "a.lambert@amsterdam.nl", + "trusted": false, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-08-18T07:53:56.350Z", + "get_data": "next=/open-zaak/admin/", + "post_data": "csrfmiddlewaretoken=J11kUoP7vuPphAzafTZsW8yKUjxIj4ATQ27uLMDsgZKjQcndAy6yT8FZtHQ57MLQ\nusername=a.lambert@amsterdam.nl\nnext=/open-zaak/admin/", + "failures_since_start": 1 + } +}, { + "model": "axes.accesslog", + "pk": 1, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-06T15:40:48.041Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 2, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-07T10:25:10.632Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 3, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-21T09:20:28.211Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 4, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75", + "ip_address": "10.243.7.8", + "username": "e.hooijmaijers", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-21T12:18:23.330Z", + "logout_time": "2021-01-21T16:32:35.044Z" + } +}, { + "model": "axes.accesslog", + "pk": 5, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Firefox/68.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-01-22T12:02:05.375Z", + "logout_time": "2021-01-22T12:07:28.835Z" + } +}, { + "model": "axes.accesslog", + "pk": 6, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Firefox/68.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-01-25T13:38:39.540Z", + "logout_time": "2021-01-25T13:46:30.372Z" + } +}, { + "model": "axes.accesslog", + "pk": 7, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html, application/xhtml+xml, image/jxr, */*", + "path_info": "/admin/login/", + "attempt_time": "2021-01-25T13:39:22.996Z", + "logout_time": "2021-01-25T13:46:30.372Z" + } +}, { + "model": "axes.accesslog", + "pk": 8, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-25T13:47:09.210Z", + "logout_time": "2021-02-05T11:21:11.008Z" + } +}, { + "model": "axes.accesslog", + "pk": 9, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75", + "ip_address": "10.243.7.8", + "username": "e.hooijmaijers", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-25T13:56:54.061Z", + "logout_time": "2021-01-25T14:28:28.755Z" + } +}, { + "model": "axes.accesslog", + "pk": 10, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "n.van.elten", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-27T09:51:30.883Z", + "logout_time": "2021-01-27T09:51:49.555Z" + } +}, { + "model": "axes.accesslog", + "pk": 11, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-27T09:51:57.159Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 12, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-27T11:13:57.081Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 13, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-27T14:32:17.241Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 14, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-27T16:08:39.050Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 15, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-28T09:29:45.897Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 16, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-28T10:22:33.726Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 17, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-01-28T10:34:00.365Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 18, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-02T08:07:36.463Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 19, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-02T09:26:28.704Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 20, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-02T09:26:28.894Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 21, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-02-05T09:21:02.855Z", + "logout_time": "2021-02-05T11:21:11.008Z" + } +}, { + "model": "axes.accesslog", + "pk": 22, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-09T15:43:53.784Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 23, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-11T10:06:51.122Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 24, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-12T16:35:55.619Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 25, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-16T18:07:43.940Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 26, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-16T18:43:04.097Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 27, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-17T19:42:07.304Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 28, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-18T19:33:27.073Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 29, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-23T14:13:30.342Z", + "logout_time": "2021-02-23T15:31:55.492Z" + } +}, { + "model": "axes.accesslog", + "pk": 30, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-23T15:32:18.341Z", + "logout_time": "2021-02-23T15:32:36.349Z" + } +}, { + "model": "axes.accesslog", + "pk": 31, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "emma@tiltshift.nl", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-23T15:33:05.474Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 32, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "emma@tiltshift.nl", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-02-23T18:17:26.868Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 33, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.192 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "emma@tiltshift.nl", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-03-09T15:14:22.929Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 34, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-10T15:34:50.179Z", + "logout_time": "2021-03-12T15:27:37.610Z" + } +}, { + "model": "axes.accesslog", + "pk": 35, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-11T13:40:25.493Z", + "logout_time": "2021-03-12T15:27:37.610Z" + } +}, { + "model": "axes.accesslog", + "pk": 36, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.192 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-03-12T16:09:18.725Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 37, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-03-16T01:02:21.314Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 38, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-03-16T01:36:06.478Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 39, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-17T07:23:44.847Z", + "logout_time": "2021-03-17T07:25:32.943Z" + } +}, { + "model": "axes.accesslog", + "pk": 40, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-19T11:58:01.249Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 41, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-19T13:58:53.445Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 42, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-03-19T13:59:35.833Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 43, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-22T12:25:21.016Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 44, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-22T12:26:06.051Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 45, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-03-22T14:10:04.630Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 46, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-22T15:01:56.569Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 47, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-23T07:59:17.640Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 48, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-29T13:07:19.390Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 49, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-29T13:14:39.423Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 50, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "peter", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-03-31T12:54:39.444Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 51, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-03-31T17:09:38.546Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 52, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:87.0) Gecko/20100101 Firefox/87.0", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-04-01T08:37:41.254Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 53, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-04-01T08:49:09.446Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 54, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-04-01T08:49:58.159Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 55, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.68", + "ip_address": "10.243.7.8", + "username": "e.hooijmaijers", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-04-07T13:24:17.048Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 56, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-04-12T12:03:15.885Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 57, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-04-14T12:30:08.492Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 58, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-04-15T11:28:35.170Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 59, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-04-16T07:01:29.519Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 60, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-04-21T10:49:37.763Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 61, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-04-22T14:18:59.050Z", + "logout_time": "2021-04-22T15:32:58.831Z" + } +}, { + "model": "axes.accesslog", + "pk": 62, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42", + "ip_address": "10.243.7.8", + "username": "e.hooijmaijers", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-04-22T14:28:13.376Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 63, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-04-22T15:36:55.767Z", + "logout_time": "2021-04-22T15:53:26.396Z" + } +}, { + "model": "axes.accesslog", + "pk": 64, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42", + "ip_address": "10.243.7.8", + "username": "e.hooijmaijers", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-04-28T14:48:59.883Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 65, + "fields": { + "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:87.0) Gecko/20100101 Firefox/87.0", + "ip_address": "10.243.7.8", + "username": "steven_bal", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-05-12T14:08:09.346Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 66, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-05-12T14:32:28.361Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 67, + "fields": { + "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:88.0) Gecko/20100101 Firefox/88.0", + "ip_address": "10.243.7.8", + "username": "steven_bal", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-05-19T11:58:20.813Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 68, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-05-21T12:11:25.402Z", + "logout_time": "2021-05-21T13:34:11.321Z" + } +}, { + "model": "axes.accesslog", + "pk": 69, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-05-21T12:11:47.805Z", + "logout_time": "2021-05-21T13:34:11.321Z" + } +}, { + "model": "axes.accesslog", + "pk": 70, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-05-21T12:13:33.834Z", + "logout_time": "2021-05-21T13:34:11.321Z" + } +}, { + "model": "axes.accesslog", + "pk": 71, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-05-26T13:27:45.207Z", + "logout_time": "2021-05-26T14:04:33.329Z" + } +}, { + "model": "axes.accesslog", + "pk": 72, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-05-31T13:30:01.902Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 73, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-06-04T08:36:01.730Z", + "logout_time": "2021-06-04T09:59:06.704Z" + } +}, { + "model": "axes.accesslog", + "pk": 74, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-06-07T11:39:49.885Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 75, + "fields": { + "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:89.0) Gecko/20100101 Firefox/89.0", + "ip_address": "10.243.7.8", + "username": "steven_bal", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-06-07T12:10:00.608Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 76, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-06-08T08:05:31.484Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 77, + "fields": { + "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:89.0) Gecko/20100101 Firefox/89.0", + "ip_address": "10.243.7.8", + "username": "steven_bal", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-06-14T14:19:09.479Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 78, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-06-21T14:24:21.171Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 79, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "tahir.malik", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-06-21T14:28:06.641Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 80, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0", + "ip_address": "10.243.7.8", + "username": "tahir.malik", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-06-22T16:03:52.789Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 81, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0", + "ip_address": "10.243.7.8", + "username": "tahir.malik", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-06-23T13:43:21.102Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 82, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-06-28T13:05:19.363Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 83, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-07-05T10:33:09.486Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 84, + "fields": { + "user_agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:89.0) Gecko/20100101 Firefox/89.0", + "ip_address": "10.243.7.8", + "username": "steven_bal", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-07-05T11:08:54.559Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 85, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-07-05T11:39:11.194Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 86, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "c.santanna", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-07-09T09:42:47.606Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 87, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-07-20T14:36:13.663Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 88, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 Edg/92.0.902.62", + "ip_address": "10.243.7.8", + "username": "e.hooijmaijers", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-08-06T10:15:18.438Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 89, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 Edg/92.0.902.67", + "ip_address": "10.243.7.8", + "username": "e.hooijmaijers", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-08-13T13:45:45.504Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 90, + "fields": { + "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0", + "ip_address": "10.243.7.8", + "username": "x.bloemen", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "path_info": "/admin/login/", + "attempt_time": "2021-08-18T07:46:45.171Z", + "logout_time": null + } +}, { + "model": "axes.accesslog", + "pk": 91, + "fields": { + "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36", + "ip_address": "10.243.7.8", + "username": "a.lambert@amsterdam.nl", + "trusted": true, + "http_accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", + "path_info": "/admin/login/", + "attempt_time": "2021-08-18T07:55:00.953Z", + "logout_time": null + } +}, { + "model": "django_auth_adfs_db.adfsconfig", + "pk": 1, + "fields": { + "enabled": false, + "server": "", + "tenant_id": "", + "client_secret": "", + "client_id": "", + "relying_party_id": "", + "claim_mapping": { + "email": "email", + "last_name": "family_name", + "first_name": "given_name" + }, + "username_claim": "", + "sync_groups": true + } +}, { + "model": "django_db_logger.statuslog", + "pk": 1, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a2cd2c79-5093-467f-b580-2b94fc928738'}\n", + "create_datetime": "2021-03-16T01:35:41.795Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 2, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3cc7355a-a4eb-4778-9fe2-87600b4367e8'}\n", + "create_datetime": "2021-03-16T11:03:00.213Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 3, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f74b24db-7ab5-4f3c-8ffa-3d57ace51e5b'}\n", + "create_datetime": "2021-03-17T14:06:32.066Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 4, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:639699cb-333b-4adf-9ebd-9c2ef176b726'}\n", + "create_datetime": "2021-03-17T18:31:18.460Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 5, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5076e174-ed4f-4881-ad06-d031e13b994e'}\n", + "create_datetime": "2021-03-17T18:34:58.316Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 6, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:612ba335-1c32-4102-b7d1-5ea39c86a397'}\n", + "create_datetime": "2021-03-18T12:24:26.584Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 7, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b0e3fc37-e110-420e-8b61-06960efff2d4'}\n", + "create_datetime": "2021-03-18T12:54:37.105Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 8, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:42318ca6-dc23-4ffe-9cb7-868f342f22f5'}\n", + "create_datetime": "2021-03-18T13:07:34.288Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 9, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6549f126-9d93-4292-800f-24e00d61853b'}\n", + "create_datetime": "2021-03-18T13:25:22.506Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 10, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ab918b48-6fb5-40eb-a309-04b4f0997552'}\n", + "create_datetime": "2021-03-18T13:30:09.949Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 11, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:04f33c75-03a2-4ede-a7b4-73052df16d79'}\n", + "create_datetime": "2021-03-18T13:33:53.412Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 12, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d64a56f8-3fdf-4deb-83b8-e5f2bd543794'}\n", + "create_datetime": "2021-03-18T13:35:21.553Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 13, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:896cbb24-f51a-45ce-9990-440bd3fa4e04'}\n", + "create_datetime": "2021-03-18T13:41:39.568Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 14, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:106d10d2-02f0-4014-9c4b-e479ec42d650'}\n", + "create_datetime": "2021-03-18T13:51:17.429Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 15, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:96964813-065e-4ee5-9c0b-a5bc75bf8d9b'}\n", + "create_datetime": "2021-03-18T13:51:31.844Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 16, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:51f3b10f-370b-4168-b682-44749f64d188'}\n", + "create_datetime": "2021-03-18T13:52:44.252Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 17, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b2b59f75-89cf-4d8e-8d71-8df44a4b6d0a'}\n", + "create_datetime": "2021-03-18T13:54:44.066Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 18, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7308128f-278e-4248-ade2-bade87bd2688'}\n", + "create_datetime": "2021-03-18T13:55:34.684Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 19, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:fa18aff1-87a2-4f0a-ac36-01954240ea53'}\n", + "create_datetime": "2021-03-18T13:56:35.648Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 20, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e8c6e25c-8172-4119-9b80-1d402fe0932c'}\n", + "create_datetime": "2021-03-18T13:57:43.268Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 21, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:09cc64a4-79ea-4bd6-8ddb-c3e303739185'}\n", + "create_datetime": "2021-03-18T13:59:01.040Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 22, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ba030b25-50ea-442e-b6d8-68e4fd5dd55f'}\n", + "create_datetime": "2021-03-18T14:00:43.553Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 23, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:81e3cd4f-b960-4a4f-9adb-5fe96cf8cfe2'}\n", + "create_datetime": "2021-03-18T14:02:21.780Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 24, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a3ccc679-7680-4c63-b679-bf000f6d8843'}\n", + "create_datetime": "2021-03-18T14:48:44.948Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 25, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:aa12c355-0d47-4b53-96d2-d79fc465d581'}\n", + "create_datetime": "2021-03-18T14:49:34.285Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 26, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:83b4b4fe-9f0f-4815-945e-ced02551a00d'}\n", + "create_datetime": "2021-03-18T14:50:32.413Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 27, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5af3ed61-4a5a-49bc-a7ba-729369931710'}\n", + "create_datetime": "2021-03-18T14:51:31.820Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 28, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5fdde407-eed8-4e4e-98a6-3a6412300b9b'}\n", + "create_datetime": "2021-03-18T14:52:22.729Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 29, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ffca1855-79ea-4f42-bc59-3f3d2c007c9b'}\n", + "create_datetime": "2021-03-18T14:53:16.597Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 30, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7c6e8f71-b55b-420c-85bd-35a2f6a393ac'}\n", + "create_datetime": "2021-03-18T16:36:53.530Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 31, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c3d7a640-87af-4c0c-9e6c-c85424e133fc'}\n", + "create_datetime": "2021-03-18T16:38:55.385Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 32, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e717a822-b4ba-4248-9fc9-e44a54c26dd5'}\n", + "create_datetime": "2021-03-18T16:44:26.856Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 33, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ec81099f-599b-43b4-b944-d024102deaf6'}\n", + "create_datetime": "2021-03-18T16:47:48.949Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 34, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7589c23c-6abc-4887-b447-f9f11cdbe4b7'}\n", + "create_datetime": "2021-03-18T16:56:03.462Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 35, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:fec58420-2dca-43d5-944b-04724588ce80'}\n", + "create_datetime": "2021-03-18T17:09:49.849Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 36, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b20b2068-a30b-4c62-8c5b-9cc68c15b55f'}\n", + "create_datetime": "2021-03-18T17:11:14.308Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 37, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0240ba53-6ac2-40e0-82fc-f39ea50598ea'}\n", + "create_datetime": "2021-03-18T17:43:51.933Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 38, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:fa23e308-ddb6-4d47-add0-242133497788'}\n", + "create_datetime": "2021-03-18T17:57:35.236Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 39, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3afa0599-82f4-4c1b-bbd5-4bddf35a84fb'}\n", + "create_datetime": "2021-03-18T18:09:44.401Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 40, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:8c5f29a7-438a-43af-800d-d437379fe5be'}\n", + "create_datetime": "2021-03-18T18:12:57.879Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 41, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6cfd4a06-b098-452b-9680-4f0317a01040'}\n", + "create_datetime": "2021-03-18T18:14:11.376Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 42, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:590d23f7-92ab-4b40-939a-e0bc7e151782'}\n", + "create_datetime": "2021-03-19T14:02:25.485Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 43, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ace7189a-eaf6-4421-85d7-aaeb26642c7b'}\n", + "create_datetime": "2021-03-19T14:08:38.229Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 44, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:900adc49-2415-4893-8d51-e624bae48aac'}\n", + "create_datetime": "2021-03-19T14:13:16.772Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 45, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:20f7b095-53ce-44fe-8141-d6f588e8b90d'}\n", + "create_datetime": "2021-03-19T14:14:19.667Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 46, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:33a0948c-924e-48cf-b846-7cdda528f678'}\n", + "create_datetime": "2021-03-19T14:25:13.995Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 47, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7b497a48-2a97-4acc-afe2-bc5f644615f4'}\n", + "create_datetime": "2021-03-22T08:54:47.035Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 48, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:730df511-ed2d-4518-87ed-8c4f27149701'}\n", + "create_datetime": "2021-03-22T10:10:01.069Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 49, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e7300112-9b61-4e61-a37b-323dab8ac02f'}\n", + "create_datetime": "2021-03-22T10:24:27.380Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 50, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6d91a181-589a-4194-8c0f-e73444fe8b6e'}\n", + "create_datetime": "2021-03-22T10:32:26.884Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 51, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5bea78c7-b8bd-4710-849e-9620b23feb03'}\n", + "create_datetime": "2021-03-22T10:41:06.005Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 52, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f224f558-127b-4902-a5f5-85ba1e66eb25'}\n", + "create_datetime": "2021-03-22T12:38:54.019Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 53, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:50a7423b-3f92-4139-a5d1-c3bb91828232'}\n", + "create_datetime": "2021-03-22T12:41:03.562Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 54, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:39a096f1-3176-4bac-b21e-60b15df6a33c'}\n", + "create_datetime": "2021-03-22T12:42:05.892Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 55, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:9e19e959-5b41-47e0-beaf-955b304e5ae5'}\n", + "create_datetime": "2021-03-22T12:45:11.978Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 56, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0be7a4e5-2e3a-4d80-ac06-8f1d31ecfe23'}\n", + "create_datetime": "2021-03-22T12:51:34.999Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 57, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6917233b-6e46-452d-8cd4-c831a6a9cbac'}\n", + "create_datetime": "2021-03-22T12:54:10.677Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 58, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b89302d7-daaa-40f5-88c1-6ff9d9920402'}\n", + "create_datetime": "2021-03-22T12:55:59.424Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 59, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5d73b23f-45ff-4efb-a1ca-19d7e1da036f'}\n", + "create_datetime": "2021-03-22T12:58:07.390Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 60, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4b3ac0ba-3e1e-4eb1-bdea-04c8635ac790'}\n", + "create_datetime": "2021-03-22T13:12:45.893Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 61, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:599d09d1-9348-4ad9-8f5f-8f2f8e9432d1'}\n", + "create_datetime": "2021-03-22T13:16:29.618Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 62, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:915402ad-1435-4e09-bc9f-f574a4f6cd6d'}\n", + "create_datetime": "2021-03-22T13:18:59.027Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 63, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:17ae8509-cb7b-48c6-9493-3d554e335c81'}\n", + "create_datetime": "2021-03-22T15:11:27.542Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 64, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b71f3c14-8b2d-47e6-a59f-5cc7e37a6b77'}\n", + "create_datetime": "2021-03-22T15:11:29.624Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 65, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:58541334-cc7b-47ff-8ce9-416aff974594'}\n", + "create_datetime": "2021-03-22T16:21:26.466Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 66, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4da79c97-0d86-4fe3-b689-d4c93f44e3a8'}\n", + "create_datetime": "2021-03-22T16:35:31.924Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 67, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:31f35419-f930-4be1-86e9-7ab319ab81c4'}\n", + "create_datetime": "2021-03-22T17:05:10.740Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 68, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2bd16daa-9332-4644-a570-9e7ae1cfd971'}\n", + "create_datetime": "2021-03-22T17:11:08.040Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 69, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:043ae2c6-ad69-436d-a3b1-193d27183924'}\n", + "create_datetime": "2021-03-22T17:12:54.387Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 70, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:9dfb7ee3-1f6d-4e2c-bbf9-b568c84987dd'}\n", + "create_datetime": "2021-03-23T08:10:47.638Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 71, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4f1f0c8c-c595-4577-b5be-f8c69adec0ba'}\n", + "create_datetime": "2021-03-23T08:28:39.712Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 72, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:77dc035b-993a-456e-aaae-032d9f266b46'}\n", + "create_datetime": "2021-03-23T10:50:42.601Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 73, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:079ef2a8-6639-4f13-88b5-7570cace961b'}\n", + "create_datetime": "2021-03-23T13:42:33.513Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 74, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:512a343a-5579-440d-8907-01385e72f6c0'}\n", + "create_datetime": "2021-03-23T13:42:33.529Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 75, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:9f461df6-6ea8-4799-9453-437c272f2e57'}\n", + "create_datetime": "2021-03-23T15:13:36.023Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 76, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7f4c2315-0936-43fa-8c7e-abaff82bba86'}\n", + "create_datetime": "2021-03-23T16:25:47.067Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 77, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3aac3ccc-2781-4246-b62c-51a5b0b8ab96'}\n", + "create_datetime": "2021-03-23T17:27:51.047Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 78, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:aca69664-84a2-4f1c-9444-846d3ab2e82f'}\n", + "create_datetime": "2021-03-23T17:29:55.566Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 79, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:193f0634-6fa6-4284-8681-6a54a64c8712'}\n", + "create_datetime": "2021-03-23T18:44:48.988Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 80, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:49b8a2df-0ae1-456e-bd7d-083dfb154772'}\n", + "create_datetime": "2021-03-23T18:45:18.659Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 81, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c3d9b3f2-54e7-490e-a5b4-b13cdc10b421'}\n", + "create_datetime": "2021-03-23T18:59:52.993Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 82, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3d390b8c-1d0e-48a0-b44a-ea60d896098d'}\n", + "create_datetime": "2021-03-23T19:38:39.400Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 83, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f42b3e2c-e124-4cbc-aa5a-3db5853bf417'}\n", + "create_datetime": "2021-03-24T08:09:26.502Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 84, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6d92c8da-e60f-4aac-9a30-ea163ee73fae'}\n", + "create_datetime": "2021-03-24T08:28:01.362Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 85, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3c8f1f89-ba14-4558-b98b-c8cd89a87380'}\n", + "create_datetime": "2021-03-24T08:39:56.980Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 86, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:bb6eb4d7-ad9e-438a-9f19-6cadd5b4d833'}\n", + "create_datetime": "2021-03-24T08:40:54.538Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 87, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6e89565d-af78-4939-a0f5-3f6e045447a0'}\n", + "create_datetime": "2021-03-24T12:25:13.718Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 88, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f729d420-6cee-4f98-be6e-3c1717d35b22'}\n", + "create_datetime": "2021-03-24T12:30:22.957Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 89, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:22dc2987-70fe-4d0f-be81-2f6c65291984'}\n", + "create_datetime": "2021-03-24T13:33:22.546Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 90, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:75c72a39-e8d5-4ab4-abc8-876bb21b04c9'}\n", + "create_datetime": "2021-03-24T16:45:46.882Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 91, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:eea792a0-20d2-4adf-9c1d-48446d12f41f'}\n", + "create_datetime": "2021-03-24T17:27:51.975Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 92, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:40ddb41e-3bd2-4525-aba3-c1aa3e5d40b6'}\n", + "create_datetime": "2021-03-24T17:29:15.252Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 93, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2bebf553-eaf4-409a-a127-bda0f1929f42'}\n", + "create_datetime": "2021-03-24T17:30:34.466Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 94, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:1d0a864f-9302-48d0-b239-b9161ee1480d'}\n", + "create_datetime": "2021-03-24T17:33:44.316Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 95, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ee3a7e68-7896-4c88-916e-d95d5737f6db'}\n", + "create_datetime": "2021-03-24T18:05:38.780Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 96, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2edc97c7-7bc7-4bf3-bf05-ba6dfe659511'}\n", + "create_datetime": "2021-03-24T18:06:57.517Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 97, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:544ed6a1-1761-42b5-a509-9e851580fdc6'}\n", + "create_datetime": "2021-03-24T18:07:29.364Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 98, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:619f3726-3975-4222-aa98-5a9dfe8b440f'}\n", + "create_datetime": "2021-03-24T18:21:55.516Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 99, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c07fb547-7730-4bfa-a329-173b057b6efb'}\n", + "create_datetime": "2021-03-24T18:24:35.971Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 100, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:1ef9c3be-f2b1-4646-9eec-e7a965956d37'}\n", + "create_datetime": "2021-03-24T18:25:13.447Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 101, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4f3afe9a-3d8a-4a63-80a0-769925aeec57'}\n", + "create_datetime": "2021-03-25T12:07:47.928Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 102, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a0ff9ee9-6ee5-42c2-b6ed-493f26862065'}\n", + "create_datetime": "2021-03-25T12:46:59.299Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 103, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4be83316-ae1c-423b-9964-dabd5c1cac35'}\n", + "create_datetime": "2021-03-25T12:48:12.087Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 104, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:896cbc92-138e-4abd-9531-2af7e8d97386'}\n", + "create_datetime": "2021-03-25T13:09:02.138Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 105, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:08eba9e1-3c17-4663-adf0-b6fc764204cb'}\n", + "create_datetime": "2021-03-25T13:11:15.591Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 106, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4a696d39-34c5-46c5-ba62-9f404d5ef740'}\n", + "create_datetime": "2021-03-26T14:04:05.364Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 107, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:de966695-be2b-4aba-89d6-98705e4a59ee'}\n", + "create_datetime": "2021-03-26T14:24:38.424Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 108, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2b82eaa5-3f70-4eb0-9397-88e385e8eabe'}\n", + "create_datetime": "2021-03-26T14:42:40.700Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 109, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2dd7d87b-edfc-4b9c-adad-90c187a13ece'}\n", + "create_datetime": "2021-03-26T15:31:28.856Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 110, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ab97867f-5094-44be-8eee-01b2a232781c'}\n", + "create_datetime": "2021-03-26T17:28:14.423Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 111, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:319e014c-53c7-4451-b177-7436a1a92ff5'}\n", + "create_datetime": "2021-03-26T17:33:16.324Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 112, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e7a6369b-935d-4a7e-a07c-fc56cd7084d1'}\n", + "create_datetime": "2021-03-26T17:40:36.740Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 113, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5fc95ab8-9803-436f-9fe7-14f65f055ee0'}\n", + "create_datetime": "2021-03-26T17:44:36.109Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 114, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:891469ae-cdc9-4ebd-b276-36d4cd2ea262'}\n", + "create_datetime": "2021-03-26T17:49:22.347Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 115, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:fe2e1503-4e1b-408f-be80-aa2a2d8ff9d9'}\n", + "create_datetime": "2021-03-29T07:15:21.552Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 116, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:8d9526cd-ebbf-4b9b-abc1-bd8c23d980c9'}\n", + "create_datetime": "2021-03-29T09:14:02.982Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 117, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f3cd3937-437f-4a7e-946d-94de023a14f6'}\n", + "create_datetime": "2021-03-29T16:01:26.636Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 118, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:aad67f34-a23a-478c-a943-e9d737d1ed97'}\n", + "create_datetime": "2021-03-29T19:32:13.644Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 119, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:be233e79-367e-47b2-922d-91412a5f26f9'}\n", + "create_datetime": "2021-03-29T20:14:37.638Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 120, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4e17e276-22e4-43a6-b8ee-456ba9a29cca'}\n", + "create_datetime": "2021-03-29T20:14:38.435Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 121, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:66700913-3578-4799-8490-0a9e001913a4'}\n", + "create_datetime": "2021-03-29T20:14:39.128Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 122, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2c0c3033-5f31-49be-848f-84c375bb4c6b'}\n", + "create_datetime": "2021-03-29T20:14:39.735Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 123, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7acaa1c4-c087-4c4d-8f67-eece565599ad'}\n", + "create_datetime": "2021-03-29T20:14:40.355Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 124, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:57003399-08c9-4fab-abea-465dd2ad8095'}\n", + "create_datetime": "2021-03-29T20:14:40.967Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 125, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:50218167-ff84-44ce-bfed-be67a6432435'}\n", + "create_datetime": "2021-03-29T20:14:41.559Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 126, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:476fdd79-1ef9-4863-8921-5a6130f49e77'}\n", + "create_datetime": "2021-03-29T20:14:42.176Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 127, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e43d99e9-2a39-4835-b3bf-84885faf079a'}\n", + "create_datetime": "2021-03-29T20:14:42.827Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 128, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e837f262-e06b-4bce-a86f-7959e2ef5a44'}\n", + "create_datetime": "2021-03-29T20:14:43.424Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 129, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b6148bae-9728-4047-92e3-1aadac14aaa3'}\n", + "create_datetime": "2021-03-29T20:18:45.930Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 130, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:21fd8add-4eb2-4c7d-97f3-75cbb0526ee7'}\n", + "create_datetime": "2021-03-29T20:18:46.588Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 131, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7715613c-75dd-4802-a1fe-9cbb813e02fe'}\n", + "create_datetime": "2021-03-29T20:18:47.135Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 132, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d0b3fef8-3e22-4fcb-835e-51307907fddb'}\n", + "create_datetime": "2021-03-29T20:18:47.832Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 133, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:558a5cb2-5e63-4739-8ad7-20e3b1680cac'}\n", + "create_datetime": "2021-03-29T20:18:48.410Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 134, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ef993209-9464-4636-a548-80a4de19b1c9'}\n", + "create_datetime": "2021-03-29T20:18:49.043Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 135, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2734bc53-26ce-47ca-8068-4eda73bcd9a6'}\n", + "create_datetime": "2021-03-29T20:18:49.608Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 136, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:edff97f0-9e20-4a75-906d-d2a1f8fb96fc'}\n", + "create_datetime": "2021-03-29T20:18:50.187Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 137, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:eb417eb5-9a13-4614-a532-7dcd7e54b584'}\n", + "create_datetime": "2021-03-29T20:18:50.743Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 138, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d85eda38-6a7f-4080-a040-694b350a7b2e'}\n", + "create_datetime": "2021-03-29T20:18:51.307Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 139, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3211f510-1be0-4c71-96b5-a0375aee6100'}\n", + "create_datetime": "2021-03-29T20:31:26.640Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 140, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b0b4124c-7a1c-4869-8476-2687a4553cb6'}\n", + "create_datetime": "2021-03-29T20:31:27.412Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 141, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:27ba0198-189e-40f6-8202-6c40f6bd6325'}\n", + "create_datetime": "2021-03-29T20:31:28.016Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 142, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:16ed1b0d-0510-4780-b929-3aa5f63d0845'}\n", + "create_datetime": "2021-03-29T20:31:28.607Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 143, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:faa8e955-6138-439c-8503-3d63fa1b688c'}\n", + "create_datetime": "2021-03-29T20:31:29.215Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 144, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:61976675-c687-4a9c-86d3-962167e326b8'}\n", + "create_datetime": "2021-03-29T20:31:30.020Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 145, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2f5ce875-aac9-48dc-b000-907367062d30'}\n", + "create_datetime": "2021-03-29T20:31:30.583Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 146, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2d3fe635-bb46-4314-80d3-9a3fead70df9'}\n", + "create_datetime": "2021-03-29T20:31:31.163Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 147, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7e4b19cf-4b73-43b0-985f-5743dc52c4cf'}\n", + "create_datetime": "2021-03-29T20:31:31.763Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 148, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:83d9755d-c845-4590-8ec6-f56166671d13'}\n", + "create_datetime": "2021-03-29T20:31:32.315Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 149, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:706efd34-7961-43f7-9e73-6a8904954439'}\n", + "create_datetime": "2021-03-29T20:38:39.609Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 150, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a9beb07b-ab95-4f22-aaf9-ef18b60fa893'}\n", + "create_datetime": "2021-03-29T20:38:40.163Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 151, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:fb5f188c-62ea-4d6c-8411-e001274b3a8d'}\n", + "create_datetime": "2021-03-29T20:38:40.755Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 152, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:9d7e9112-f0ff-4b9a-94e8-7c3bf5840bcc'}\n", + "create_datetime": "2021-03-29T20:38:41.475Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 153, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:1aab0aa4-8836-40fe-a7d7-38acee5d16bb'}\n", + "create_datetime": "2021-03-29T20:38:42.026Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 154, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:dde51243-2d50-4f6c-bd24-7426772b47bc'}\n", + "create_datetime": "2021-03-29T20:38:42.571Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 155, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:aac9b060-3918-4d40-90c5-f07e7cf98c3c'}\n", + "create_datetime": "2021-03-29T20:38:43.175Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 156, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:687a967a-17d5-4124-b171-3eff2485a511'}\n", + "create_datetime": "2021-03-29T20:38:43.768Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 157, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6b80409b-5039-463b-a99c-32a55fad13af'}\n", + "create_datetime": "2021-03-29T20:38:44.323Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 158, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ebacdada-f749-4f8d-869e-d04fc2e46adc'}\n", + "create_datetime": "2021-03-29T20:38:44.863Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 159, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b9c64bfe-fb46-41f4-98e9-dda0e4498ef0'}\n", + "create_datetime": "2021-03-29T21:02:08.255Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 160, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:23877c13-8669-438d-8c54-135d766fdf37'}\n", + "create_datetime": "2021-03-29T21:02:08.852Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 161, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:74e8ca98-1620-4b95-9c6c-a77135c0b360'}\n", + "create_datetime": "2021-03-29T21:02:09.419Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 162, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:26a02144-fc9e-4037-a897-12dff5ffd85f'}\n", + "create_datetime": "2021-03-29T21:02:09.968Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 163, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:609290f1-4a43-4fa6-a4ca-0dd6d579511b'}\n", + "create_datetime": "2021-03-29T21:02:10.551Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 164, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:19586714-5c7b-44c0-b1cb-8514650353f7'}\n", + "create_datetime": "2021-03-29T21:02:11.148Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 165, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:dc11ec48-a673-4098-8379-06e728f4532e'}\n", + "create_datetime": "2021-03-29T21:02:11.723Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 166, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:dc573152-516c-4cc5-9a8d-2c1408197f3a'}\n", + "create_datetime": "2021-03-29T21:02:12.319Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 167, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:17cd1b47-c1ae-40b2-8cee-5e83540ef18e'}\n", + "create_datetime": "2021-03-29T21:02:13.031Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 168, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b201e93d-b385-4684-81ab-9f9b378f0c82'}\n", + "create_datetime": "2021-03-29T21:02:13.592Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 169, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4f6fdd33-8295-49e4-9992-a56d9f957684'}\n", + "create_datetime": "2021-03-29T21:46:21.587Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 170, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d68e1a87-1b4e-4def-9432-fbb4953918f9'}\n", + "create_datetime": "2021-03-29T21:46:22.196Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 171, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:9b412382-2b9f-4fd8-b0c7-516e0c71c968'}\n", + "create_datetime": "2021-03-29T21:46:22.748Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 172, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c52ad5e6-1027-4292-abb0-2dc18d5f4202'}\n", + "create_datetime": "2021-03-29T21:46:23.282Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 173, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d429dfc8-ed9d-42fb-b5c5-2b71e46d09c4'}\n", + "create_datetime": "2021-03-29T21:46:23.795Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 174, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c941b4ea-7b5d-4c6b-adc0-afef2abcc225'}\n", + "create_datetime": "2021-03-29T21:46:24.343Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 175, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3bc890be-0d98-465f-be29-19973152b7e6'}\n", + "create_datetime": "2021-03-29T21:46:24.878Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 176, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c820a7bb-84b0-45f5-9e3c-c0275cd6c3c4'}\n", + "create_datetime": "2021-03-29T21:46:25.428Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 177, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:fbb07436-d7de-4cdc-a863-1a891f6a6af5'}\n", + "create_datetime": "2021-03-29T21:46:25.951Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 178, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:fa516fdc-ef8f-4a3d-b254-bbdb6cf67085'}\n", + "create_datetime": "2021-03-29T21:46:26.687Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 179, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:57700e3f-e36a-4a61-8822-4a424a6e7b58'}\n", + "create_datetime": "2021-03-29T21:46:27.283Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 180, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:cfd2bdca-bb3f-420b-a615-45adff6d8ae4'}\n", + "create_datetime": "2021-03-29T21:46:27.854Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 181, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:927c277c-3c0f-4d1f-ab5b-bf0b00661c69'}\n", + "create_datetime": "2021-03-29T21:46:28.440Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 182, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3767932f-ed71-4515-8184-67af944bfb9e'}\n", + "create_datetime": "2021-03-29T21:46:29.047Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 183, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:96561e37-9fc5-4b4e-b44b-f80c6238bd2e'}\n", + "create_datetime": "2021-03-29T21:46:29.631Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 184, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:752e24c9-10c0-404d-be75-d666240e57ce'}\n", + "create_datetime": "2021-03-29T21:46:30.255Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 185, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7e4e4921-a071-4e1c-be2d-e167a1561f30'}\n", + "create_datetime": "2021-03-29T21:46:30.815Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 186, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a5cf0442-0cb5-44cc-ba62-4a4861b5cd3d'}\n", + "create_datetime": "2021-03-29T21:46:31.359Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 187, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7ff31af8-d4dc-46d2-a8d5-dd171a6edeee'}\n", + "create_datetime": "2021-03-29T21:46:31.943Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 188, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:298b1deb-8ec7-4200-8c08-2881fe089f68'}\n", + "create_datetime": "2021-03-29T21:46:32.527Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 189, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4c6cf17a-c482-413d-a477-2aaed6e3a48a'}\n", + "create_datetime": "2021-03-29T21:46:33.115Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 190, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:18285055-6f05-488c-9f04-408906b9c931'}\n", + "create_datetime": "2021-03-29T21:46:33.711Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 191, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a3a5fbc8-fdd0-4eb2-8ba0-52b169abb528'}\n", + "create_datetime": "2021-03-29T21:46:34.263Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 192, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d40dc655-8c0f-43c2-bc3d-b09b6273cb61'}\n", + "create_datetime": "2021-03-29T21:46:34.854Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 193, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:1ba1dc49-bf4e-4505-a1e1-26dcf4b3a7b7'}\n", + "create_datetime": "2021-03-29T21:46:35.411Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 194, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:93694bca-2f6a-4357-86fe-3bf35853a203'}\n", + "create_datetime": "2021-03-30T07:28:10.460Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 195, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:55fff5b4-5de9-49a3-b41f-e853e1d85998'}\n", + "create_datetime": "2021-03-30T09:06:45.692Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 196, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ba4b58a0-bd06-45ab-86fa-a3ecff2ab3f7'}\n", + "create_datetime": "2021-03-30T14:12:17.830Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 197, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b4b9844b-9b21-48a0-b145-0f3a6a4f6f48'}\n", + "create_datetime": "2021-03-30T19:56:03.176Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 198, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5e534882-b634-498c-b28d-61a62ba50dfa'}\n", + "create_datetime": "2021-03-30T20:26:59.695Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 199, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:deaa26f0-c503-465d-a426-9610cd3f9f47'}\n", + "create_datetime": "2021-03-31T07:18:44.953Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 200, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:41bfa854-e6e7-4646-a086-928534ec544a'}\n", + "create_datetime": "2021-03-31T07:23:35.130Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 201, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f9be4c78-db1d-48ba-8753-81b812cf8cc2'}\n", + "create_datetime": "2021-03-31T07:49:28.977Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 202, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:8525136b-2922-47ed-84ad-8e553bbfbc2a'}\n", + "create_datetime": "2021-03-31T08:03:26.931Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 203, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e2a04a01-527a-4ded-9472-e23368017ce1'}\n", + "create_datetime": "2021-03-31T08:18:55.832Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 204, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6fcd4736-939d-4f8b-bba9-0930943ebe2a'}\n", + "create_datetime": "2021-03-31T08:40:16.459Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 205, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:47d9c73d-e1e7-46c0-a77d-6de12db3540e'}\n", + "create_datetime": "2021-03-31T08:51:48.548Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 206, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ddf43dc7-cd44-4932-8f8e-10e9a2a48dd5'}\n", + "create_datetime": "2021-03-31T10:14:33.683Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 207, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:1ff92d31-d8eb-47bc-8e8f-d502d0071c43'}\n", + "create_datetime": "2021-03-31T10:32:25.899Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 208, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:768f7fb5-7244-449f-a06f-d50417805c8a'}\n", + "create_datetime": "2021-03-31T10:36:12.428Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 209, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ffdcf74a-732d-4ac3-80ac-07362e9a32ee'}\n", + "create_datetime": "2021-03-31T10:52:46.577Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 210, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:164ec6a7-68c4-4e08-b423-782503eb6c92'}\n", + "create_datetime": "2021-03-31T11:08:44.177Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 211, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ebea9f04-9bd6-44ec-b0b9-f21c288f8034'}\n", + "create_datetime": "2021-03-31T13:18:06.469Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 212, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:cc9463a7-081c-4584-89fe-97836bd61740'}\n", + "create_datetime": "2021-03-31T13:48:33.011Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 213, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b1e429b9-c9bd-44c6-921f-60566f3ac61b'}\n", + "create_datetime": "2021-03-31T13:48:47.952Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 214, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:80d75800-6e8c-46a7-8b2b-88dc47d9661f'}\n", + "create_datetime": "2021-03-31T15:00:27.364Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 215, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c42ad144-c7b9-40ba-af56-8213f0c1766d'}\n", + "create_datetime": "2021-04-01T08:15:24.892Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 216, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f6535aa8-400d-4ed5-bcec-87872980ba9e'}\n", + "create_datetime": "2021-04-01T08:29:05.335Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 217, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0e344318-a8a1-4e8a-a3bb-2a1688edc0e1'}\n", + "create_datetime": "2021-04-01T08:52:05.075Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 218, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a472cc79-4722-46d4-ab49-c372fff28222'}\n", + "create_datetime": "2021-04-01T09:04:42.400Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 219, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3d04f9ea-5168-4801-b9f7-f7cb16727576'}\n", + "create_datetime": "2021-04-01T09:06:31.863Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 220, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a193a27a-6a9e-41f7-bf40-289e1e7922f7'}\n", + "create_datetime": "2021-04-01T09:08:28.315Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 221, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:21d63b11-522d-4777-9d38-4df5d1ea7609'}\n", + "create_datetime": "2021-04-01T09:09:57.423Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 222, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:9ea33114-3a1b-46e2-ac23-fa8a1c4eb96c'}\n", + "create_datetime": "2021-04-01T09:11:25.247Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 223, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:01633ced-a3c3-4be9-9414-40d0332472d2'}\n", + "create_datetime": "2021-04-01T09:11:46.420Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 224, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:29ce0053-241a-4bb8-b087-f2d1ffcadbbc'}\n", + "create_datetime": "2021-04-01T09:12:02.140Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 225, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f146c6e2-c246-40e2-88f6-7f93c0ac1bcf'}\n", + "create_datetime": "2021-04-01T09:13:21.224Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 226, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:41a4907d-d7cf-491b-b1cc-516382fd5a8e'}\n", + "create_datetime": "2021-04-01T09:14:23.705Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 227, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d4020eca-4e36-44c0-a037-428cca3ea9d3'}\n", + "create_datetime": "2021-04-01T09:14:29.878Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 228, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c60844a9-84c9-4499-b8f7-68d9c3ec92f1'}\n", + "create_datetime": "2021-04-01T09:16:34.401Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 229, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:1fd13ffa-2ee2-4a44-8b83-019f50c7f55f'}\n", + "create_datetime": "2021-04-01T09:17:48.251Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 230, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:410974c6-99ac-4dc9-b7d3-cf399c0a65d8'}\n", + "create_datetime": "2021-04-01T09:19:00.300Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 231, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:52eb62b9-64e7-477a-b5e9-c6a4f75a565f'}\n", + "create_datetime": "2021-04-01T09:20:13.659Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 232, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:87f3e835-5975-40ad-a70e-4e90f9d88016'}\n", + "create_datetime": "2021-04-01T09:21:51.215Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 233, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e748f075-e24c-45c8-aca2-b60a7b89e8f8'}\n", + "create_datetime": "2021-04-01T09:23:03.260Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 234, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b644d755-d833-4315-a850-4573138637b3'}\n", + "create_datetime": "2021-04-01T09:24:31.767Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 235, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:78e4c00e-a8c2-4f70-a53c-859d35e51e87'}\n", + "create_datetime": "2021-04-01T09:25:41.335Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 236, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:71b6a2b5-0f9a-44b2-8cbb-f835a03df05c'}\n", + "create_datetime": "2021-04-01T09:26:42.199Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 237, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:21410735-c398-4fa9-98ff-6326e3f097f1'}\n", + "create_datetime": "2021-04-01T09:28:03.031Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 238, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:eeb3871f-48f5-44ea-ac77-5d008a8783dd'}\n", + "create_datetime": "2021-04-01T09:29:23.804Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 239, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5b46539f-279d-4967-bddb-88ab2aa3131e'}\n", + "create_datetime": "2021-04-01T09:30:40.411Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 240, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:bc40e83e-e01d-4e78-81f5-5954f20dad7a'}\n", + "create_datetime": "2021-04-01T09:32:13.933Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 241, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3054cb02-f310-4ae3-bf61-26fdf719871a'}\n", + "create_datetime": "2021-04-01T09:33:50.839Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 242, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:afd93948-34bc-465a-84ce-04127a6e8885'}\n", + "create_datetime": "2021-04-01T09:35:08.513Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 243, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2a33e3d4-c2c6-4b40-9fe5-d09406ea634e'}\n", + "create_datetime": "2021-04-01T09:51:54.211Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 244, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c948a2a5-b1d7-43f8-8b51-9fbf2c515ba8'}\n", + "create_datetime": "2021-04-01T09:52:35.732Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 245, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:da86298b-2547-4414-a513-2ec0ec2dc403'}\n", + "create_datetime": "2021-04-01T10:03:39.302Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 246, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7f10792e-3ee8-4839-bb14-5308b2d6dcb3'}\n", + "create_datetime": "2021-04-01T10:04:39.332Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 247, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7982e446-50ba-49c2-bbc1-cc1b6d4f81e9'}\n", + "create_datetime": "2021-04-01T13:13:45.899Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 248, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d9227cdb-c282-453d-9f3e-66758e0ef706'}\n", + "create_datetime": "2021-04-06T08:38:41.925Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 249, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c38cd93c-8065-45b1-a1c8-3e12677049a9'}\n", + "create_datetime": "2021-04-06T08:38:56.891Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 250, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:14a7c239-3543-4f12-9e9b-53ead173044f'}\n", + "create_datetime": "2021-04-06T08:40:32.619Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 251, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5c65f176-5b13-43ba-a021-0b0225bcb8e7'}\n", + "create_datetime": "2021-04-06T08:42:46.392Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 252, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:14993730-bec8-4f43-bf00-2fe6dd8182f8'}\n", + "create_datetime": "2021-04-06T08:44:40.762Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 253, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7e2a2a85-dd12-4072-988b-a444ebc6d5b0'}\n", + "create_datetime": "2021-04-06T08:49:20.367Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 254, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d4a9918d-ecdd-4486-8224-51598efd858a'}\n", + "create_datetime": "2021-04-06T09:49:37.440Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 255, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f77bd683-b61f-4004-b91f-e233ef03082e'}\n", + "create_datetime": "2021-04-06T10:56:38.873Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 256, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5e63e077-5c77-416a-adf3-2a3b877b9dd1'}\n", + "create_datetime": "2021-04-06T10:57:38.358Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 257, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3c69396e-5a41-439e-be4f-f50bc945903a'}\n", + "create_datetime": "2021-04-06T11:11:39.773Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 258, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:dd97b42f-fe20-4910-9aa1-4fe20bc4ee96'}\n", + "create_datetime": "2021-04-06T11:13:41.173Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 259, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:82893f5b-19ee-4201-8912-3462ab3f3a7b'}\n", + "create_datetime": "2021-04-06T11:38:20.005Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 260, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:8abd5683-c658-4b8b-a1bb-ac19b2fc5bc1'}\n", + "create_datetime": "2021-04-06T11:39:35.774Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 261, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:1279bdf6-9e26-42ad-a1e0-d37616d23194'}\n", + "create_datetime": "2021-04-06T12:18:53.336Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 262, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:95ae9eb1-82e8-4119-ab0f-3b34f2e7aaca'}\n", + "create_datetime": "2021-04-06T12:23:23.856Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 263, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7ff111b1-2595-46da-9907-86b737e47b01'}\n", + "create_datetime": "2021-04-06T13:46:42.773Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 264, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0a4843f5-bd4d-476a-875a-454220139974'}\n", + "create_datetime": "2021-04-06T13:53:54.252Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 265, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d05e0e8d-179d-4d7a-b5be-471453c664ac'}\n", + "create_datetime": "2021-04-06T14:05:29.832Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 266, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3fe6e60e-850f-4a59-b9e1-bdeff56e0a1d'}\n", + "create_datetime": "2021-04-06T14:22:38.990Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 267, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d82acd60-b559-4f1c-9270-fb922ef20f63'}\n", + "create_datetime": "2021-04-06T15:11:42.024Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 268, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3af422eb-3331-494e-a02e-da2488ca1e98'}\n", + "create_datetime": "2021-04-07T07:15:00.314Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 269, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:adcfda6d-b87c-4fdf-9c37-29aac0164167'}\n", + "create_datetime": "2021-04-07T07:26:43.319Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 270, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ec5bae5f-7fb6-45af-bb18-c0cb90993750'}\n", + "create_datetime": "2021-04-07T08:47:51.173Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 271, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a1a7b0a4-66b2-4de1-951b-55aac7dabe07'}\n", + "create_datetime": "2021-04-07T09:24:38.294Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 272, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2d55a142-f861-43a2-9caf-4646cdea1b5f'}\n", + "create_datetime": "2021-04-07T09:27:25.929Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 273, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3389a7e9-cbbe-43aa-8a05-41874358248f'}\n", + "create_datetime": "2021-04-07T09:43:13.953Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 274, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e58d1e27-6ddf-4eb6-b79b-4fbc7d122921'}\n", + "create_datetime": "2021-04-07T11:19:32.953Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 275, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:85bbcaa7-63fd-4dc2-863e-0ed918b06a9b'}\n", + "create_datetime": "2021-04-07T11:30:27.710Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 276, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b4b095fc-8c43-4c6b-9033-64fc2e1d9c21'}\n", + "create_datetime": "2021-04-07T11:34:16.328Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 277, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5c7f4828-431e-42f8-b2d9-3cdd930ebb97'}\n", + "create_datetime": "2021-04-07T12:02:01.174Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 278, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:60d57a63-baa2-4c5b-a69b-ffe9811b9570'}\n", + "create_datetime": "2021-04-07T12:35:35.917Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 279, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:af13ea62-3ec5-4604-96ec-a7f0a9357017'}\n", + "create_datetime": "2021-04-07T15:12:22.049Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 280, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0d196448-7ff5-423d-aac5-8056dd111588'}\n", + "create_datetime": "2021-04-07T15:28:29.724Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 281, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:aeda0596-0494-4c5e-a6f6-2bfd40035b7f'}\n", + "create_datetime": "2021-04-07T15:39:17.308Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 282, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0d83f4f2-c863-4f0b-94ea-cb3f73d09e6b'}\n", + "create_datetime": "2021-04-07T15:53:25.949Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 283, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a2089c88-d158-4de1-9a9f-d2155b6ce259'}\n", + "create_datetime": "2021-04-07T17:30:33.965Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 284, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5e9c1e09-0a1f-4f6d-bdae-d063f73ad663'}\n", + "create_datetime": "2021-04-07T17:59:48.902Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 285, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6ebbbf0c-cbc9-4079-9975-5ffa8e1d8827'}\n", + "create_datetime": "2021-04-07T19:34:54.941Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 286, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0ab22fd4-24fa-4395-a936-71a3f9f6b442'}\n", + "create_datetime": "2021-04-08T06:35:06.235Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 287, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ca185a93-1567-446d-8202-ae2bc85a4e7e'}\n", + "create_datetime": "2021-04-08T06:36:11.354Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 288, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0b04a55a-90a4-4160-bdd8-e4e15fdd17d8'}\n", + "create_datetime": "2021-04-08T07:20:25.582Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 289, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:64333518-48ad-4463-80db-16c404415b8d'}\n", + "create_datetime": "2021-04-08T07:22:40.742Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 290, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:13348abe-7f2f-44ab-95af-f2eea6545d07'}\n", + "create_datetime": "2021-04-08T08:18:36.850Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 291, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b57815e2-a934-4875-a65e-0236552062d5'}\n", + "create_datetime": "2021-04-08T08:18:42.614Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 292, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e8ecabcb-3a6e-4e64-bae7-7493e859d106'}\n", + "create_datetime": "2021-04-08T08:20:03.310Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 293, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ee9e4c33-0a60-48ae-8e72-22823949ca8e'}\n", + "create_datetime": "2021-04-08T08:21:31.448Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 294, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f704f8c0-9f08-48b1-9511-810f9f694e86'}\n", + "create_datetime": "2021-04-08T08:27:06.116Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 295, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:9cc60bc7-d569-41e6-9c13-f58c1669bb6f'}\n", + "create_datetime": "2021-04-08T08:41:17.534Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 296, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:660906f8-59e3-41b2-9db7-13113d437c0e'}\n", + "create_datetime": "2021-04-08T08:57:43.305Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 297, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0bda97cd-f98b-4d0f-a303-44b788b1f368'}\n", + "create_datetime": "2021-04-08T09:19:06.342Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 298, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4a184680-72ba-4381-a9e2-b5b073057038'}\n", + "create_datetime": "2021-04-08T09:37:38.273Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 299, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0f579de5-ea86-43de-a8ff-8ab170d6664c'}\n", + "create_datetime": "2021-04-08T09:40:33.520Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 300, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:c49d0876-0db5-4773-9c04-d2d2052e2557'}\n", + "create_datetime": "2021-04-08T09:51:29.925Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 301, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2add64aa-3d74-446b-9f4d-d6fae8d2a2e5'}\n", + "create_datetime": "2021-04-08T12:37:46.270Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 302, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:fe44c8d7-1c12-4c6d-9a4b-888881f884f5'}\n", + "create_datetime": "2021-04-08T14:37:32.405Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 303, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:564bcc77-9a26-4517-a6a7-183f18724e08'}\n", + "create_datetime": "2021-04-08T14:47:34.242Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 304, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:bcaef8c9-8c61-43cc-9d15-f22d878e7f99'}\n", + "create_datetime": "2021-04-08T14:56:10.229Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 305, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f8ae2d72-3e6a-4d5c-833c-aabc121ae643'}\n", + "create_datetime": "2021-04-08T15:21:28.240Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 306, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7b06c84f-93af-4e63-8ebe-2faf3feaf3e9'}\n", + "create_datetime": "2021-04-08T15:28:52.729Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 307, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:503b9aad-faea-4b8d-9562-eb299e2b0f9f'}\n", + "create_datetime": "2021-04-09T11:32:15.158Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 308, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:69a09fd7-c845-4095-b661-4957530c5b59'}\n", + "create_datetime": "2021-04-09T11:37:40.610Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 309, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:636e65a7-da1d-4ac1-9a84-2bb3ce119a91'}\n", + "create_datetime": "2021-04-12T07:23:09.589Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 310, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:65ef6cc9-e43f-400b-9f56-d70978babd16'}\n", + "create_datetime": "2021-04-12T07:30:14.413Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 311, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2987564d-f975-40ce-99f9-809fe0b6bbd5'}\n", + "create_datetime": "2021-04-12T07:49:50.911Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 312, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:667a1bcb-6931-443f-9911-bea440c97894'}\n", + "create_datetime": "2021-04-12T11:18:19.415Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 313, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:01e7c939-be6a-4dc4-a833-bcfa39a06aed'}\n", + "create_datetime": "2021-04-12T12:16:51.850Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 314, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:231e6d2b-8543-410a-b640-b2499e1158a2'}\n", + "create_datetime": "2021-04-12T12:22:41.310Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 315, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6f9af525-7a7e-4815-9cb5-2136fc2991d3'}\n", + "create_datetime": "2021-04-12T13:56:51.882Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 316, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:20872bd1-1102-4c7f-9b5e-e94add9074a7'}\n", + "create_datetime": "2021-04-12T13:58:17.373Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 317, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:aab6ccb1-9e91-4601-a050-426ca0c3a9d1'}\n", + "create_datetime": "2021-04-12T14:03:15.238Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 318, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:bb861bb3-caf4-4e0c-8da3-af5e63ef3348'}\n", + "create_datetime": "2021-04-12T15:35:24.166Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 319, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f99a8e92-2ecb-4319-808f-e97bb9deaefc'}\n", + "create_datetime": "2021-04-13T08:18:04.622Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 320, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:cbfb682d-baa9-476a-aa43-c11c8c57e969'}\n", + "create_datetime": "2021-04-13T09:02:22.214Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 321, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:28304c73-7b11-4cdd-94c8-b132f0b8fd7d'}\n", + "create_datetime": "2021-04-13T10:15:06.510Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 322, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:fa5551f8-eb14-4740-a48c-5211717d11af'}\n", + "create_datetime": "2021-04-13T15:08:06.866Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 323, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d1ccea90-64e2-4eb2-8ac7-d08abc714e12'}\n", + "create_datetime": "2021-04-13T15:23:04.443Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 324, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:3da4a901-e633-4324-bfcb-42066db7e4ba'}\n", + "create_datetime": "2021-04-13T18:42:21.067Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 325, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b3b929f1-e017-4898-8e27-6ffa34e6e04a'}\n", + "create_datetime": "2021-04-14T06:41:37.418Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 326, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:00929060-e1e1-43af-a247-cb62405b6819'}\n", + "create_datetime": "2021-04-14T06:52:29.641Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 327, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:562b80c3-216e-4020-9103-1e1b1bec5b1e'}\n", + "create_datetime": "2021-04-14T07:42:46.674Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 328, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:afb35a15-bc42-4ee5-b22f-6cee4732e0e7'}\n", + "create_datetime": "2021-04-14T08:54:52.983Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 329, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:80c79ab6-4b8d-4c0c-8e86-fccaab6f2714'}\n", + "create_datetime": "2021-04-14T09:28:25.530Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 330, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:587e63d1-7624-45f3-a684-da56df77dcda'}\n", + "create_datetime": "2021-04-14T09:58:08.373Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 331, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d1dc63c7-9a31-4cf6-8864-ff923effc651'}\n", + "create_datetime": "2021-04-14T10:25:46.109Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 332, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:517a4d66-0f9e-4651-921c-b2dfd8cad966'}\n", + "create_datetime": "2021-04-14T10:41:50.678Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 333, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:20f8e506-f6f4-49fa-88ec-fd5e10bb2aff'}\n", + "create_datetime": "2021-04-14T11:04:34.761Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 334, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:1a2b1ce9-2413-46b2-b9cb-fc59397285d3'}\n", + "create_datetime": "2021-04-14T11:57:58.690Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 335, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:65ffbb61-5506-44d1-a4a1-7d941bbca8cf'}\n", + "create_datetime": "2021-04-14T12:16:40.591Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 336, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:aae1a213-93a2-4f90-8c83-a22c694f6b8d'}\n", + "create_datetime": "2021-04-14T14:52:19.304Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 337, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5653582e-c3f8-469c-b37d-3fae5b17d8a0'}\n", + "create_datetime": "2021-04-14T14:56:57.004Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 338, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2cfe9c4a-2347-45d7-9259-a50ad9cdd509'}\n", + "create_datetime": "2021-04-14T15:00:12.574Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 339, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a15fd489-2204-4be1-9dd8-872d2595a994'}\n", + "create_datetime": "2021-04-14T15:12:38.164Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 340, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f3a19440-8324-475e-8146-6c071163612b'}\n", + "create_datetime": "2021-04-15T07:13:53.617Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 341, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:21ff44b7-72dd-4645-9d88-d9d796015e5d'}\n", + "create_datetime": "2021-04-15T07:45:35.626Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 342, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:bd5c21de-c851-4504-8ba3-bd247096c8ad'}\n", + "create_datetime": "2021-04-15T07:47:20.045Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 343, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ee9954a5-3322-46e0-b7d0-7bd17e470c6c'}\n", + "create_datetime": "2021-04-15T07:54:51.589Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 344, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:8fb3aaf4-d5d0-4020-9096-56f590d8689d'}\n", + "create_datetime": "2021-04-15T08:06:16.149Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 345, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:bb323466-471d-4874-aab4-c59871f41c3a'}\n", + "create_datetime": "2021-04-15T08:15:20.877Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 346, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:21d4a3f3-6e44-4e82-a227-b5357ea2707f'}\n", + "create_datetime": "2021-04-15T10:50:42.361Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 347, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7766507f-af15-4481-a355-0065c7e970cb'}\n", + "create_datetime": "2021-04-15T10:52:30.220Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 348, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:430cb8d0-e15e-42f2-bcfa-6c186f1279f3'}\n", + "create_datetime": "2021-04-15T11:22:09.913Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 349, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:dbeaf10b-4097-4531-a230-a976fe9f17be'}\n", + "create_datetime": "2021-04-15T12:06:00.260Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 350, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7fe173dc-6d25-4fcd-b156-deb9925c7bd6'}\n", + "create_datetime": "2021-04-16T10:45:55.523Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 351, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:2d0b2afd-c950-48c4-bb75-7023a943cffe'}\n", + "create_datetime": "2021-04-16T11:24:18.688Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 352, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a19556b1-8ee6-455e-b604-5b1473be5d51'}\n", + "create_datetime": "2021-04-19T07:46:41.268Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 353, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a1e377bb-17e8-4fc6-bd87-08226b51c48c'}\n", + "create_datetime": "2021-04-19T12:48:32.595Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 354, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:72e0166c-b4a4-44f3-b6d6-e9988051464c'}\n", + "create_datetime": "2021-04-19T14:30:09.259Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 355, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b289523d-14cf-4b7e-a33b-76c01b66a50b'}\n", + "create_datetime": "2021-04-20T09:50:49.211Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 356, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e2c1a36d-e8cf-4d36-9ca9-decb4cc12ad2'}\n", + "create_datetime": "2021-04-20T12:36:37.706Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 357, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:cfac5a98-a121-41af-aa21-ac2e0662492c'}\n", + "create_datetime": "2021-04-20T13:48:17.987Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 358, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f06d4f1b-a026-43d3-89b3-e813605706c6'}\n", + "create_datetime": "2021-04-20T20:42:47.266Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 359, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:7a4fde88-c198-4422-b502-3e83879b9dee'}\n", + "create_datetime": "2021-04-21T08:14:48.652Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 360, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b7bb3850-9c30-4565-9298-2c5ec98977b0'}\n", + "create_datetime": "2021-04-21T15:15:56.638Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 361, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4b8073e7-d7a2-4a54-8288-852132e40a29'}\n", + "create_datetime": "2021-04-21T17:24:27.679Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 362, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e5b6b833-ad6d-4cdf-8a8b-7a0e97be7074'}\n", + "create_datetime": "2021-04-22T06:45:10.913Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 363, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:01ed0dbf-9c1d-4a27-b631-7f7d3dff7036'}\n", + "create_datetime": "2021-04-22T08:58:29.080Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 364, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f2a3c65c-db9c-419b-b191-12598dd6e316'}\n", + "create_datetime": "2021-04-22T11:42:19.191Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 365, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:9f4c15c1-30c1-4157-8a9d-6de82beff5a9'}\n", + "create_datetime": "2021-04-22T12:49:36.172Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 366, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b097acb2-6985-4b79-9a8b-9a99c9835d88'}\n", + "create_datetime": "2021-04-22T13:19:41.482Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 367, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f19cb2c9-4469-4b44-baa1-b7b3b3098247'}\n", + "create_datetime": "2021-04-22T13:22:07.596Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 368, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:058b6c77-4167-42c3-8745-896e5537fdfb'}\n", + "create_datetime": "2021-04-22T13:32:35.597Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 369, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e4015a3d-50d7-40e3-9cd9-ef8b1a24053f'}\n", + "create_datetime": "2021-04-22T14:14:50.196Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 370, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5fb6fd53-2786-4029-a652-b5e0518c5295'}\n", + "create_datetime": "2021-04-22T14:18:47.774Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 371, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:e109e4f8-7dc5-4c46-99cc-a16786cef091'}\n", + "create_datetime": "2021-04-22T14:24:18.053Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 372, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:f85c7de5-91bd-4ec0-b244-76cbbe970331'}\n", + "create_datetime": "2021-04-22T14:57:18.385Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 373, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:84fa4242-eb6e-4213-83f8-964ea68108e9'}\n", + "create_datetime": "2021-05-03T12:04:01.398Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 374, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4701e7dd-6ce0-48f9-b723-a33ce34e8093'}\n", + "create_datetime": "2021-05-03T15:03:52.665Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 375, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ac202705-06e9-4d1c-afd8-160cd7e60d0f'}\n", + "create_datetime": "2021-05-04T08:22:39.500Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 376, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:07135ac6-ca2d-47b5-b1a2-f89cd233fec4'}\n", + "create_datetime": "2021-05-05T13:58:54.317Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 377, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a9f7273e-2579-4eda-9c0f-65638a306394'}\n", + "create_datetime": "2021-05-05T21:44:14.949Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 378, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:d0759e0e-199b-4232-9478-c2d3f3a5f875'}\n", + "create_datetime": "2021-05-05T21:46:32.958Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 379, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:22fa9846-e055-405f-a856-e5026340d638'}\n", + "create_datetime": "2021-05-05T21:55:00.638Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 380, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6346c90d-cca7-4fd7-bb8a-f277c77d81fd'}\n", + "create_datetime": "2021-05-05T23:13:48.666Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 381, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:8b12f4e4-36e1-4122-b5c0-2169c4be00b4'}\n", + "create_datetime": "2021-05-06T07:25:09.371Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 382, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:43c6e55c-e760-4a2e-bfb8-9b99059c7b13'}\n", + "create_datetime": "2021-05-06T11:13:47.150Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 383, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:8cb14290-74a3-4804-a349-af3889a6aa0a'}\n", + "create_datetime": "2021-05-06T11:44:24.153Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 384, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4aaf8a1e-50a5-4dc4-91ab-7221f37a85a5'}\n", + "create_datetime": "2021-05-07T14:12:49.834Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 385, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:cddf2554-21b4-4fea-971f-68c1ddff54d7'}\n", + "create_datetime": "2021-05-07T14:18:37.957Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 386, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:aa9bd081-bed4-405b-9bd4-80ee7d66090c'}\n", + "create_datetime": "2021-05-07T14:19:26.262Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 387, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ad3e1ac5-3f58-4d83-b449-aa45ba423e3d'}\n", + "create_datetime": "2021-05-07T14:19:56.645Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 388, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:02d3eae7-fde6-4a07-9b46-3e560ec3a456'}\n", + "create_datetime": "2021-05-07T14:25:01.302Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 389, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:10e08b98-fa73-4d13-b737-5c1411b0e308'}\n", + "create_datetime": "2021-05-07T14:43:59.260Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 390, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:9c41af57-949a-40ed-bf4d-6e4d1162e64e'}\n", + "create_datetime": "2021-05-10T09:53:21.052Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 391, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b1ffc8c9-33d4-4ab0-bd85-e98818539a0d'}\n", + "create_datetime": "2021-05-10T10:28:47.375Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 392, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:84654fbd-b986-4382-aa22-5811d5eb8d5f'}\n", + "create_datetime": "2021-05-10T13:14:11.682Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 393, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:8c3bd580-2be5-4167-ba67-b4e39ed51f5e'}\n", + "create_datetime": "2021-05-10T13:29:58.718Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 394, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:b04d1b50-c452-4632-b0c8-c3393086d584'}\n", + "create_datetime": "2021-05-10T13:41:34.055Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 395, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:881fd3c5-c53f-4308-9302-78784ecb94b7'}\n", + "create_datetime": "2021-05-10T13:44:05.699Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 396, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:a4d99fdd-0230-4266-8f9d-079ac25b6b9f'}\n", + "create_datetime": "2021-05-10T14:18:55.545Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 397, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:55e3f374-17db-49d3-b46a-2c37b90fa8e6'}\n", + "create_datetime": "2021-05-10T14:20:11.229Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 398, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:6d92f96f-c36c-4e57-9fba-b5130b9a3a40'}\n", + "create_datetime": "2021-05-10T14:20:50.127Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 399, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0b7a35b6-fe3e-4069-97ce-17833b9a0a20'}\n", + "create_datetime": "2021-05-10T14:22:42.046Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 400, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:28d1cb7b-f786-42c0-a695-17427e609f29'}\n", + "create_datetime": "2021-05-10T14:44:59.780Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 401, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4a3e2039-fd8d-42fd-afae-786b871a30df'}\n", + "create_datetime": "2021-05-11T07:21:53.906Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 402, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:0732497d-2521-4c49-9d13-82dcb753ad25'}\n", + "create_datetime": "2021-05-11T11:17:25.538Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 403, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ef725223-8e22-40e8-9945-0f671dce8f24'}\n", + "create_datetime": "2021-05-11T12:21:43.731Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 404, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:ec3c6505-d3aa-4a9d-b6af-5092702163c0'}\n", + "create_datetime": "2021-05-11T12:22:18.771Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 405, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:56d72110-390e-401f-b53b-c0d410bd2ab1'}\n", + "create_datetime": "2021-05-11T12:22:59.767Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 406, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:afbed2a9-d496-473d-a1d1-3caf19407a37'}\n", + "create_datetime": "2021-05-11T12:27:27.670Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 407, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:5a01c5c9-bcc4-4c9b-996b-caf68c71979a'}\n", + "create_datetime": "2021-05-12T09:33:17.328Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 408, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://notificaties-api.vng.cloud/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://notificaties-api.vng.cloud/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://notificaties-api.vng.cloud/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:cdd1f9b8-3aba-4c2e-afa7-12a267a4719d'}\n", + "create_datetime": "2021-05-12T13:37:16.877Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 409, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:4a176063-4933-4cac-b365-05372501807c'}\n", + "create_datetime": "2021-05-12T14:35:39.553Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 410, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 940, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'type': 'https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/ref/fouten/PermissionDenied/', 'code': 'permission_denied', 'title': 'Je hebt geen toestemming om deze actie uit te voeren.', 'status': 403, 'detail': 'Je hebt geen toestemming om deze actie uit te voeren.', 'instance': 'urn:uuid:dc004644-dbda-4cd1-9375-91e52ae7785c'}\n", + "create_datetime": "2021-05-12T14:37:10.019Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 411, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 943, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'hoofdObject': ['Dit veld mag niet leeg zijn.'], 'resourceUrl': ['Dit veld mag niet leeg zijn.']}\n", + "create_datetime": "2021-05-21T12:53:56.981Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 412, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 943, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'hoofdObject': ['Dit veld mag niet leeg zijn.'], 'resourceUrl': ['Dit veld mag niet leeg zijn.']}\n", + "create_datetime": "2021-05-21T12:59:40.477Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 413, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 943, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'hoofdObject': ['Dit veld mag niet leeg zijn.'], 'resourceUrl': ['Dit veld mag niet leeg zijn.']}\n", + "create_datetime": "2021-05-21T13:09:46.680Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 414, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 943, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'hoofdObject': ['Dit veld mag niet leeg zijn.'], 'resourceUrl': ['Dit veld mag niet leeg zijn.']}\n", + "create_datetime": "2021-05-21T13:16:54.389Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 415, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 943, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'hoofdObject': ['Dit veld mag niet leeg zijn.'], 'resourceUrl': ['Dit veld mag niet leeg zijn.']}\n", + "create_datetime": "2021-05-21T13:19:55.577Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 416, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 943, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'hoofdObject': ['Dit veld mag niet leeg zijn.'], 'resourceUrl': ['Dit veld mag niet leeg zijn.']}\n", + "create_datetime": "2021-05-21T13:22:06.153Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 417, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 943, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'hoofdObject': ['Dit veld mag niet leeg zijn.'], 'resourceUrl': ['Dit veld mag niet leeg zijn.']}\n", + "create_datetime": "2021-05-21T13:23:23.935Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 418, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 943, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'hoofdObject': ['Dit veld mag niet leeg zijn.'], 'resourceUrl': ['Dit veld mag niet leeg zijn.']}\n", + "create_datetime": "2021-05-21T13:28:28.529Z" + } +}, { + "model": "django_db_logger.statuslog", + "pk": 419, + "fields": { + "logger_name": "vng_api_common.notifications.viewsets", + "level": 30, + "msg": "Could not deliver message to https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "trace": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 246, in request\n response.raise_for_status()\n File \"/usr/local/lib/python3.7/site-packages/requests/models.py\", line 943, in raise_for_status\n raise HTTPError(http_error_msg, response=self)\nrequests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/notificaties\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/usr/local/lib/python3.7/site-packages/vng_api_common/notifications/viewsets.py\", line 182, in _send\n client.create(\"notificaties\", message)\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 286, in create\n url, operation_id, method=\"POST\", json=data, expected_status=201\n File \"/usr/local/lib/python3.7/site-packages/zds_client/client.py\", line 250, in request\n raise ClientError(response_json) from exc\nzds_client.client.ClientError: {'hoofdObject': ['Dit veld mag niet leeg zijn.'], 'resourceUrl': ['Dit veld mag niet leeg zijn.']}\n", + "create_datetime": "2021-05-21T13:30:01.376Z" + } +}, { + "model": "vng_api_common.jwtsecret", + "pk": 1, + "fields": { + "identifier": "Zaken-Backend", + "secret": "8a1602e039fb4a5eae1473e76b420202" + } +}, { + "model": "vng_api_common.jwtsecret", + "pk": 2, + "fields": { + "identifier": "hallo", + "secret": "hallo" + } +}, { + "model": "vng_api_common.jwtsecret", + "pk": 3, + "fields": { + "identifier": "open-notificaties", + "secret": "IGaoYXF96ukJEc1nbQPR" + } +}, { + "model": "vng_api_common.jwtsecret", + "pk": 4, + "fields": { + "identifier": "open-zaak", + "secret": "KrwdKlOh7AWExjP6z+VG" + } +}, { + "model": "vng_api_common.jwtsecret", + "pk": 5, + "fields": { + "identifier": "test", + "secret": "test" + } +}, { + "model": "vng_api_common.jwtsecret", + "pk": 6, + "fields": { + "identifier": "test2", + "secret": "test" + } +}, { + "model": "vng_api_common.jwtsecret", + "pk": 7, + "fields": { + "identifier": "test3", + "secret": "test" + } +}, { + "model": "vng_api_common.jwtsecret", + "pk": 8, + "fields": { + "identifier": "test4", + "secret": "test4" + } +}, { + "model": "authorizations.applicatie", + "pk": 1, + "fields": { + "uuid": "500f769b-546d-418b-a758-459b280b93a7", + "client_ids": "[\"Zaken-Backend\"]", + "label": "Zaken-Backend", + "heeft_alle_autorisaties": true + } +}, { + "model": "authorizations.applicatie", + "pk": 3, + "fields": { + "uuid": "9e03c0dc-3009-4afe-8326-21a4a8edd335", + "client_ids": "[\"open-notificaties\"]", + "label": "Open Notificaties", + "heeft_alle_autorisaties": false + } +}, { + "model": "authorizations.applicatie", + "pk": 4, + "fields": { + "uuid": "2aff91f0-54cd-4618-a85f-60ff41231446", + "client_ids": "[\"open-zaak\"]", + "label": "Open Zaak", + "heeft_alle_autorisaties": false + } +}, { + "model": "authorizations.autorisatie", + "pk": 3, + "fields": { + "applicatie": 4, + "component": "nrc", + "scopes": "[\"notificaties.consumeren\", \"notificaties.publiceren\"]", + "zaaktype": "", + "informatieobjecttype": "", + "besluittype": "", + "max_vertrouwelijkheidaanduiding": "" + } +}, { + "model": "authorizations.autorisatie", + "pk": 5, + "fields": { + "applicatie": 3, + "component": "nrc", + "scopes": "[\"notificaties.consumeren\", \"notificaties.publiceren\"]", + "zaaktype": "", + "informatieobjecttype": "", + "besluittype": "", + "max_vertrouwelijkheidaanduiding": "" + } +}, { + "model": "authorizations.autorisatie", + "pk": 6, + "fields": { + "applicatie": 3, + "component": "ac", + "scopes": "[\"autorisaties.lezen\"]", + "zaaktype": "", + "informatieobjecttype": "", + "besluittype": "", + "max_vertrouwelijkheidaanduiding": "" + } +}, { + "model": "notifications.notificationsconfig", + "pk": 1, + "fields": { + "api_root": "https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/" + } +}, { + "model": "notifications.subscription", + "pk": 3, + "fields": { + "config": 1, + "callback_url": "https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/callbacks", + "client_id": "open-zaak", + "secret": "KrwdKlOh7AWExjP6z+VG", + "channels": "[\"zaken\"]", + "_subscription": "https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/abonnement/81bce80c-325c-46c5-a6a3-a34221801c01" + } +}, { + "model": "zgw_consumers.service", + "pk": 1, + "fields": { + "label": "Notificaties API", + "api_type": "nrc", + "api_root": "https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/", + "client_id": "open-zaak", + "secret": "KrwdKlOh7AWExjP6z+VG", + "auth_type": "zgw", + "header_key": "", + "header_value": "", + "oas": "https://acc.api.wonen.zaken.amsterdam.nl/open-notificaties/api/v1/schema/openapi.yaml", + "nlx": "", + "user_id": "open-zaak", + "user_representation": "Open Zaak" + } +}, { + "model": "zgw_consumers.service", + "pk": 2, + "fields": { + "label": "VNG Selectielijst", + "api_type": "orc", + "api_root": "https://selectielijst.openzaak.nl/api/v1/", + "client_id": "", + "secret": "", + "auth_type": "no_auth", + "header_key": "", + "header_value": "", + "oas": "https://selectielijst.openzaak.nl/api/v1/schema/openapi.yaml", + "nlx": "", + "user_id": "", + "user_representation": "" + } +}, { + "model": "zgw_consumers.service", + "pk": 3, + "fields": { + "label": "Documenten API (extern)", + "api_type": "drc", + "api_root": "http://alfresco-ont.db5fd79b8452baad2e96.kpnappfactory.nl/alfresco/service/drc/v1/", + "client_id": "b91d00dc-c762-4211-9c10-5918c81e5de6", + "secret": "8fBLx4sY4ZUWVjsjfYHtYwYS", + "auth_type": "zgw", + "header_key": "", + "header_value": "", + "oas": "https://acc.api.wonen.zaken.amsterdam.nl/open-zaak/documenten/api/v1/schema/openapi.yaml", + "nlx": "", + "user_id": "open-zaak", + "user_representation": "Open Zaak" + } +}, { + "model": "zgw_consumers.nlxconfig", + "pk": 1, + "fields": { + "directory": "", + "outway": "/" + } +}, { + "model": "drc_cmis.cmisconfig", + "pk": 1, + "fields": { + "client_url": "http://localhost:8082/alfresco/api/-default-/public/cmis/versions/1.1/browse", + "binding": "BROWSER", + "time_zone": "UTC", + "main_repo_id": "", + "client_user": "admin", + "client_password": "admin", + "zaak_folder_path": "/DRC/{{ zaaktype }}/{{ year }}/{{ month }}/{{ day }}/{{ zaak }}/", + "other_folder_path": "/DRC/{{ year }}/{{ month }}/{{ day }}/" + } +}, { + "model": "accounts.user", + "pk": 2, + "fields": { + "password": "pbkdf2_sha256$150000$jClWfs0bKaKz$AZrtbZhCZRZ2EMdXqMi1pxjXyFlihMwUjCLPGo9bbVc=", + "last_login": "2021-08-13T13:45:45.498Z", + "is_superuser": true, + "username": "e.hooijmaijers", + "first_name": "Ester", + "last_name": "Hooijmaijers", + "email": "e.hooijmaijers@amsterdam.nl", + "is_staff": true, + "is_active": true, + "date_joined": "2021-01-21T09:21:43Z", + "groups": [], + "user_permissions": [] + } +}, { + "model": "accounts.user", + "pk": 3, + "fields": { + "password": "pbkdf2_sha256$150000$iQPxyDMinJTP$FZRpM9YQxJli8ubTCa9ZsxBiXzJgEc4Rs7dEVdXo7O4=", + "last_login": "2021-07-09T09:42:47.600Z", + "is_superuser": true, + "username": "c.santanna", + "first_name": "Carla", + "last_name": "Ver\u00e7osa Sant\u2019 Anna", + "email": "c.santanna@amsterdam.nl", + "is_staff": true, + "is_active": true, + "date_joined": "2021-01-21T09:22:03Z", + "groups": [], + "user_permissions": [] + } +}, { + "model": "accounts.user", + "pk": 4, + "fields": { + "password": "pbkdf2_sha256$150000$vRl41yIFr02P$94DgJv/fzzu2uOtLnhdgT/nuoUynfuQ3814ueqjhgGo=", + "last_login": "2021-01-27T09:51:30.875Z", + "is_superuser": true, + "username": "n.van.elten", + "first_name": "Nicoline", + "last_name": "van Elten", + "email": "n.van.elten@amsterdam.nl", + "is_staff": true, + "is_active": true, + "date_joined": "2021-01-21T09:32:00Z", + "groups": [], + "user_permissions": [] + } +}, { + "model": "accounts.user", + "pk": 5, + "fields": { + "password": "pbkdf2_sha256$150000$cxNesYZBDxno$basHMF4QFU3OB9nZBwui5h8u/cnjFg7Ix7R6/PQIQ6g=", + "last_login": "2021-03-09T15:14:22.923Z", + "is_superuser": true, + "username": "emma@tiltshift.nl", + "first_name": "Emma", + "last_name": "Strijdhorst", + "email": "emma@tiltshift.nl", + "is_staff": true, + "is_active": true, + "date_joined": "2021-02-23T15:29:41Z", + "groups": [], + "user_permissions": [] + } +}, { + "model": "accounts.user", + "pk": 6, + "fields": { + "password": "pbkdf2_sha256$150000$ojhvTcKUmYMw$txoxl65l2EhD3gPmH4dDEazKrWtKXeOpSOfasDxrH54=", + "last_login": "2021-08-18T07:46:45.165Z", + "is_superuser": true, + "username": "x.bloemen", + "first_name": "", + "last_name": "", + "email": "", + "is_staff": true, + "is_active": true, + "date_joined": "2021-03-31T17:07:43Z", + "groups": [], + "user_permissions": [] + } +}, { + "model": "accounts.user", + "pk": 7, + "fields": { + "password": "pbkdf2_sha256$150000$2pwmgu6A0MMk$0i3hRVCgV60BxnslGjrHYweOXbJHqK/apv4DT6Cj8nY=", + "last_login": "2021-07-05T11:08:54.507Z", + "is_superuser": true, + "username": "steven_bal", + "first_name": "", + "last_name": "", + "email": "steven@maykinmedia.nl", + "is_staff": true, + "is_active": true, + "date_joined": "2021-05-12T14:00:44.901Z", + "groups": [], + "user_permissions": [] + } +}, { + "model": "accounts.user", + "pk": 8, + "fields": { + "password": "pbkdf2_sha256$150000$hJU1asxefwQH$PLJSK5lu4jfrfu0jtIApc8hYy7omRhuy/Oqk9u7uITA=", + "last_login": "2021-06-23T13:43:21.095Z", + "is_superuser": false, + "username": "tahir.malik", + "first_name": "", + "last_name": "", + "email": "", + "is_staff": true, + "is_active": true, + "date_joined": "2021-06-21T14:25:22Z", + "groups": [8, 9, 10, 11], + "user_permissions": [] + } +}, { + "model": "accounts.user", + "pk": 9, + "fields": { + "password": "pbkdf2_sha256$150000$9V3gE1fYIfZY$NWSYhDZn0ZIWNBOvXWBpfP6MY60HKQpcR8vW84jfraw=", + "last_login": "2021-08-18T07:55:00.947Z", + "is_superuser": true, + "username": "a.lambert@amsterdam.nl", + "first_name": "", + "last_name": "", + "email": "", + "is_staff": true, + "is_active": true, + "date_joined": "2021-08-18T07:54:16Z", + "groups": [], + "user_permissions": [] + } +}, { + "model": "catalogi.catalogus", + "pk": 1, + "fields": { + "_admin_name": "Ruimte en Economie", + "uuid": "fe6b2aaf-9ec3-4430-ac88-486fd68194b7", + "domein": "W", + "rsin": "002564440", + "contactpersoon_beheer_naam": "Ester", + "contactpersoon_beheer_telefoonnummer": "0610704472", + "contactpersoon_beheer_emailadres": "E.Hooijmaijers@amsterdam.nl" + } +}, { + "model": "catalogi.catalogus", + "pk": 2, + "fields": { + "_admin_name": "Ruimte en Economie", + "uuid": "b5f8d88d-55a3-4563-948d-0144943ee65e", + "domein": "P", + "rsin": "002564440", + "contactpersoon_beheer_naam": "Carla Vercosa", + "contactpersoon_beheer_telefoonnummer": "0619272643", + "contactpersoon_beheer_emailadres": "c.santanna@amsterdam.nl" + } +}, { + "model": "catalogi.catalogus", + "pk": 4, + "fields": { + "_admin_name": "", + "uuid": "c16afdd7-0104-4308-aed9-dfc7ee83a449", + "domein": "ZGWT", + "rsin": "000000000", + "contactpersoon_beheer_naam": "Test Persoon", + "contactpersoon_beheer_telefoonnummer": "", + "contactpersoon_beheer_emailadres": "" + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 1, + "fields": { + "datum_begin_geldigheid": "2021-03-12", + "datum_einde_geldigheid": "2021-03-22", + "concept": false, + "uuid": "7623adc0-399d-471c-9ca6-528a26975591", + "omschrijving": "aanschrijving", + "vertrouwelijkheidaanduiding": "intern", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 2, + "fields": { + "datum_begin_geldigheid": "2021-03-12", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "fe3b8473-e7e8-4f12-8aa4-6a932865b785", + "omschrijving": "Buitendienstverslag", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 3, + "fields": { + "datum_begin_geldigheid": "2021-03-22", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "efd6b01e-b6f4-4b15-953b-df6da8359f6b", + "omschrijving": "Rapport van bevindingen", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 4, + "fields": { + "datum_begin_geldigheid": "2021-03-22", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "929cf77d-d6c5-40c5-9916-e56db6496674", + "omschrijving": "Beeldverslag", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 5, + "fields": { + "datum_begin_geldigheid": "2021-03-22", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "abb2cb79-c1aa-4e08-8577-9c6adb9e0a77", + "omschrijving": "Machtiging tot binnentreden", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 6, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "c7a72b49-ab99-490e-b891-3429e7f0eead", + "omschrijving": "Melding", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 7, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "d8479f59-fb69-48f9-8f72-b85fc8823d70", + "omschrijving": "Legalisatiebrief", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 8, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "fc2c1863-b13a-4627-bdaa-024b7d3abe03", + "omschrijving": "Voornemen last onder dwangsom", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 9, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "7cac5192-73d4-4f30-9d80-a93f7621c8aa", + "omschrijving": "Voornemen boete", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 10, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "6a92fbf3-249d-479e-a985-12cc49109828", + "omschrijving": "Voornemen invordering dwangsom", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 11, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "208d53da-1997-4fd8-a9e2-41acc992ad47", + "omschrijving": "Voornemen boete meldplicht", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 12, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "5caf87b6-60c5-4c29-9765-a035f05bc7e4", + "omschrijving": "Voornemen preventieve last", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 13, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "92cc8ec5-bb3c-4bcf-af56-4d28df811e03", + "omschrijving": "Voornemen intrekking vergunning", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 14, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "a446e95f-7ddd-42a0-9085-78f2667d6325", + "omschrijving": "Zienswijze", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 15, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "54d2f378-fdc5-4ba5-9550-d4e9a81824e2", + "omschrijving": "Verzoek tot uitstel", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 16, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "0a540663-02f0-4afe-8f81-ff69092f4dcd", + "omschrijving": "Uitstel indienen zienswijze", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 17, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "76695dd0-7e5d-4e77-ac01-c4490bf1d734", + "omschrijving": "Brief afzien handhaving", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 18, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "ef71444d-58e1-480f-8368-50ca55b737d0", + "omschrijving": "Beschikking boete", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 19, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "f489f3e5-368c-42f1-9be7-bf65b18797b4", + "omschrijving": "Invordering dwangsom", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 20, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "f026359b-db53-4c8f-811d-d0e226c88e9a", + "omschrijving": "Beschikking boete meldplicht", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 21, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "b9fea6f0-4645-4686-906b-c5feb13226de", + "omschrijving": "Preventieve last", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 22, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "b25bafd6-46d9-4093-b682-43938a3abee6", + "omschrijving": "Beschikking last onder dwangsom", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 23, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "9878b7fa-dbb5-45a6-9db8-297fafea1838", + "omschrijving": "Intrekken vergunning", + "vertrouwelijkheidaanduiding": "openbaar", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 24, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "39cba0f2-30b1-4f5e-bbcb-e4f3d2b6efa8", + "omschrijving": "Sluitingsbesluit", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 25, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "eb1207d8-cded-4171-b20b-d802c82e14d0", + "omschrijving": "Heropeningsverzoek", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 26, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "ecf650ce-12c1-41f5-8948-637bbcc3901c", + "omschrijving": "Plan van aanpak", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 27, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "bba1633b-5be8-4556-82f9-7cfda743b4bd", + "omschrijving": "Afwijzingsbrief heropening", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 28, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "5fa3c4b0-7a1e-46a9-ac05-aa2bb7df2cf8", + "omschrijving": "Sleutelteruggaveformulier bij heropening", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 32, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "0afada21-89b9-4927-a099-3a9d9ebaf289", + "omschrijving": "Advertentie", + "vertrouwelijkheidaanduiding": "openbaar", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 33, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "f4768fae-245a-4f06-b085-8b3f6843368f", + "omschrijving": "Correspondentie inkomend", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 34, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "d0f6b562-3b41-4cff-acb9-b63d77f3ea2e", + "omschrijving": "Correspondentie uitgaand", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 35, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "68375032-3e86-49c6-9809-aa5c69732de5", + "omschrijving": "Waarschuwing vergunning", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 36, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "4e7b3c9e-dfd2-430b-87af-504ea1076bdb", + "omschrijving": "Advies externe partij", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 37, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "f372d2f4-8bcb-452d-a869-addd06783534", + "omschrijving": "Handhavingsverzoek", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 38, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "6fee5409-7a2e-4e7c-9afe-02d7ec0122d9", + "omschrijving": "Reactie handhavingsverzoek", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 39, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "9da44630-4fd0-40ff-af5a-0ffa0cb96160", + "omschrijving": "Kopie bezwaarschrift", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.informatieobjecttype", + "pk": 40, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "e590586b-7e86-41a8-8a28-d36ce7dcde2f", + "omschrijving": "Kopie beslissing op bezwaar", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "catalogus": 1 + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 1, + "fields": { + "uuid": "d41274e6-2595-4920-afd6-8182e16be462", + "zaaktype": 2, + "informatieobjecttype": 2, + "volgnummer": 2, + "richting": "intern", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 3, + "fields": { + "uuid": "0bb72cf1-2109-41ba-8c3c-e0c26f29e5ab", + "zaaktype": 2, + "informatieobjecttype": 3, + "volgnummer": 3, + "richting": "intern", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 5, + "fields": { + "uuid": "97b64263-e5d9-4c74-8abb-c9b07e1417cc", + "zaaktype": 2, + "informatieobjecttype": 5, + "volgnummer": 5, + "richting": "intern", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 6, + "fields": { + "uuid": "823ad177-d3b2-4b9b-90aa-b970828cf8b2", + "zaaktype": 2, + "informatieobjecttype": 6, + "volgnummer": 1, + "richting": "inkomend", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 7, + "fields": { + "uuid": "d9375337-3acf-4086-be57-fe7afd600475", + "zaaktype": 3, + "informatieobjecttype": 3, + "volgnummer": 2, + "richting": "intern", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 8, + "fields": { + "uuid": "a528145e-e589-4567-bcd3-aa2592d9f860", + "zaaktype": 3, + "informatieobjecttype": 4, + "volgnummer": 3, + "richting": "intern", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 9, + "fields": { + "uuid": "edd922eb-2c6d-4bba-89e0-6d784074ef88", + "zaaktype": 3, + "informatieobjecttype": 5, + "volgnummer": 1, + "richting": "intern", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 10, + "fields": { + "uuid": "3412c344-4f98-40e6-9b2b-f0f1842e4e7c", + "zaaktype": 3, + "informatieobjecttype": 7, + "volgnummer": 4, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 11, + "fields": { + "uuid": "921c82a4-34f1-4b00-a3a2-98dc81744ce5", + "zaaktype": 3, + "informatieobjecttype": 8, + "volgnummer": 5, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 12, + "fields": { + "uuid": "f976a0db-447b-495c-9f96-5b70790657c3", + "zaaktype": 3, + "informatieobjecttype": 9, + "volgnummer": 7, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 13, + "fields": { + "uuid": "7a0e24fd-d5e1-49b8-a27c-7d22fbf39b41", + "zaaktype": 3, + "informatieobjecttype": 10, + "volgnummer": 8, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 14, + "fields": { + "uuid": "26e291b5-8d7b-4db5-9bac-37278b1ef2d9", + "zaaktype": 3, + "informatieobjecttype": 11, + "volgnummer": 9, + "richting": "intern", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 15, + "fields": { + "uuid": "aac3aa46-9dc5-4925-8e8b-6a77a1a002b6", + "zaaktype": 3, + "informatieobjecttype": 12, + "volgnummer": 10, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 16, + "fields": { + "uuid": "32a92bc7-ea68-46fd-a5da-8521bf9d1b22", + "zaaktype": 3, + "informatieobjecttype": 13, + "volgnummer": 11, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 17, + "fields": { + "uuid": "5c3c4db2-3c08-4d35-964c-d2a66c46c22b", + "zaaktype": 3, + "informatieobjecttype": 14, + "volgnummer": 12, + "richting": "inkomend", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 18, + "fields": { + "uuid": "250632d1-940e-47b9-96e5-751ad404455d", + "zaaktype": 3, + "informatieobjecttype": 15, + "volgnummer": 13, + "richting": "inkomend", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 19, + "fields": { + "uuid": "d24be033-6078-4056-8dee-76e35024c65f", + "zaaktype": 3, + "informatieobjecttype": 16, + "volgnummer": 14, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 20, + "fields": { + "uuid": "951222e3-8288-425e-9f3b-e04c28ba99b2", + "zaaktype": 3, + "informatieobjecttype": 17, + "volgnummer": 15, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 21, + "fields": { + "uuid": "94ccbe9e-133e-4dc4-bf3a-cdac94e84ff8", + "zaaktype": 3, + "informatieobjecttype": 18, + "volgnummer": 16, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 22, + "fields": { + "uuid": "1da6f9bf-63d2-42fb-9af3-47f9cdb62b4e", + "zaaktype": 3, + "informatieobjecttype": 19, + "volgnummer": 17, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 23, + "fields": { + "uuid": "a441dba9-dc1e-4268-b2bd-803a64d8cfd0", + "zaaktype": 3, + "informatieobjecttype": 20, + "volgnummer": 18, + "richting": "intern", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 24, + "fields": { + "uuid": "169291df-d762-4396-9984-9124d256234e", + "zaaktype": 3, + "informatieobjecttype": 21, + "volgnummer": 19, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 25, + "fields": { + "uuid": "9826edfb-ea0a-4ee4-acdb-c31f06da1e09", + "zaaktype": 3, + "informatieobjecttype": 22, + "volgnummer": 20, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 26, + "fields": { + "uuid": "d6c24301-c88c-4da6-b088-d615d283d9c5", + "zaaktype": 3, + "informatieobjecttype": 23, + "volgnummer": 21, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 27, + "fields": { + "uuid": "a5369088-dbfb-4345-836c-949108254f96", + "zaaktype": 3, + "informatieobjecttype": 24, + "volgnummer": 22, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 28, + "fields": { + "uuid": "04b06829-ea44-4a5f-9eef-7699d034b1af", + "zaaktype": 3, + "informatieobjecttype": 25, + "volgnummer": 23, + "richting": "inkomend", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 29, + "fields": { + "uuid": "a81c8e99-899c-458d-b10b-40746a9351a1", + "zaaktype": 3, + "informatieobjecttype": 26, + "volgnummer": 24, + "richting": "inkomend", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 30, + "fields": { + "uuid": "49ffcd57-6002-4e20-b035-329f8eb6f5c9", + "zaaktype": 3, + "informatieobjecttype": 27, + "volgnummer": 25, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 31, + "fields": { + "uuid": "dae6affe-1aa1-4052-98e8-d2e7f460c606", + "zaaktype": 3, + "informatieobjecttype": 28, + "volgnummer": 26, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 32, + "fields": { + "uuid": "70bb4ec4-1157-4932-a909-1bc2aef93d0d", + "zaaktype": 4, + "informatieobjecttype": 19, + "volgnummer": 3, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 33, + "fields": { + "uuid": "db88d08b-66a1-4d52-af9d-1a70e5d8e2b3", + "zaaktype": 4, + "informatieobjecttype": 4, + "volgnummer": 2, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 34, + "fields": { + "uuid": "c72c1a1d-42eb-447b-b647-864cbee8841d", + "zaaktype": 2, + "informatieobjecttype": 32, + "volgnummer": 6, + "richting": "inkomend", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 35, + "fields": { + "uuid": "7539872f-0a47-4cc8-b269-3ab5b901ae37", + "zaaktype": 2, + "informatieobjecttype": 33, + "volgnummer": 7, + "richting": "inkomend", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 36, + "fields": { + "uuid": "da67d76c-8146-4d83-9c96-3321272d27e4", + "zaaktype": 3, + "informatieobjecttype": 33, + "volgnummer": 27, + "richting": "inkomend", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 37, + "fields": { + "uuid": "d2ee7258-1d30-4adc-93d4-2f112a5a7d50", + "zaaktype": 2, + "informatieobjecttype": 34, + "volgnummer": 8, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 38, + "fields": { + "uuid": "2374d0db-9b3a-41bc-b06c-0130c3dad0dd", + "zaaktype": 3, + "informatieobjecttype": 34, + "volgnummer": 28, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 39, + "fields": { + "uuid": "cecde0d1-2576-4ee0-9c3b-ac861d082380", + "zaaktype": 3, + "informatieobjecttype": 35, + "volgnummer": 29, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 40, + "fields": { + "uuid": "02c70ed7-2c92-4e59-a9f6-e0a707e86def", + "zaaktype": 3, + "informatieobjecttype": 36, + "volgnummer": 30, + "richting": "inkomend", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 41, + "fields": { + "uuid": "4c7c313b-b868-48f3-9246-621c8aabce2a", + "zaaktype": 3, + "informatieobjecttype": 37, + "volgnummer": 31, + "richting": "inkomend", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 42, + "fields": { + "uuid": "e33cf158-cace-42e0-b41c-359f42319088", + "zaaktype": 3, + "informatieobjecttype": 38, + "volgnummer": 32, + "richting": "uitgaand", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 43, + "fields": { + "uuid": "03683299-53f8-4305-905f-3d8793599edd", + "zaaktype": 3, + "informatieobjecttype": 39, + "volgnummer": 33, + "richting": "intern", + "statustype": null + } +}, { + "model": "catalogi.zaaktypeinformatieobjecttype", + "pk": 44, + "fields": { + "uuid": "2cdfac32-5870-4710-95dc-18cfebb33604", + "zaaktype": 3, + "informatieobjecttype": 40, + "volgnummer": 34, + "richting": "intern", + "statustype": null + } +}, { + "model": "catalogi.zaaktypenrelatie", + "pk": 1, + "fields": { + "zaaktype": 3, + "gerelateerd_zaaktype": "https://acc.api.wonen.zaken.amsterdam.nl/open-zaak/catalogi/api/v1/zaaktypen/52883e00-2b76-421a-92e3-7a2bea8ff008", + "aard_relatie": "vervolg", + "toelichting": "Handhaving wordt opgestart nadat bij Toezicht een overtreding is geconstateerd" + } +}, { + "model": "catalogi.zaaktypenrelatie", + "pk": 2, + "fields": { + "zaaktype": 2, + "gerelateerd_zaaktype": "https://acc.api.wonen.zaken.amsterdam.nl/open-zaak/catalogi/api/v1/zaaktypen/83c33405-b79c-4df5-aacf-299ca298e0fb", + "aard_relatie": "vervolg", + "toelichting": "" + } +}, { + "model": "catalogi.resultaattype", + "pk": 1, + "fields": { + "uuid": "9b89fc97-d415-4701-8221-946276c36669", + "zaaktype": 2, + "omschrijving": "Toezicht uitgevoerd", + "resultaattypeomschrijving": "https://selectielijst.openzaak.nl/api/v1/resultaattypeomschrijvingen/7cb315fb-4f7b-4a43-aca1-e4522e4c73b3", + "omschrijving_generiek": "Afgehandeld", + "selectielijstklasse": "https://selectielijst.openzaak.nl/api/v1/resultaten/f3fa6648-6cfe-47c5-916f-669e18ea9113", + "archiefnominatie": "vernietigen", + "archiefactietermijn": "P5Y", + "brondatum_archiefprocedure_afleidingswijze": "afgehandeld", + "brondatum_archiefprocedure_datumkenmerk": "", + "brondatum_archiefprocedure_einddatum_bekend": false, + "brondatum_archiefprocedure_objecttype": "", + "brondatum_archiefprocedure_registratie": "", + "brondatum_archiefprocedure_procestermijn": null, + "toelichting": "" + } +}, { + "model": "catalogi.resultaattype", + "pk": 2, + "fields": { + "uuid": "8fa62179-ebbc-4010-a19e-016d59c401a1", + "zaaktype": 2, + "omschrijving": "Toezicht afgebroken", + "resultaattypeomschrijving": "https://selectielijst.openzaak.nl/api/v1/resultaattypeomschrijvingen/ce8cf476-0b59-496f-8eee-957a7c6e2506", + "omschrijving_generiek": "Afgebroken", + "selectielijstklasse": "https://selectielijst.openzaak.nl/api/v1/resultaten/aa8448d5-97de-4387-a365-d876e9d4b396", + "archiefnominatie": "vernietigen", + "archiefactietermijn": "P1Y", + "brondatum_archiefprocedure_afleidingswijze": "afgehandeld", + "brondatum_archiefprocedure_datumkenmerk": "", + "brondatum_archiefprocedure_einddatum_bekend": false, + "brondatum_archiefprocedure_objecttype": "", + "brondatum_archiefprocedure_registratie": "", + "brondatum_archiefprocedure_procestermijn": null, + "toelichting": "" + } +}, { + "model": "catalogi.resultaattype", + "pk": 3, + "fields": { + "uuid": "aeb7e6b8-7937-46ec-a8b4-ed1c15fcfe9b", + "zaaktype": 3, + "omschrijving": "Handhaven uitgevoerd", + "resultaattypeomschrijving": "https://selectielijst.openzaak.nl/api/v1/resultaattypeomschrijvingen/7cb315fb-4f7b-4a43-aca1-e4522e4c73b3", + "omschrijving_generiek": "Afgehandeld", + "selectielijstklasse": "https://selectielijst.openzaak.nl/api/v1/resultaten/0254cc34-4dea-4476-9e44-1db81ee7ffd3", + "archiefnominatie": "vernietigen", + "archiefactietermijn": "P10Y", + "brondatum_archiefprocedure_afleidingswijze": "afgehandeld", + "brondatum_archiefprocedure_datumkenmerk": "", + "brondatum_archiefprocedure_einddatum_bekend": false, + "brondatum_archiefprocedure_objecttype": "", + "brondatum_archiefprocedure_registratie": "", + "brondatum_archiefprocedure_procestermijn": null, + "toelichting": "" + } +}, { + "model": "catalogi.resultaattype", + "pk": 4, + "fields": { + "uuid": "24db8526-abcc-412a-8dc1-c459eb2c0538", + "zaaktype": 3, + "omschrijving": "Handhaven afgebroken", + "resultaattypeomschrijving": "https://selectielijst.openzaak.nl/api/v1/resultaattypeomschrijvingen/ce8cf476-0b59-496f-8eee-957a7c6e2506", + "omschrijving_generiek": "Afgebroken", + "selectielijstklasse": "https://selectielijst.openzaak.nl/api/v1/resultaten/aa8448d5-97de-4387-a365-d876e9d4b396", + "archiefnominatie": "vernietigen", + "archiefactietermijn": "P1Y", + "brondatum_archiefprocedure_afleidingswijze": "afgehandeld", + "brondatum_archiefprocedure_datumkenmerk": "", + "brondatum_archiefprocedure_einddatum_bekend": false, + "brondatum_archiefprocedure_objecttype": "", + "brondatum_archiefprocedure_registratie": "", + "brondatum_archiefprocedure_procestermijn": null, + "toelichting": "" + } +}, { + "model": "catalogi.zaaktype", + "pk": 1, + "fields": { + "datum_begin_geldigheid": "2021-01-27", + "datum_einde_geldigheid": "2021-03-12", + "concept": false, + "uuid": "fa2f784f-601b-43de-bebf-263c82781a71", + "identificatie": "Vakantieverhuur", + "zaaktype_omschrijving": "Vakantieverhuur", + "zaaktype_omschrijving_generiek": "", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "doel": "Vakantieverhuur", + "aanleiding": "Vakantieverhuur", + "toelichting": "", + "indicatie_intern_of_extern": "intern", + "handeling_initiator": "Vakantieverhuur", + "onderwerp": "Vakantieverhuur", + "handeling_behandelaar": "Vakantieverhuur", + "doorlooptijd_behandeling": "P365D", + "servicenorm_behandeling": null, + "opschorting_en_aanhouding_mogelijk": true, + "verlenging_mogelijk": false, + "verlengingstermijn": null, + "trefwoorden": "[]", + "publicatie_indicatie": true, + "publicatietekst": "", + "verantwoordingsrelatie": "[]", + "versiedatum": "2021-01-27", + "producten_of_diensten": "[\"http://www.amsterdam.nl\"]", + "selectielijst_procestype": "", + "selectielijst_procestype_jaar": 2017, + "referentieproces_naam": "Vakantieverhuur", + "referentieproces_link": "", + "catalogus": 1, + "deelzaaktypen": [] + } +}, { + "model": "catalogi.zaaktype", + "pk": 2, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "52883e00-2b76-421a-92e3-7a2bea8ff008", + "identificatie": "ZAAKTYPE-2021-0000000001", + "zaaktype_omschrijving": "Toezicht", + "zaaktype_omschrijving_generiek": "Toezicht uitvoeren", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "doel": "Het vanuit een bevoegdheid, afspraak of overeenkomst inspecteren, controleren en toezien met als doel te controleren of personen of partijen voldoen aan geldende afspraken, wet- of regelgeving en het wanneer nodig corrigerend ingrijpen of opleggen van een sanctie.", + "aanleiding": "Een levering, plaatsing, signaal (melding) van een belanghebbende, een geplande controle of vanuit andere (gemeentelijke) processen.", + "toelichting": "", + "indicatie_intern_of_extern": "extern", + "handeling_initiator": "Opstarten", + "onderwerp": "Toezicht", + "handeling_behandelaar": "Toezien", + "doorlooptijd_behandeling": "P5Y", + "servicenorm_behandeling": null, + "opschorting_en_aanhouding_mogelijk": false, + "verlenging_mogelijk": false, + "verlengingstermijn": null, + "trefwoorden": "[]", + "publicatie_indicatie": false, + "publicatietekst": "", + "verantwoordingsrelatie": "[]", + "versiedatum": "2021-05-21", + "producten_of_diensten": "[]", + "selectielijst_procestype": "https://selectielijst.openzaak.nl/api/v1/procestypen/c844637e-6393-4202-b030-e1bffb08a9b0", + "selectielijst_procestype_jaar": 2020, + "referentieproces_naam": "Toezicht houden", + "referentieproces_link": "https://www.gemmaonline.nl/index.php/GEMMA_Referentiezaaktype_%E2%80%98Toezicht_houden%E2%80%99", + "catalogus": 1, + "deelzaaktypen": [] + } +}, { + "model": "catalogi.zaaktype", + "pk": 3, + "fields": { + "datum_begin_geldigheid": "2021-05-21", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "83c33405-b79c-4df5-aacf-299ca298e0fb", + "identificatie": "ZAAKTYPE-2021-0000000002", + "zaaktype_omschrijving": "Handhaven", + "zaaktype_omschrijving_generiek": "Handhaven", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "doel": "Het vanuit een bevoegdheid, afspraak of overeenkomst inspecteren, controleren en toezien met als doel te controleren of personen of partijen voldoen aan geldende afspraken, wet- of regelgeving en het wanneer nodig corrigerend ingrijpen of opleggen van een sanctie.", + "aanleiding": "Wanneer de gemeente tijdens het uitvoeren van toezicht een overtreding constateert, zal zij overgaan tot de handhavingsprocedure. Na de beoordeling van de overtreding en wanneer een vooraankondiging geen effect heeft gehad, past de gemeente bestuursdwang toe of legt zij een dwangsom op.", + "toelichting": "", + "indicatie_intern_of_extern": "intern", + "handeling_initiator": "Opstarten", + "onderwerp": "Uitgevoerd toezicht", + "handeling_behandelaar": "Handhaven", + "doorlooptijd_behandeling": "P5Y", + "servicenorm_behandeling": null, + "opschorting_en_aanhouding_mogelijk": false, + "verlenging_mogelijk": false, + "verlengingstermijn": null, + "trefwoorden": "[]", + "publicatie_indicatie": false, + "publicatietekst": "", + "verantwoordingsrelatie": "[]", + "versiedatum": "2021-05-21", + "producten_of_diensten": "[]", + "selectielijst_procestype": "https://selectielijst.openzaak.nl/api/v1/procestypen/c844637e-6393-4202-b030-e1bffb08a9b0", + "selectielijst_procestype_jaar": 2020, + "referentieproces_naam": "Toezicht houden", + "referentieproces_link": "https://www.gemmaonline.nl/index.php/GEMMA_Referentiezaaktype_%E2%80%98Toezicht_houden%E2%80%99", + "catalogus": 1, + "deelzaaktypen": [] + } +}, { + "model": "catalogi.zaaktype", + "pk": 4, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "561a0541-d719-4fee-814d-d509c5011823", + "identificatie": "ZAAKTYPE-2021-0000000003", + "zaaktype_omschrijving": "Toezicht", + "zaaktype_omschrijving_generiek": "", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "doel": "test", + "aanleiding": "test", + "toelichting": "", + "indicatie_intern_of_extern": "extern", + "handeling_initiator": "Opstarten", + "onderwerp": "Toezicht", + "handeling_behandelaar": "Toezien", + "doorlooptijd_behandeling": "P5Y", + "servicenorm_behandeling": null, + "opschorting_en_aanhouding_mogelijk": false, + "verlenging_mogelijk": false, + "verlengingstermijn": null, + "trefwoorden": "[\"parkeren\"]", + "publicatie_indicatie": false, + "publicatietekst": "", + "verantwoordingsrelatie": "[]", + "versiedatum": "2021-04-01", + "producten_of_diensten": "[]", + "selectielijst_procestype": "https://selectielijst.openzaak.nl/api/v1/procestypen/c844637e-6393-4202-b030-e1bffb08a9b0", + "selectielijst_procestype_jaar": 2020, + "referentieproces_naam": "Toezien en Handhaven", + "referentieproces_link": "", + "catalogus": 2, + "deelzaaktypen": [] + } +}, { + "model": "catalogi.zaaktype", + "pk": 5, + "fields": { + "datum_begin_geldigheid": "2021-04-01", + "datum_einde_geldigheid": null, + "concept": true, + "uuid": "e68c34e9-f03d-4cc6-a001-4c8a710f86fe", + "identificatie": "ZAAKTYPE-2021-0000000004", + "zaaktype_omschrijving": "Handhaven", + "zaaktype_omschrijving_generiek": "", + "vertrouwelijkheidaanduiding": "vertrouwelijk", + "doel": "test", + "aanleiding": "test", + "toelichting": "", + "indicatie_intern_of_extern": "extern", + "handeling_initiator": "Opstarten", + "onderwerp": "Uitgevoerd toezicht", + "handeling_behandelaar": "Handhaven", + "doorlooptijd_behandeling": "P5Y", + "servicenorm_behandeling": null, + "opschorting_en_aanhouding_mogelijk": false, + "verlenging_mogelijk": false, + "verlengingstermijn": null, + "trefwoorden": "[\"parkeren\"]", + "publicatie_indicatie": false, + "publicatietekst": "", + "verantwoordingsrelatie": "[]", + "versiedatum": "2021-04-01", + "producten_of_diensten": "[]", + "selectielijst_procestype": "https://selectielijst.openzaak.nl/api/v1/procestypen/c844637e-6393-4202-b030-e1bffb08a9b0", + "selectielijst_procestype_jaar": 2020, + "referentieproces_naam": "Toezien en Handhaven", + "referentieproces_link": "", + "catalogus": 2, + "deelzaaktypen": [] + } +}, { + "model": "catalogi.zaaktype", + "pk": 9, + "fields": { + "datum_begin_geldigheid": "2019-01-01", + "datum_einde_geldigheid": null, + "concept": false, + "uuid": "79acd712-1363-4660-8820-57296fbd1ecb", + "identificatie": "1", + "zaaktype_omschrijving": "zrc_tests_1", + "zaaktype_omschrijving_generiek": "", + "vertrouwelijkheidaanduiding": "openbaar", + "doel": "test doel", + "aanleiding": "test aanleiding", + "toelichting": "", + "indicatie_intern_of_extern": "extern", + "handeling_initiator": "indienen", + "onderwerp": "openbare ruimte", + "handeling_behandelaar": "behandelen", + "doorlooptijd_behandeling": "P10D", + "servicenorm_behandeling": null, + "opschorting_en_aanhouding_mogelijk": false, + "verlenging_mogelijk": true, + "verlengingstermijn": "P5D", + "trefwoorden": "[]", + "publicatie_indicatie": false, + "publicatietekst": "", + "verantwoordingsrelatie": "[]", + "versiedatum": "2019-01-01", + "producten_of_diensten": "[\"https://ref.tst.vng.cloud/standaard/\"]", + "selectielijst_procestype": "https://referentielijsten-api.vng.cloud/api/v1/procestypen/81e049e5-b154-4368-b47c-3e2438f82726", + "selectielijst_procestype_jaar": null, + "referentieproces_naam": "test", + "referentieproces_link": "", + "catalogus": 4, + "deelzaaktypen": [] + } +}, { + "model": "config.nlxconfig", + "pk": 1, + "fields": { + "directory": "", + "outway": "" + } +}, { + "model": "config.internalservice", + "pk": 1, + "fields": { + "api_type": "ac", + "enabled": true, + "nlx": true + } +}, { + "model": "config.internalservice", + "pk": 2, + "fields": { + "api_type": "zrc", + "enabled": true, + "nlx": true + } +}, { + "model": "config.internalservice", + "pk": 3, + "fields": { + "api_type": "ztc", + "enabled": true, + "nlx": true + } +}, { + "model": "config.internalservice", + "pk": 4, + "fields": { + "api_type": "drc", + "enabled": false, + "nlx": true + } +}, { + "model": "config.internalservice", + "pk": 5, + "fields": { + "api_type": "brc", + "enabled": true, + "nlx": true + } +}, { + "model": "config.featureflags", + "pk": 1, + "fields": { + "allow_unpublished_typen": false + } +}, { + "model": "selectielijst.referentielijstconfig", + "pk": 1, + "fields": { + "api_root": "https://selectielijst.openzaak.nl/api/v1/", + "allowed_years": "[\"2017\", \"2020\"]", + "default_year": 2020 + } +}] diff --git a/open-zaak/rabbit/rabbit.conf b/open-zaak/rabbit/rabbit.conf new file mode 100644 index 000000000..ea626c53c --- /dev/null +++ b/open-zaak/rabbit/rabbit.conf @@ -0,0 +1,16 @@ +RABBITMQ_DEFAULT_PASS: default_pass +RABBITMQ_DEFAULT_USER: default_user +RABBITMQ_DEFAULT_VHOST: default_vhost +RABBITMQ_MANAGEMENT_SSL_CACERTFILE: management.ssl.cacertfile +RABBITMQ_MANAGEMENT_SSL_CERTFILE: management.ssl.certfile +RABBITMQ_MANAGEMENT_SSL_DEPTH: management.ssl.depth +RABBITMQ_MANAGEMENT_SSL_FAIL_IF_NO_PEER_CERT: management.ssl.fail_if_no_peer_cert +RABBITMQ_MANAGEMENT_SSL_KEYFILE: management.ssl.keyfile +RABBITMQ_MANAGEMENT_SSL_VERIFY: management.ssl.verify +RABBITMQ_SSL_CACERTFILE: ssl_options.cacertfile +RABBITMQ_SSL_CERTFILE: ssl_options.certfile +RABBITMQ_SSL_DEPTH: ssl_options.depth +RABBITMQ_SSL_FAIL_IF_NO_PEER_CERT: ssl_options.fail_if_no_peer_cert +RABBITMQ_SSL_KEYFILE: ssl_options.keyfile +RABBITMQ_SSL_VERIFY: ssl_options.verify +RABBITMQ_VM_MEMORY_HIGH_WATERMARK: vm_memory_high_watermark.*