From 1003483de16ba0698c1911355a6103182d8ab119 Mon Sep 17 00:00:00 2001 From: airbyte Date: Thu, 15 Dec 2022 10:29:27 +0000 Subject: [PATCH] refiner connector source --- .vscode/settings.json | 5 +- .../integration_tests/__init__.py~merged | 3 + .../connectors/source-refiner/.dockerignore | 6 + .../connectors/source-refiner/Dockerfile | 38 + .../connectors/source-refiner/README.md | 132 ++++ .../source-refiner/acceptance-test-config.yml | 32 + .../source-refiner/acceptance-test-docker.sh | 16 + .../connectors/source-refiner/build.gradle | 9 + .../integration_tests/__init__.py | 3 + .../integration_tests/abnormal_state.json | 5 + .../integration_tests/acceptance.py | 17 + .../integration_tests/catalog.json | 89 +++ .../integration_tests/configured_catalog.json | 94 +++ .../integration_tests/invalid_config.json | 3 + .../integration_tests/sample_config.json | 8 + .../integration_tests/sample_state.json | 10 + .../connectors/source-refiner/main.py | 13 + .../connectors/source-refiner/messages.json | 676 ++++++++++++++++++ .../source-refiner/requirements.txt | 2 + .../connectors/source-refiner/setup.py | 30 + .../source-refiner/source_refiner/__init__.py | 8 + .../source_refiner/schemas/TODO.md | 25 + .../source_refiner/schemas/responses.json | 78 ++ .../source-refiner/source_refiner/source.py | 174 +++++ .../source-refiner/source_refiner/spec.yaml | 12 + .../source-refiner/unit_tests/__init__.py | 3 + .../unit_tests/test_incremental_streams.py | 56 ++ .../source-refiner/unit_tests/test_source.py | 22 + .../source-refiner/unit_tests/test_streams.py | 80 +++ 29 files changed, 1648 insertions(+), 1 deletion(-) create mode 100644 airbyte-integrations/connectors/source-hubplanner/integration_tests/__init__.py~merged create mode 100644 airbyte-integrations/connectors/source-refiner/.dockerignore create mode 100644 airbyte-integrations/connectors/source-refiner/Dockerfile create mode 100644 airbyte-integrations/connectors/source-refiner/README.md create mode 100644 airbyte-integrations/connectors/source-refiner/acceptance-test-config.yml create mode 100755 airbyte-integrations/connectors/source-refiner/acceptance-test-docker.sh create mode 100644 airbyte-integrations/connectors/source-refiner/build.gradle create mode 100644 airbyte-integrations/connectors/source-refiner/integration_tests/__init__.py create mode 100644 airbyte-integrations/connectors/source-refiner/integration_tests/abnormal_state.json create mode 100644 airbyte-integrations/connectors/source-refiner/integration_tests/acceptance.py create mode 100644 airbyte-integrations/connectors/source-refiner/integration_tests/catalog.json create mode 100644 airbyte-integrations/connectors/source-refiner/integration_tests/configured_catalog.json create mode 100644 airbyte-integrations/connectors/source-refiner/integration_tests/invalid_config.json create mode 100644 airbyte-integrations/connectors/source-refiner/integration_tests/sample_config.json create mode 100644 airbyte-integrations/connectors/source-refiner/integration_tests/sample_state.json create mode 100644 airbyte-integrations/connectors/source-refiner/main.py create mode 100644 airbyte-integrations/connectors/source-refiner/messages.json create mode 100644 airbyte-integrations/connectors/source-refiner/requirements.txt create mode 100644 airbyte-integrations/connectors/source-refiner/setup.py create mode 100644 airbyte-integrations/connectors/source-refiner/source_refiner/__init__.py create mode 100644 airbyte-integrations/connectors/source-refiner/source_refiner/schemas/TODO.md create mode 100644 airbyte-integrations/connectors/source-refiner/source_refiner/schemas/responses.json create mode 100644 airbyte-integrations/connectors/source-refiner/source_refiner/source.py create mode 100644 airbyte-integrations/connectors/source-refiner/source_refiner/spec.yaml create mode 100644 airbyte-integrations/connectors/source-refiner/unit_tests/__init__.py create mode 100644 airbyte-integrations/connectors/source-refiner/unit_tests/test_incremental_streams.py create mode 100644 airbyte-integrations/connectors/source-refiner/unit_tests/test_source.py create mode 100644 airbyte-integrations/connectors/source-refiner/unit_tests/test_streams.py diff --git a/.vscode/settings.json b/.vscode/settings.json index e52044ed1069..11fc0fe603ca 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -41,5 +41,8 @@ "editor.codeActionsOnSave": { "source.fixAll.stylelint": true } - } + }, + "python.analysis.extraPaths": [ + "./airbyte-cdk/python" + ] } diff --git a/airbyte-integrations/connectors/source-hubplanner/integration_tests/__init__.py~merged b/airbyte-integrations/connectors/source-hubplanner/integration_tests/__init__.py~merged new file mode 100644 index 000000000000..46b7376756ec --- /dev/null +++ b/airbyte-integrations/connectors/source-hubplanner/integration_tests/__init__.py~merged @@ -0,0 +1,3 @@ +# +# Copyright (c) 2021 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-refiner/.dockerignore b/airbyte-integrations/connectors/source-refiner/.dockerignore new file mode 100644 index 000000000000..8f72f934e431 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/.dockerignore @@ -0,0 +1,6 @@ +* +!Dockerfile +!main.py +!source_refiner +!setup.py +!secrets diff --git a/airbyte-integrations/connectors/source-refiner/Dockerfile b/airbyte-integrations/connectors/source-refiner/Dockerfile new file mode 100644 index 000000000000..60c5bb057be1 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/Dockerfile @@ -0,0 +1,38 @@ +FROM python:3.9.13-alpine3.15 as base + +# build and load all requirements +FROM base as builder +WORKDIR /airbyte/integration_code + +# upgrade pip to the latest version +RUN apk --no-cache upgrade \ + && pip install --upgrade pip \ + && apk --no-cache add tzdata build-base + + +COPY setup.py ./ +# install necessary packages to a temporary folder +RUN pip install --prefix=/install . + +# build a clean environment +FROM base +WORKDIR /airbyte/integration_code + +# copy all loaded and built libraries to a pure basic image +COPY --from=builder /install /usr/local +# add default timezone settings +COPY --from=builder /usr/share/zoneinfo/Etc/UTC /etc/localtime +RUN echo "Etc/UTC" > /etc/timezone + +# bash is installed for more convenient debugging. +RUN apk --no-cache add bash + +# copy payload code only +COPY main.py ./ +COPY source_refiner ./source_refiner + +ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" +ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] + +LABEL io.airbyte.version=0.1.0 +LABEL io.airbyte.name=airbyte/source-refiner diff --git a/airbyte-integrations/connectors/source-refiner/README.md b/airbyte-integrations/connectors/source-refiner/README.md new file mode 100644 index 000000000000..0533fc8456b7 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/README.md @@ -0,0 +1,132 @@ +# Refiner Source + +This is the repository for the Refiner source connector, written in Python. +For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/sources/refiner). + +## Local development + +### Prerequisites +**To iterate on this connector, make sure to complete this prerequisites section.** + +#### Minimum Python version required `= 3.9.0` + +#### Build & Activate Virtual Environment and install dependencies +From this connector directory, create a virtual environment: +``` +python -m venv .venv +``` + +This will generate a virtualenv for this module in `.venv/`. Make sure this venv is active in your +development environment of choice. To activate it from the terminal, run: +``` +source .venv/bin/activate +pip install -r requirements.txt +pip install '.[tests]' +``` +If you are in an IDE, follow your IDE's instructions to activate the virtualenv. + +Note that while we are installing dependencies from `requirements.txt`, you should only edit `setup.py` for your dependencies. `requirements.txt` is +used for editable installs (`pip install -e`) to pull in Python dependencies from the monorepo and will call `setup.py`. +If this is mumbo jumbo to you, don't worry about it, just put your deps in `setup.py` but install using `pip install -r requirements.txt` and everything +should work as you expect. + +#### Building via Gradle +You can also build the connector in Gradle. This is typically used in CI and not needed for your development workflow. + +To build using Gradle, from the Airbyte repository root, run: +``` +./gradlew :airbyte-integrations:connectors:source-refiner:build +``` + +#### Create credentials +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.io/integrations/sources/refiner) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_refiner/spec.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. +See `integration_tests/sample_config.json` for a sample config file. + +**If you are an Airbyte core member**, copy the credentials in Lastpass under the secret name `source refiner test creds` +and place them into `secrets/config.json`. + +### Locally running the connector +``` +python main.py spec +python main.py check --config secrets/config.json +python main.py discover --config secrets/config.json +python main.py read --config secrets/config.json --catalog integration_tests/configured_catalog.json +``` + +### Locally running the connector docker image + +#### Build +First, make sure you build the latest Docker image: +``` +docker build . -t airbyte/source-refiner:dev +``` + +You can also build the connector image via Gradle: +``` +./gradlew :airbyte-integrations:connectors:source-refiner:airbyteDocker +``` +When building via Gradle, the docker image name and tag, respectively, are the values of the `io.airbyte.name` and `io.airbyte.version` `LABEL`s in +the Dockerfile. + +#### Run +Then run any of the connector commands as follows: +``` +docker run --rm airbyte/source-refiner:dev spec +docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-refiner:dev check --config /secrets/config.json +docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-refiner:dev discover --config /secrets/config.json +docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-refiner:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json +``` +## Testing +Make sure to familiarize yourself with [pytest test discovery](https://docs.pytest.org/en/latest/goodpractices.html#test-discovery) to know how your test files and methods should be named. +First install test dependencies into your virtual environment: +``` +pip install .[tests] +``` +### Unit Tests +To run unit tests locally, from the connector directory run: +``` +python -m pytest unit_tests +``` + +### Integration Tests +There are two types of integration tests: Acceptance Tests (Airbyte's test suite for all source connectors) and custom integration tests (which are specific to this connector). +#### Custom Integration tests +Place custom tests inside `integration_tests/` folder, then, from the connector root, run +``` +python -m pytest integration_tests +``` +#### Acceptance Tests +Customize `acceptance-test-config.yml` file to configure tests. See [Source Acceptance Tests](https://docs.airbyte.io/connector-development/testing-connectors/source-acceptance-tests-reference) for more information. +If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. +To run your integration tests with acceptance tests, from the connector root, run +``` +python -m pytest integration_tests -p integration_tests.acceptance +``` +To run your integration tests with docker + +### Using gradle to run tests +All commands should be run from airbyte project root. +To run unit tests: +``` +./gradlew :airbyte-integrations:connectors:source-refiner:unitTest +``` +To run acceptance and custom integration tests: +``` +./gradlew :airbyte-integrations:connectors:source-refiner:integrationTest +``` + +## Dependency Management +All of your dependencies should go in `setup.py`, NOT `requirements.txt`. The requirements file is only used to connect internal Airbyte dependencies in the monorepo for local development. +We split dependencies between two groups, dependencies that are: +* required for your connector to work need to go to `MAIN_REQUIREMENTS` list. +* required for the testing need to go to `TEST_REQUIREMENTS` list + +### Publishing a new version of the connector +You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? +1. Make sure your changes are passing unit and integration tests. +1. Bump the connector version in `Dockerfile` -- just increment the value of the `LABEL io.airbyte.version` appropriately (we use [SemVer](https://semver.org/)). +1. Create a Pull Request. +1. Pat yourself on the back for being an awesome contributor. +1. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. diff --git a/airbyte-integrations/connectors/source-refiner/acceptance-test-config.yml b/airbyte-integrations/connectors/source-refiner/acceptance-test-config.yml new file mode 100644 index 000000000000..fd393979a73f --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/acceptance-test-config.yml @@ -0,0 +1,32 @@ +# See [Source Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/source-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-refiner:dev +acceptance_tests: + spec: + tests: + - spec_path: "source_refiner/spec.yaml" + connection: + tests: + - config_path: "secrets/config.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" + discovery: + tests: + - config_path: "secrets/config.json" + basic_read: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + validate_data_points: true + timeout_seconds: 200 + incremental: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + timeout_seconds: 200 + full_refresh: + tests: + - config_path: "secrets/config.json" + configured_catalog_path: "integration_tests/configured_catalog.json" + timeout_seconds: 200 diff --git a/airbyte-integrations/connectors/source-refiner/acceptance-test-docker.sh b/airbyte-integrations/connectors/source-refiner/acceptance-test-docker.sh new file mode 100755 index 000000000000..c51577d10690 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/acceptance-test-docker.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh + +# Build latest connector image +docker build . -t $(cat acceptance-test-config.yml | grep "connector_image" | head -n 1 | cut -d: -f2-) + +# Pull latest acctest image +docker pull airbyte/source-acceptance-test:latest + +# Run +docker run --rm -it \ + -v /var/run/docker.sock:/var/run/docker.sock \ + -v /tmp:/tmp \ + -v $(pwd):/test_input \ + airbyte/source-acceptance-test \ + --acceptance-test-config /test_input + diff --git a/airbyte-integrations/connectors/source-refiner/build.gradle b/airbyte-integrations/connectors/source-refiner/build.gradle new file mode 100644 index 000000000000..e421c65ee2d0 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/build.gradle @@ -0,0 +1,9 @@ +plugins { + id 'airbyte-python' + id 'airbyte-docker' + id 'airbyte-source-acceptance-test' +} + +airbytePython { + moduleDirectory 'source_refiner' +} diff --git a/airbyte-integrations/connectors/source-refiner/integration_tests/__init__.py b/airbyte-integrations/connectors/source-refiner/integration_tests/__init__.py new file mode 100644 index 000000000000..1100c1c58cf5 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/integration_tests/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-refiner/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-refiner/integration_tests/abnormal_state.json new file mode 100644 index 000000000000..d1a769cf85cf --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/integration_tests/abnormal_state.json @@ -0,0 +1,5 @@ +{ + "calls": { + "todo-field-name": "todo-abnormal-value" + } +} diff --git a/airbyte-integrations/connectors/source-refiner/integration_tests/acceptance.py b/airbyte-integrations/connectors/source-refiner/integration_tests/acceptance.py new file mode 100644 index 000000000000..1d13b92c7208 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/integration_tests/acceptance.py @@ -0,0 +1,17 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +import docker +import pytest + +pytest_plugins = ("source_acceptance_test.plugin",) + + +@pytest.fixture(scope="session", autouse=True) +def connector_setup(): + client = docker.from_env() + container = client.containers.run("airbyte/source-refiner", detach=True) + yield + container.stop() diff --git a/airbyte-integrations/connectors/source-refiner/integration_tests/catalog.json b/airbyte-integrations/connectors/source-refiner/integration_tests/catalog.json new file mode 100644 index 000000000000..b79bcf926090 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/integration_tests/catalog.json @@ -0,0 +1,89 @@ +{ + "streams": [ + { + "name": "responses", + "json_schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "first_shown_at": { + "type": ["string", "null"] + }, + "last_shown_at": { + "type": ["string", "null"] + }, + "first_data_reception_at": { + "type": ["string", "null"] + }, + "last_data_reception_at": { + "type": ["string", "null"] + }, + "completed_at": { + "type": ["string", "null"] + }, + "received_at": { + "type": ["string", "null"] + }, + "dismissed_at": { + "type": ["string", "null"] + }, + "form": { + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "name": { + "type": ["string", "null"] + } + } + }, + "data": { + "type": "object" + }, + "contact": { + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "remote_id": { + "type": ["string", "null"] + }, + "email": { + "type": ["string", "null"] + }, + "display_name": { + "type": ["string", "null"] + }, + "account": { + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "remote_id": { + "type": ["string", "null"] + }, + "display_name": { + "type": ["string", "null"] + }, + "domain": { + "type": ["string", "null"] + } + } + } + } + } + } + }, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["last_shown_at"], + "source_defined_primary_key": [["id"]] + } + ] +} diff --git a/airbyte-integrations/connectors/source-refiner/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-refiner/integration_tests/configured_catalog.json new file mode 100644 index 000000000000..739f8704dfbd --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/integration_tests/configured_catalog.json @@ -0,0 +1,94 @@ +{ + "streams": [ + { + "stream": { + "name": "responses", + "json_schema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "first_shown_at": { + "type": ["string", "null"] + }, + "last_shown_at": { + "type": ["string", "null"] + }, + "first_data_reception_at": { + "type": ["string", "null"] + }, + "last_data_reception_at": { + "type": ["string", "null"] + }, + "completed_at": { + "type": ["string", "null"] + }, + "received_at": { + "type": ["string", "null"] + }, + "dismissed_at": { + "type": ["string", "null"] + }, + "form": { + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "name": { + "type": ["string", "null"] + } + } + }, + "data": { + "type": "object" + }, + "contact": { + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "remote_id": { + "type": ["string", "null"] + }, + "email": { + "type": ["string", "null"] + }, + "display_name": { + "type": ["string", "null"] + }, + "account": { + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "remote_id": { + "type": ["string", "null"] + }, + "display_name": { + "type": ["string", "null"] + }, + "domain": { + "type": ["string", "null"] + } + } + } + } + } + } + }, + "supported_sync_modes": ["full_refresh", "incremental"], + "source_defined_cursor": true, + "default_cursor_field": ["last_shown_at"], + "source_defined_primary_key": [["uuid"]] + }, + "sync_mode": "incremental", + "destination_sync_mode": "append", + "cursor_field": ["last_shown_at"] + } + ] +} diff --git a/airbyte-integrations/connectors/source-refiner/integration_tests/invalid_config.json b/airbyte-integrations/connectors/source-refiner/integration_tests/invalid_config.json new file mode 100644 index 000000000000..f3732995784f --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/integration_tests/invalid_config.json @@ -0,0 +1,3 @@ +{ + "todo-wrong-field": "this should be an incomplete config file, used in standard tests" +} diff --git a/airbyte-integrations/connectors/source-refiner/integration_tests/sample_config.json b/airbyte-integrations/connectors/source-refiner/integration_tests/sample_config.json new file mode 100644 index 000000000000..de25981b90f0 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/integration_tests/sample_config.json @@ -0,0 +1,8 @@ +{ + "api_id": "", + "api_token": "", + "start_date": "2022-01-01", + "time_window": { + "months":1 + } +} diff --git a/airbyte-integrations/connectors/source-refiner/integration_tests/sample_state.json b/airbyte-integrations/connectors/source-refiner/integration_tests/sample_state.json new file mode 100644 index 000000000000..6196a0ca74a2 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/integration_tests/sample_state.json @@ -0,0 +1,10 @@ +[ + { + "type": "STREAM", + "stream": { + "stream_descriptor": { "name": "responses" }, + "stream_state": { "started_at": "2022-12-01" } + }, + "data": { "responses": { "started_at": "2022-12-01" } } + } +] diff --git a/airbyte-integrations/connectors/source-refiner/main.py b/airbyte-integrations/connectors/source-refiner/main.py new file mode 100644 index 000000000000..d92bf44ea244 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/main.py @@ -0,0 +1,13 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +import sys + +from airbyte_cdk.entrypoint import launch +from source_refiner import SourceRefiner + +if __name__ == "__main__": + source = SourceRefiner() + launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-refiner/messages.json b/airbyte-integrations/connectors/source-refiner/messages.json new file mode 100644 index 000000000000..216f5fe42e80 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/messages.json @@ -0,0 +1,676 @@ +{"type": "LOG", "log": {"level": "INFO", "message": "Starting syncing SourceRefiner"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Syncing stream: responses "}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c3d8b500-7af4-11ed-a63a-5329d25ec25a", "first_shown_at": "2022-12-13T14:45:19.000000Z", "last_shown_at": "2022-12-13T14:45:44.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T14:45:21.000000Z", "last_data_reception_at": "2022-12-13T14:45:58.000000Z", "completed_at": "2022-12-13T14:46:07.000000Z", "received_at": "2022-12-13T14:46:07.000000Z", "dismissed_at": "2022-12-13T14:45:24.000000Z", "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "All good. Nothing to change"}, "contact": {"uuid": "ce943130-699d-11ed-a48d-a3837bf15482", "remote_id": "56d1434a-7cf2-462f-b8c2-4a8858258a3e", "email": null, "display_name": "", "account": {"uuid": "ce9639b0-699d-11ed-bfa9-416bd44c38b0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854294}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b5d00460-7939-11ed-9879-c5b39771a5af", "first_shown_at": "2022-12-11T09:53:48.000000Z", "last_shown_at": "2022-12-13T14:32:49.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T14:33:11.000000Z", "last_data_reception_at": "2022-12-13T14:33:11.000000Z", "completed_at": "2022-12-13T14:36:32.000000Z", "received_at": "2022-12-13T14:36:32.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "The role of cancellation must be improved in my opinion."}, "contact": {"uuid": "8e486f60-6723-11ed-bddb-33b02e380066", "remote_id": "397115eb-68bb-49d1-8db2-3060123bc474", "email": null, "display_name": "", "account": {"uuid": "8e4a0ee0-6723-11ed-8d36-cdca842b22b3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854294}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f24df670-7af0-11ed-baed-e54dd9580001", "first_shown_at": "2022-12-13T14:17:59.000000Z", "last_shown_at": "2022-12-13T14:17:59.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-13T14:18:05.000000Z", "last_data_reception_at": "2022-12-13T14:18:05.000000Z", "completed_at": "2022-12-13T14:18:23.000000Z", "received_at": "2022-12-13T14:18:23.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Meilleur taux horaire."}, "contact": {"uuid": "ae118a10-6afc-11ed-93d6-c34c7fec5139", "remote_id": "1442a2ee-44ac-456f-a82f-b0fccf72e797", "email": null, "display_name": "", "account": {"uuid": "ae133ea0-6afc-11ed-927c-f112961d6a78", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854294}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "886746a0-7918-11ed-9a69-d5997321d25f", "first_shown_at": "2022-12-11T05:56:19.000000Z", "last_shown_at": "2022-12-13T13:59:12.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T13:59:21.000000Z", "last_data_reception_at": "2022-12-13T13:59:21.000000Z", "completed_at": "2022-12-13T14:00:21.000000Z", "received_at": "2022-12-13T14:00:21.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "100% pour am\u00e9liorer"}, "contact": {"uuid": "bf1ee0b0-6757-11ed-a01c-bd1aec8abe7f", "remote_id": "3a94f4a6-002a-44a8-88d0-8f44426e6da7", "email": null, "display_name": "", "account": {"uuid": "bf20f230-6757-11ed-bfe5-dd72ec5acd93", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854295}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e0fe2840-7948-11ed-9775-a749f3247cc9", "first_shown_at": "2022-12-11T11:42:23.000000Z", "last_shown_at": "2022-12-13T13:42:19.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T13:42:23.000000Z", "last_data_reception_at": "2022-12-13T13:42:23.000000Z", "completed_at": "2022-12-13T13:42:49.000000Z", "received_at": "2022-12-13T13:42:49.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Having a higher variety of jobs"}, "contact": {"uuid": "53c011a0-67dd-11ed-a04a-054012232682", "remote_id": "5f7e34fa-c311-408d-9a3f-63b50cebd874", "email": null, "display_name": "", "account": {"uuid": "53c234d0-67dd-11ed-86bc-f5796eb6cdd3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854295}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9bcbc530-7aea-11ed-9a29-a76986fec50c", "first_shown_at": "2022-12-13T13:32:37.000000Z", "last_shown_at": "2022-12-13T13:32:37.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-13T13:32:47.000000Z", "last_data_reception_at": "2022-12-13T13:32:47.000000Z", "completed_at": "2022-12-13T13:33:26.000000Z", "received_at": "2022-12-13T13:33:26.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "C\u2019est excellent tout est correct y\u2019a rien dire merci beaucoup"}, "contact": {"uuid": "b5e4bf30-68b6-11ed-8f9e-997134c544cb", "remote_id": "4aabd80d-4748-4407-8204-fbc2e8913a5c", "email": null, "display_name": "", "account": {"uuid": "b5e6be00-68b6-11ed-b9e6-ab563ed062ad", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854295}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3fe88620-78a7-11ed-8b67-23702cc64bc3", "first_shown_at": "2022-12-10T16:25:24.000000Z", "last_shown_at": "2022-12-13T13:06:50.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T13:07:03.000000Z", "last_data_reception_at": "2022-12-13T13:07:03.000000Z", "completed_at": "2022-12-13T13:08:52.000000Z", "received_at": "2022-12-13T13:08:52.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tout est bon"}, "contact": {"uuid": "d9235c50-671a-11ed-b866-a3682e37bd36", "remote_id": "cdb44fc1-3e94-40c5-983b-e281e646bd06", "email": null, "display_name": "", "account": {"uuid": "d924fa40-671a-11ed-b8ac-d10f3a93001d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854295}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b117ecd0-78de-11ed-bc57-671476a93786", "first_shown_at": "2022-12-10T23:02:16.000000Z", "last_shown_at": "2022-12-13T13:03:07.000000Z", "show_counter": 3, "first_data_reception_at": "2022-12-13T13:02:55.000000Z", "last_data_reception_at": "2022-12-13T13:03:11.000000Z", "completed_at": "2022-12-13T13:03:24.000000Z", "received_at": "2022-12-13T13:03:24.000000Z", "dismissed_at": "2022-12-13T13:03:02.000000Z", "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "It's great!"}, "contact": {"uuid": "00bf4f50-71ae-11ed-8853-a964314e9e3f", "remote_id": "a6b27789-d919-4df5-b8a3-6caa294ce61f", "email": null, "display_name": "", "account": {"uuid": "00c149e0-71ae-11ed-bf1f-1f2062987c5a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854295}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e88cd2b0-78a6-11ed-8ec3-41bf16b11657", "first_shown_at": "2022-12-10T16:22:57.000000Z", "last_shown_at": "2022-12-13T12:47:58.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T12:48:06.000000Z", "last_data_reception_at": "2022-12-13T12:48:06.000000Z", "completed_at": "2022-12-13T12:48:48.000000Z", "received_at": "2022-12-13T12:48:48.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Avoir plus de missions"}, "contact": {"uuid": "86d859d0-6744-11ed-94f2-61f1188c30d0", "remote_id": "439a9021-2bcf-4037-b21d-06cacc383dba", "email": null, "display_name": "", "account": {"uuid": "86dad120-6744-11ed-98a6-1fde87b43db1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854295}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "810beb20-78b1-11ed-898b-410e9a3b55f9", "first_shown_at": "2022-12-10T17:38:48.000000Z", "last_shown_at": "2022-12-13T12:37:26.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T12:37:36.000000Z", "last_data_reception_at": "2022-12-13T12:37:36.000000Z", "completed_at": "2022-12-13T12:38:26.000000Z", "received_at": "2022-12-13T12:38:26.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "All great"}, "contact": {"uuid": "f06a83e0-671d-11ed-9da7-fbfe03f53e31", "remote_id": "821ad9bf-fab6-4572-8e61-f0f8ed6a6179", "email": null, "display_name": "", "account": {"uuid": "f06d28c0-671d-11ed-b4c1-230876162d18", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854296}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "316f92c0-7ae1-11ed-8a5c-01ef4bda8678", "first_shown_at": "2022-12-13T12:25:13.000000Z", "last_shown_at": "2022-12-13T12:25:26.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T12:25:28.000000Z", "last_data_reception_at": "2022-12-13T12:25:28.000000Z", "completed_at": "2022-12-13T12:25:46.000000Z", "received_at": "2022-12-13T12:25:46.000000Z", "dismissed_at": "2022-12-13T12:25:16.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tres bien"}, "contact": {"uuid": "7c320390-6ca7-11ed-a2d1-e148fc19feb0", "remote_id": "0d4bd5ed-7590-4601-81c6-301c30e76e28", "email": null, "display_name": "", "account": {"uuid": "7c33ad60-6ca7-11ed-bfde-b1b4cca6287b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854296}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "112a9540-78ae-11ed-b2e8-83cf00fae816", "first_shown_at": "2022-12-10T17:14:12.000000Z", "last_shown_at": "2022-12-13T11:43:39.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T11:43:47.000000Z", "last_data_reception_at": "2022-12-13T11:43:47.000000Z", "completed_at": "2022-12-13T11:44:08.000000Z", "received_at": "2022-12-13T11:44:08.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Super application"}, "contact": {"uuid": "db738e80-66d0-11ed-9322-73e8f62bdf45", "remote_id": "6c777d2a-00cf-4229-ac92-369336d89e8d", "email": null, "display_name": "", "account": {"uuid": "db74c080-66d0-11ed-8256-0dc7ff568300", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854296}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e6b2ed60-7ad4-11ed-a411-3faa3e634515", "first_shown_at": "2022-12-13T10:57:14.000000Z", "last_shown_at": "2022-12-13T10:57:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-13T10:57:35.000000Z", "last_data_reception_at": "2022-12-13T10:57:35.000000Z", "completed_at": "2022-12-13T10:58:13.000000Z", "received_at": "2022-12-13T10:58:13.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Trouver moi du travail"}, "contact": {"uuid": "30acbe20-68b4-11ed-9001-cb2072f2b7f0", "remote_id": "35e59d90-1d75-4c88-939a-b4de4f4c6f93", "email": null, "display_name": "", "account": {"uuid": "30ae6720-68b4-11ed-a27a-49dda75d3379", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854296}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c2e059f0-7ad4-11ed-8372-736ccc5cf34d", "first_shown_at": "2022-12-13T10:56:13.000000Z", "last_shown_at": "2022-12-13T10:56:26.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T10:56:18.000000Z", "last_data_reception_at": "2022-12-13T10:56:30.000000Z", "completed_at": "2022-12-13T10:56:40.000000Z", "received_at": "2022-12-13T10:56:40.000000Z", "dismissed_at": "2022-12-13T10:56:20.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "\ud83e\udd37\ud83c\udffe\u200d\u2642\ufe0f\ud83e\udd37\ud83c\udffe\u200d\u2642\ufe0f\ud83e\udd37\ud83c\udffe\u200d\u2642\ufe0f"}, "contact": {"uuid": "3ed749e0-66cc-11ed-bc87-2f0362477cea", "remote_id": "2710a84c-68f1-4a65-96ee-ce03fe76b7f9", "email": null, "display_name": "", "account": {"uuid": "3ed92a60-66cc-11ed-842e-7fc24ca46366", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854296}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "586bb890-78a3-11ed-89e9-4b8bd335b3d6", "first_shown_at": "2022-12-10T15:57:27.000000Z", "last_shown_at": "2022-12-13T10:47:38.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T10:47:42.000000Z", "last_data_reception_at": "2022-12-13T10:47:42.000000Z", "completed_at": "2022-12-13T10:47:51.000000Z", "received_at": "2022-12-13T10:47:51.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pizzaolo"}, "contact": {"uuid": "12cf5700-6727-11ed-9e0a-a5ff1a5cae86", "remote_id": "2008fbfc-63b4-48a7-a4d5-a1912a443029", "email": null, "display_name": "", "account": {"uuid": "12d0bf50-6727-11ed-ba25-17b377b75bd1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854296}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8c8d38a0-7ad1-11ed-95ad-e3d26c37ad39", "first_shown_at": "2022-12-13T10:33:14.000000Z", "last_shown_at": "2022-12-13T10:33:15.000000Z", "show_counter": 5, "first_data_reception_at": "2022-12-13T10:33:25.000000Z", "last_data_reception_at": "2022-12-13T10:33:33.000000Z", "completed_at": "2022-12-13T10:34:17.000000Z", "received_at": "2022-12-13T10:34:17.000000Z", "dismissed_at": "2022-12-13T10:34:20.000000Z", "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Nothing to add"}, "contact": {"uuid": "34025cc0-66d8-11ed-a628-e513cb2173b7", "remote_id": "13656e35-b92e-49c1-93a4-d8a777b9e002", "email": null, "display_name": "", "account": {"uuid": "340466e0-66d8-11ed-9d7d-5d9bce54db0b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854296}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2eb43e70-790f-11ed-9365-a5ede61ee6d5", "first_shown_at": "2022-12-11T04:49:23.000000Z", "last_shown_at": "2022-12-13T10:17:52.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T10:18:26.000000Z", "last_data_reception_at": "2022-12-13T10:18:26.000000Z", "completed_at": "2022-12-13T10:19:43.000000Z", "received_at": "2022-12-13T10:19:43.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Un num\u00e9ro pour vous joindre en cas de probl\u00e8me"}, "contact": {"uuid": "3871bf80-6a8a-11ed-9772-29b4202e7d8d", "remote_id": "b5f48dad-9be0-409e-9467-b20badf32d2c", "email": null, "display_name": "", "account": {"uuid": "3873a100-6a8a-11ed-ae4a-e12f808071e7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854297}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1d877ae0-7acd-11ed-a481-f33d8da496de", "first_shown_at": "2022-12-13T10:01:30.000000Z", "last_shown_at": "2022-12-13T10:01:49.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T10:01:45.000000Z", "last_data_reception_at": "2022-12-13T10:01:51.000000Z", "completed_at": "2022-12-13T10:03:02.000000Z", "received_at": "2022-12-13T10:03:02.000000Z", "dismissed_at": "2022-12-13T10:01:46.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Pdt 2 semaines je n'ai pas re\u00e7u de mission donc sa serai bien de trouv\u00e9 plus de mission dans certain secteur"}, "contact": {"uuid": "27559000-671d-11ed-a8fb-7738e80c0613", "remote_id": "5ed6c2a9-299b-49f2-a0fd-cdde1dfc3860", "email": null, "display_name": "", "account": {"uuid": "2757b840-671d-11ed-95ce-9d3ba6a50d99", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854297}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "65f86d70-7899-11ed-939e-a32021f3d94e", "first_shown_at": "2022-12-10T14:46:15.000000Z", "last_shown_at": "2022-12-13T09:30:26.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T09:30:32.000000Z", "last_data_reception_at": "2022-12-13T09:30:32.000000Z", "completed_at": "2022-12-13T09:31:18.000000Z", "received_at": "2022-12-13T09:31:18.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Showing the hourly rate on every mission"}, "contact": {"uuid": "2d4fa030-672b-11ed-bc50-0d632100c3e8", "remote_id": "1bd185a8-de47-4fb1-8006-c1407777a0e2", "email": null, "display_name": "", "account": {"uuid": "2d5159c0-672b-11ed-8d10-75caaa1ed72c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854297}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0ac965b0-7ac6-11ed-903a-95f1056c9f11", "first_shown_at": "2022-12-13T09:10:52.000000Z", "last_shown_at": "2022-12-13T09:11:10.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T09:11:37.000000Z", "last_data_reception_at": "2022-12-13T09:11:37.000000Z", "completed_at": "2022-12-13T09:12:22.000000Z", "received_at": "2022-12-13T09:12:22.000000Z", "dismissed_at": "2022-12-13T09:10:56.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "Il son ma pay\u00e9"}, "contact": {"uuid": "878eb550-6f2a-11ed-997f-db24b881ca44", "remote_id": "9fbb0bcb-eec4-4bbf-934b-31228008e778", "email": null, "display_name": "", "account": {"uuid": "8790bc20-6f2a-11ed-bd04-af922d58111d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854297}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "166c6ba0-78ac-11ed-859e-23af6f56b93d", "first_shown_at": "2022-12-10T17:00:02.000000Z", "last_shown_at": "2022-12-12T20:36:30.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T08:54:09.000000Z", "last_data_reception_at": "2022-12-13T08:54:09.000000Z", "completed_at": "2022-12-13T08:55:05.000000Z", "received_at": "2022-12-13T08:55:05.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Am\u00e9liore la communication avec les brigadiers"}, "contact": {"uuid": "8f945b10-6720-11ed-89f0-dba9f4f816b2", "remote_id": "a8a7b03b-77ae-4fb8-9046-21817aee5e18", "email": null, "display_name": "", "account": {"uuid": "8f969aa0-6720-11ed-b7d3-25d1f7eb16b0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854297}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7766dce0-7927-11ed-a8d8-bb6473d34fac", "first_shown_at": "2022-12-11T07:43:13.000000Z", "last_shown_at": "2022-12-13T08:31:43.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T08:31:49.000000Z", "last_data_reception_at": "2022-12-13T08:31:49.000000Z", "completed_at": "2022-12-13T08:32:32.000000Z", "received_at": "2022-12-13T08:32:32.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En envoyant des missions sur plusieurs jours pour qu'on ait un planning bien etablit au mois"}, "contact": {"uuid": "51e5d780-670f-11ed-9a75-13f3b3c1f576", "remote_id": "1f766163-6b3b-481a-8889-4f3f6174e129", "email": null, "display_name": "", "account": {"uuid": "51e7d2e0-670f-11ed-bd96-5bd2924a0db2", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854297}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4425c7b0-7abb-11ed-b202-25777f07f1bb", "first_shown_at": "2022-12-13T07:53:43.000000Z", "last_shown_at": "2022-12-13T07:53:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-13T07:53:56.000000Z", "last_data_reception_at": "2022-12-13T07:53:56.000000Z", "completed_at": "2022-12-13T07:54:06.000000Z", "received_at": "2022-12-13T07:54:06.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Baisser les charges"}, "contact": {"uuid": "631904c0-6733-11ed-b5c1-799b4a473ced", "remote_id": "2890b029-f72f-4bce-ac47-9bde67a1b159", "email": null, "display_name": "", "account": {"uuid": "631b2130-6733-11ed-baed-351a050d99eb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854298}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c8b961a0-78cc-11ed-a82e-6f7a1d627d06", "first_shown_at": "2022-12-10T20:54:05.000000Z", "last_shown_at": "2022-12-13T07:17:03.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T07:17:10.000000Z", "last_data_reception_at": "2022-12-13T07:17:10.000000Z", "completed_at": "2022-12-13T07:17:44.000000Z", "received_at": "2022-12-13T07:17:44.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Plus de missions pr\u00e8s de chez nous"}, "contact": {"uuid": "06588d60-6743-11ed-bf5d-176b8699e61d", "remote_id": "e77b06a9-78df-4e5e-86b2-6450f555ef44", "email": null, "display_name": "", "account": {"uuid": "065aa8a0-6743-11ed-8c88-a3169d7d123f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854298}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "577b9d10-78ba-11ed-a396-0f1a384596b0", "first_shown_at": "2022-12-10T18:42:04.000000Z", "last_shown_at": "2022-12-13T06:52:49.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T06:53:10.000000Z", "last_data_reception_at": "2022-12-13T06:53:10.000000Z", "completed_at": "2022-12-13T06:54:24.000000Z", "received_at": "2022-12-13T06:54:24.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "En \u00e9quilibrant beaucoup plus les missions entre candidats ."}, "contact": {"uuid": "3ceba680-74b0-11ed-a0d6-950c38fcf58e", "remote_id": "4f51e1a6-8f0f-4f5f-a025-c752f83bee05", "email": null, "display_name": "", "account": {"uuid": "3ced7860-74b0-11ed-9907-9b1f2100ca1d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854298}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "90cebad0-78c4-11ed-82fd-651b4e4916f0", "first_shown_at": "2022-12-10T19:55:15.000000Z", "last_shown_at": "2022-12-13T05:19:46.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T05:19:59.000000Z", "last_data_reception_at": "2022-12-13T05:19:59.000000Z", "completed_at": "2022-12-13T05:20:53.000000Z", "received_at": "2022-12-13T05:20:53.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En envoyant plus de missions car elles se font rares"}, "contact": {"uuid": "dcac3fa0-66c3-11ed-963e-79573d4ef245", "remote_id": "95fb995d-ec57-48ff-892e-4880ce2c1926", "email": null, "display_name": "", "account": {"uuid": "dcaddf50-66c3-11ed-b9f0-3df3ace730a2", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854298}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2c0811b0-78b5-11ed-b139-bf997f897e8c", "first_shown_at": "2022-12-10T18:05:04.000000Z", "last_shown_at": "2022-12-13T04:36:51.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T04:36:56.000000Z", "last_data_reception_at": "2022-12-13T04:36:56.000000Z", "completed_at": "2022-12-13T04:37:34.000000Z", "received_at": "2022-12-13T04:37:34.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "2", "how_could_we_improve_your_experience_with_brigad": "Plus de Mission, et moins de commissions \ud83e\udd37\ud83c\udffc\u200d\u2642\ufe0f"}, "contact": {"uuid": "39926aa0-6717-11ed-8f7f-279215343141", "remote_id": "59977fcd-21f2-4a8a-b0b2-928729fb0d50", "email": null, "display_name": "", "account": {"uuid": "3994a2d0-6717-11ed-97e4-e5c55868b877", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854298}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e962c780-78e0-11ed-80d3-815e0ccfa4c5", "first_shown_at": "2022-12-10T23:18:10.000000Z", "last_shown_at": "2022-12-13T04:27:48.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T04:28:04.000000Z", "last_data_reception_at": "2022-12-13T04:28:04.000000Z", "completed_at": "2022-12-13T04:28:45.000000Z", "received_at": "2022-12-13T04:28:45.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En me dormant plus de missions"}, "contact": {"uuid": "0bde7070-67a6-11ed-9898-1b4e70619dde", "remote_id": "2c5f67bc-9c8d-4da2-b44d-f5d051b281c9", "email": null, "display_name": "", "account": {"uuid": "0be050f0-67a6-11ed-b47c-6583629f78f1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854298}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2f5bc0c0-78c3-11ed-b791-910350a8d735", "first_shown_at": "2022-12-10T19:45:22.000000Z", "last_shown_at": "2022-12-13T02:38:02.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T02:38:11.000000Z", "last_data_reception_at": "2022-12-13T02:38:11.000000Z", "completed_at": "2022-12-13T02:38:30.000000Z", "received_at": "2022-12-13T02:38:30.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Less brigad fees"}, "contact": {"uuid": "f985eb70-66c8-11ed-94cf-b3f0996b1e6c", "remote_id": "a2713419-f943-4343-b91b-64bcc1ba0527", "email": null, "display_name": "", "account": {"uuid": "f9887610-66c8-11ed-8765-c76f158b1e78", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854299}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "68d79bb0-78d5-11ed-b3ea-c7657595a2dd", "first_shown_at": "2022-12-10T21:55:50.000000Z", "last_shown_at": "2022-12-13T00:47:36.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T00:47:45.000000Z", "last_data_reception_at": "2022-12-13T00:47:45.000000Z", "completed_at": "2022-12-13T00:48:08.000000Z", "received_at": "2022-12-13T00:48:08.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Je sait pas pour le moment"}, "contact": {"uuid": "54070bc0-66d7-11ed-9bc4-13dd86fb9b74", "remote_id": "13c9e0b6-e275-4c7f-8746-8d9f93c66523", "email": null, "display_name": "", "account": {"uuid": "54086580-66d7-11ed-97a4-4362cc4166d0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854299}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d7fafc30-78c8-11ed-a2af-65cb299c7298", "first_shown_at": "2022-12-10T20:25:53.000000Z", "last_shown_at": "2022-12-13T00:39:14.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T00:39:18.000000Z", "last_data_reception_at": "2022-12-13T00:39:18.000000Z", "completed_at": "2022-12-13T00:39:36.000000Z", "received_at": "2022-12-13T00:39:36.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "More shifts"}, "contact": {"uuid": "6565aac0-684e-11ed-aaa8-9feba75155ae", "remote_id": "36515f4a-ac9c-4352-8df3-a7f8eca3dd60", "email": null, "display_name": "", "account": {"uuid": "65679650-684e-11ed-9ad5-d9b376636dbd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854299}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1762a8a0-78c6-11ed-84d0-bb4a59b79bea", "first_shown_at": "2022-12-10T20:06:10.000000Z", "last_shown_at": "2022-12-12T21:35:49.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-13T00:18:06.000000Z", "last_data_reception_at": "2022-12-13T00:18:06.000000Z", "completed_at": "2022-12-13T00:18:28.000000Z", "received_at": "2022-12-13T00:18:28.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Plus de transparence sur les missions propos\u00e9es"}, "contact": {"uuid": "36b49bb0-6733-11ed-9c8e-2f5531aeb193", "remote_id": "e36ecb95-4869-4263-95f3-6394718d4357", "email": null, "display_name": "", "account": {"uuid": "36b77770-6733-11ed-8a6a-fb98c51f724a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854299}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5c759240-7a76-11ed-8565-a7c41bc09efe", "first_shown_at": "2022-12-12T23:40:29.000000Z", "last_shown_at": "2022-12-12T23:40:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T23:40:45.000000Z", "last_data_reception_at": "2022-12-12T23:40:45.000000Z", "completed_at": "2022-12-12T23:41:54.000000Z", "received_at": "2022-12-12T23:41:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je vous juste ajout\u00e9 comme agent d'entretien"}, "contact": {"uuid": "557974c0-66de-11ed-842b-bd1f7973f5ff", "remote_id": "b5ade72f-37e8-4c5a-a7d9-00553eccfb75", "email": null, "display_name": "", "account": {"uuid": "557b9140-66de-11ed-a53f-01814832e5c9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854299}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "80828770-78a1-11ed-a3eb-a1d821dde2b0", "first_shown_at": "2022-12-10T15:44:15.000000Z", "last_shown_at": "2022-12-12T22:54:04.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T22:54:11.000000Z", "last_data_reception_at": "2022-12-12T22:54:11.000000Z", "completed_at": "2022-12-12T22:55:52.000000Z", "received_at": "2022-12-12T22:55:52.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Well, I have tried to add other skills and the only slots available for a booking are when I am at work. The other reason is that if you are working trough a proper agency 90% of the time the pay is better."}, "contact": {"uuid": "12eabf20-672b-11ed-9bf1-650759c90b3e", "remote_id": "f2b2d99a-bf3a-4b2a-9509-93fdcf5a3a63", "email": null, "display_name": "", "account": {"uuid": "12ed6350-672b-11ed-b8bf-7d4517c62afc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854299}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9b8fc4e0-78d0-11ed-bbb9-f15f610461cf", "first_shown_at": "2022-12-10T21:21:27.000000Z", "last_shown_at": "2022-12-12T22:45:48.000000Z", "show_counter": 3, "first_data_reception_at": "2022-12-12T22:46:11.000000Z", "last_data_reception_at": "2022-12-12T22:46:11.000000Z", "completed_at": "2022-12-12T22:47:13.000000Z", "received_at": "2022-12-12T22:47:13.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Recevoir des missions"}, "contact": {"uuid": "22e1c850-66cb-11ed-adbf-e1067bee09bf", "remote_id": "4c038701-ae12-4493-a6b6-57b629ca9b77", "email": null, "display_name": "", "account": {"uuid": "22e3d530-66cb-11ed-be74-e5e3315ec9a5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854299}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "061d8d50-78ab-11ed-b2d8-b377d7ebf903", "first_shown_at": "2022-12-10T16:52:25.000000Z", "last_shown_at": "2022-12-12T21:47:55.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T21:48:03.000000Z", "last_data_reception_at": "2022-12-12T21:48:03.000000Z", "completed_at": "2022-12-12T21:48:45.000000Z", "received_at": "2022-12-12T21:48:45.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pour l\u2019instant je n\u2019ai rien \u00e0 dire vous \u00eates \u00e0 l\u2019\u00e9coute \u00e7a me convient"}, "contact": {"uuid": "bc0d4890-747b-11ed-bf3a-9392968b9893", "remote_id": "e22612d6-ea35-4094-9910-54f46971527a", "email": null, "display_name": "", "account": {"uuid": "bc0efdf0-747b-11ed-a7fe-5b27fa42533e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854300}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b87127c0-78b8-11ed-a9eb-5bf4920cdac8", "first_shown_at": "2022-12-10T18:30:28.000000Z", "last_shown_at": "2022-12-12T21:23:12.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T21:23:14.000000Z", "last_data_reception_at": "2022-12-12T21:23:14.000000Z", "completed_at": "2022-12-12T21:23:45.000000Z", "received_at": "2022-12-12T21:23:45.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Proposer plus de missions et augmenter le tarif"}, "contact": {"uuid": "17c1ea40-66c6-11ed-99cc-010ee42e7fee", "remote_id": "66159885-2ba7-444d-a32d-cdbae9c60cae", "email": null, "display_name": "", "account": {"uuid": "17c35560-66c6-11ed-b435-f138791318a6", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854300}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "086a9470-78b0-11ed-9d81-512b75b099de", "first_shown_at": "2022-12-10T17:28:16.000000Z", "last_shown_at": "2022-12-12T21:16:01.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T21:16:08.000000Z", "last_data_reception_at": "2022-12-12T21:16:08.000000Z", "completed_at": "2022-12-12T21:17:36.000000Z", "received_at": "2022-12-12T21:17:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Bonjour je travaille dan la brigard ce tr\u00e8s bien"}, "contact": {"uuid": "927d82b0-674f-11ed-b597-d91738872a37", "remote_id": "f12e657e-f11d-4e96-8dab-5a2e34920a35", "email": null, "display_name": "", "account": {"uuid": "927f9230-674f-11ed-8cc8-a3ce57c2b028", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854300}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "548e9e90-7a61-11ed-89ec-9dffaa2b68ed", "first_shown_at": "2022-12-12T21:09:56.000000Z", "last_shown_at": "2022-12-12T21:09:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T21:09:59.000000Z", "last_data_reception_at": "2022-12-12T21:09:59.000000Z", "completed_at": "2022-12-12T21:10:19.000000Z", "received_at": "2022-12-12T21:10:19.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "\ud83e\udd73\ud83e\udd73\ud83e\udd73\ud83e\udd73\ud83e\udd73\ud83d\ude1c\ud83d\ude1c\ud83d\ude1c\ud83d\ude1c\ud83d\ude1c"}, "contact": {"uuid": "d1728ba0-66d3-11ed-81d4-5f690afdd232", "remote_id": "e01ec324-8e20-42c6-9a01-c06c936268d6", "email": null, "display_name": "", "account": {"uuid": "d174c2e0-66d3-11ed-8f0a-9ddd2b08d71e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854300}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e509ad20-78af-11ed-88e2-3d0a70695eae", "first_shown_at": "2022-12-10T17:27:17.000000Z", "last_shown_at": "2022-12-12T21:04:25.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T21:04:36.000000Z", "last_data_reception_at": "2022-12-12T21:04:36.000000Z", "completed_at": "2022-12-12T21:05:11.000000Z", "received_at": "2022-12-12T21:05:11.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien pour moi c'est bon"}, "contact": {"uuid": "ac675440-670f-11ed-91ee-855b38c31243", "remote_id": "7e306286-bc1a-4469-bed6-6a5c410530f8", "email": null, "display_name": "", "account": {"uuid": "ac699450-670f-11ed-a6db-23a4c3e731f6", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854300}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7fa5b340-78c4-11ed-aa5d-4349c18cc607", "first_shown_at": "2022-12-10T19:54:46.000000Z", "last_shown_at": "2022-12-12T21:04:27.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T21:04:29.000000Z", "last_data_reception_at": "2022-12-12T21:04:29.000000Z", "completed_at": "2022-12-12T21:05:31.000000Z", "received_at": "2022-12-12T21:05:31.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Pour le moment, rien \u00e0 modifier ."}, "contact": {"uuid": "5560a3d0-6725-11ed-ae60-2bc814bdc289", "remote_id": "862b9b27-69c9-4ce3-97f4-0f0e01ce5a5f", "email": null, "display_name": "", "account": {"uuid": "55634f70-6725-11ed-9755-c53dd3d9fc9d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854301}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "729ddaa0-7a5f-11ed-a1f0-6de9c6fafcd7", "first_shown_at": "2022-12-12T20:56:28.000000Z", "last_shown_at": "2022-12-12T20:56:28.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T20:56:34.000000Z", "last_data_reception_at": "2022-12-12T20:56:34.000000Z", "completed_at": "2022-12-12T20:56:48.000000Z", "received_at": "2022-12-12T20:56:48.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "More shifts"}, "contact": {"uuid": "79bcf760-676e-11ed-b6b5-fbec72502776", "remote_id": "296c1d55-6621-45e1-b8ee-12b45c0f9b13", "email": null, "display_name": "", "account": {"uuid": "79bef5e0-676e-11ed-8f7e-89e084770431", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854301}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "88012530-78a3-11ed-b5e2-33881618bc2c", "first_shown_at": "2022-12-10T15:58:47.000000Z", "last_shown_at": "2022-12-12T20:53:16.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T20:54:09.000000Z", "last_data_reception_at": "2022-12-12T20:54:09.000000Z", "completed_at": "2022-12-12T20:54:27.000000Z", "received_at": "2022-12-12T20:54:27.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plusieurs missions"}, "contact": {"uuid": "21f01e20-6716-11ed-a529-a504f62da0a4", "remote_id": "895aa24b-898c-4b77-92f9-8a67d4216874", "email": null, "display_name": "", "account": {"uuid": "21f22dd0-6716-11ed-8ef6-b39909e5f36f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854301}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0c0c77d0-7a5c-11ed-b4d4-8f339ef5b014", "first_shown_at": "2022-12-12T20:32:07.000000Z", "last_shown_at": "2022-12-12T20:32:07.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T20:32:11.000000Z", "last_data_reception_at": "2022-12-12T20:32:11.000000Z", "completed_at": "2022-12-12T20:32:19.000000Z", "received_at": "2022-12-12T20:32:19.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "tres bien"}, "contact": {"uuid": "7dca2150-68b6-11ed-9498-1d678b3c6ba7", "remote_id": "57ab3e6f-5872-402a-86cd-9d10296ce23a", "email": null, "display_name": "", "account": {"uuid": "7dcc08e0-68b6-11ed-9e8e-2d786b83c107", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854301}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d3629440-78b6-11ed-b58d-7f59bd2eb7bf", "first_shown_at": "2022-12-10T18:16:54.000000Z", "last_shown_at": "2022-12-12T20:15:37.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T20:15:41.000000Z", "last_data_reception_at": "2022-12-12T20:15:41.000000Z", "completed_at": "2022-12-12T20:17:41.000000Z", "received_at": "2022-12-12T20:17:41.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Avoir la possibilit\u00e9 de retourner sur des sites que l\u2019on a d\u00e9j\u00e0 fait en priorit\u00e9 si l\u2019\u00e9tablissement nous met en favoris."}, "contact": {"uuid": "e544bfe0-671f-11ed-aa13-6f63f0348638", "remote_id": "3233ff74-b9b3-405a-900d-be93c69752b8", "email": null, "display_name": "", "account": {"uuid": "e546ac40-671f-11ed-a5d9-ebd624c7871b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854301}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d2005e90-789c-11ed-8a08-674808da5a60", "first_shown_at": "2022-12-10T15:10:45.000000Z", "last_shown_at": "2022-12-12T20:15:31.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T20:15:36.000000Z", "last_data_reception_at": "2022-12-12T20:15:36.000000Z", "completed_at": "2022-12-12T20:17:16.000000Z", "received_at": "2022-12-12T20:17:16.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En citant les \u00e9tablissements du coin qui travaille avec brigad"}, "contact": {"uuid": "c80b2240-66c6-11ed-a04e-a17540750e41", "remote_id": "52f3ddc5-f8de-4669-b96a-196b5d4eab9d", "email": null, "display_name": "", "account": {"uuid": "c80c94f0-66c6-11ed-bd38-11960a0c9899", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854302}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2076e760-7a53-11ed-b51f-79d20bd93c25", "first_shown_at": "2022-12-12T19:28:16.000000Z", "last_shown_at": "2022-12-12T19:28:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T19:28:19.000000Z", "last_data_reception_at": "2022-12-12T19:28:19.000000Z", "completed_at": "2022-12-12T19:29:40.000000Z", "received_at": "2022-12-12T19:29:40.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Dommage qu'il n'y ai pas encore assez d'offres."}, "contact": {"uuid": "391e2450-757d-11ed-8d79-5d435755300c", "remote_id": "9be2b09b-7829-4437-9221-c01a487ec6de", "email": null, "display_name": "", "account": {"uuid": "3920bba0-757d-11ed-82f4-d7dc701fa032", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854302}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "aa45e140-78b1-11ed-bbc4-f3fd32652a4a", "first_shown_at": "2022-12-10T17:39:57.000000Z", "last_shown_at": "2022-12-12T19:17:43.000000Z", "show_counter": 3, "first_data_reception_at": "2022-12-12T19:17:48.000000Z", "last_data_reception_at": "2022-12-12T19:17:48.000000Z", "completed_at": "2022-12-12T19:19:39.000000Z", "received_at": "2022-12-12T19:19:39.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "The feedback of the busenises sometimes they rate us unfairly ( not for professional reasons"}, "contact": {"uuid": "e7827b40-6739-11ed-b22a-c59cffef1342", "remote_id": "b1c6c829-1593-42a2-ac86-c34e64648dc9", "email": null, "display_name": "", "account": {"uuid": "e78456c0-6739-11ed-9e35-6b81d5b5bc70", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854302}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6dbb3320-78bd-11ed-a494-0338cf937967", "first_shown_at": "2022-12-10T19:04:10.000000Z", "last_shown_at": "2022-12-12T19:11:59.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T19:12:04.000000Z", "last_data_reception_at": "2022-12-12T19:12:04.000000Z", "completed_at": "2022-12-12T19:13:32.000000Z", "received_at": "2022-12-12T19:13:32.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Bjr couper les missions de longue dur\u00e9e en 2 patit pour les paiement a la semaine"}, "contact": {"uuid": "76b3c180-6716-11ed-862d-874b222e7a06", "remote_id": "530de6b6-dd53-439c-8afb-c9636422482a", "email": null, "display_name": "", "account": {"uuid": "76b55a40-6716-11ed-b8d9-c3cab20333fa", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854302}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "296c9090-7899-11ed-9241-73787ab6a846", "first_shown_at": "2022-12-10T14:44:33.000000Z", "last_shown_at": "2022-12-12T19:08:02.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T19:08:09.000000Z", "last_data_reception_at": "2022-12-12T19:08:09.000000Z", "completed_at": "2022-12-12T19:11:03.000000Z", "received_at": "2022-12-12T19:11:03.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Plus de mission longue et surtout retirer votre commission sur nos facture comme Extracadabra"}, "contact": {"uuid": "7eb56b70-66cb-11ed-9cf3-35208e0097d8", "remote_id": "83e0744d-44f3-411b-8edf-050923a4e3c7", "email": null, "display_name": "", "account": {"uuid": "7eb71180-66cb-11ed-b266-018f50c8dd90", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854302}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d3ee1ec0-7a4d-11ed-8a22-17beddd36708", "first_shown_at": "2022-12-12T18:50:20.000000Z", "last_shown_at": "2022-12-12T18:50:35.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T18:50:29.000000Z", "last_data_reception_at": "2022-12-12T18:50:38.000000Z", "completed_at": "2022-12-12T18:50:48.000000Z", "received_at": "2022-12-12T18:50:48.000000Z", "dismissed_at": "2022-12-12T18:50:34.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Plus de mission"}, "contact": {"uuid": "ec8d5f60-6722-11ed-bcbe-59c7c6859500", "remote_id": "f7e7edb3-d6b0-45db-8afb-a6d03e4f4a7c", "email": null, "display_name": "", "account": {"uuid": "ec8ec0c0-6722-11ed-b11a-599a2358d908", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854303}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ab8c8d80-78a6-11ed-9b0f-73c2fd818033", "first_shown_at": "2022-12-10T16:21:15.000000Z", "last_shown_at": "2022-12-12T18:22:55.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T18:23:04.000000Z", "last_data_reception_at": "2022-12-12T18:23:04.000000Z", "completed_at": "2022-12-12T18:23:39.000000Z", "received_at": "2022-12-12T18:23:39.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pas d'id\u00e9es"}, "contact": {"uuid": "62d1aa10-66c6-11ed-9b2f-8b141414eff4", "remote_id": "82b47be9-0b57-49f3-ac3c-5a6beef4495c", "email": null, "display_name": "", "account": {"uuid": "62d2ff50-66c6-11ed-b083-2f6df365dcd8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854303}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f8788960-7a48-11ed-980e-3d4730f31162", "first_shown_at": "2022-12-12T18:15:34.000000Z", "last_shown_at": "2022-12-12T18:15:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T18:15:36.000000Z", "last_data_reception_at": "2022-12-12T18:15:36.000000Z", "completed_at": "2022-12-12T18:15:42.000000Z", "received_at": "2022-12-12T18:15:42.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Exp\u00e9rience incroyable"}, "contact": {"uuid": "e9a6afe0-675a-11ed-abd2-6f4f0384c5e1", "remote_id": "b731198c-da4b-4c71-88aa-add65b248db9", "email": null, "display_name": "", "account": {"uuid": "e9a8cc30-675a-11ed-bdcf-c199a0429dad", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854303}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "69b2d980-7897-11ed-82f4-9bf8ed564fb1", "first_shown_at": "2022-12-10T14:32:02.000000Z", "last_shown_at": "2022-12-12T18:11:37.000000Z", "show_counter": 3, "first_data_reception_at": "2022-12-12T18:11:56.000000Z", "last_data_reception_at": "2022-12-12T18:11:56.000000Z", "completed_at": "2022-12-12T18:12:34.000000Z", "received_at": "2022-12-12T18:12:34.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "J'ai beaucoup aim\u00e9"}, "contact": {"uuid": "1e233640-66c8-11ed-856b-1f576ed4a01b", "remote_id": "c4b43a29-51c7-4fb2-91f4-7c330180aa97", "email": null, "display_name": "", "account": {"uuid": "1e254690-66c8-11ed-8799-0bc83cf72e16", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854303}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "77f7de20-78b4-11ed-be66-278963e5d49e", "first_shown_at": "2022-12-10T18:00:02.000000Z", "last_shown_at": "2022-12-12T18:09:20.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T18:09:43.000000Z", "last_data_reception_at": "2022-12-12T18:09:43.000000Z", "completed_at": "2022-12-12T18:10:14.000000Z", "received_at": "2022-12-12T18:10:14.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "More advice"}, "contact": {"uuid": "273de190-671d-11ed-aa07-45fd53e013ab", "remote_id": "e3ab8e64-de8c-47e7-85bd-53b1c6014cd3", "email": null, "display_name": "", "account": {"uuid": "273ff6d0-671d-11ed-8929-0fb9723a100f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854303}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "543d5310-789c-11ed-9525-656dc54f1446", "first_shown_at": "2022-12-10T15:07:14.000000Z", "last_shown_at": "2022-12-12T17:59:00.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T17:59:07.000000Z", "last_data_reception_at": "2022-12-12T17:59:07.000000Z", "completed_at": "2022-12-12T17:59:35.000000Z", "received_at": "2022-12-12T17:59:35.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Revoir completement l algortihme proposer plus de missions et etablir une certaine stabilite"}, "contact": {"uuid": "4335d460-66cb-11ed-af31-b35f282ebaf5", "remote_id": "2c5ed1e1-c160-47a7-88ca-587a1dc4c02e", "email": null, "display_name": "", "account": {"uuid": "4337beb0-66cb-11ed-8d39-9738b8040c1d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854303}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "de5245c0-78b1-11ed-b456-a58d38817c44", "first_shown_at": "2022-12-10T17:41:25.000000Z", "last_shown_at": "2022-12-12T17:58:03.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T17:58:05.000000Z", "last_data_reception_at": "2022-12-12T17:58:05.000000Z", "completed_at": "2022-12-12T17:58:39.000000Z", "received_at": "2022-12-12T17:58:39.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Joindre le calendrier du t\u00e9l\u00e9phone \u00e0 l\u2019application"}, "contact": {"uuid": "f5849a20-6750-11ed-ac14-075ad4fe541d", "remote_id": "e70e779b-0eda-4b60-af97-f1ad4d8c8a53", "email": null, "display_name": "", "account": {"uuid": "f586f620-6750-11ed-b407-b1a5ec5aff05", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854304}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b1186150-78ac-11ed-9581-299300401ba7", "first_shown_at": "2022-12-10T17:04:21.000000Z", "last_shown_at": "2022-12-12T17:56:50.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T17:56:54.000000Z", "last_data_reception_at": "2022-12-12T17:56:54.000000Z", "completed_at": "2022-12-12T17:58:15.000000Z", "received_at": "2022-12-12T17:58:15.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Une indemnisation dans la mission suppl\u00e9mentaire pour lurssaf"}, "contact": {"uuid": "43298e90-6712-11ed-b975-9154f530da98", "remote_id": "572525e5-73cf-4ad3-a5b7-5131750a80f3", "email": null, "display_name": "", "account": {"uuid": "432c6c80-6712-11ed-baf7-dda3bc13a337", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854304}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "53550000-7a46-11ed-a248-43071fa1ce9f", "first_shown_at": "2022-12-12T17:56:38.000000Z", "last_shown_at": "2022-12-12T17:56:38.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T17:56:42.000000Z", "last_data_reception_at": "2022-12-12T17:56:42.000000Z", "completed_at": "2022-12-12T17:57:08.000000Z", "received_at": "2022-12-12T17:57:08.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Augmenter le nombre de comp\u00e9tences possibles"}, "contact": {"uuid": "95845250-6857-11ed-b668-2fb8546ff166", "remote_id": "b9130c6e-b934-47d3-bff1-f61d86dfa2a7", "email": null, "display_name": "", "account": {"uuid": "958624a0-6857-11ed-9c02-19f522639526", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854304}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7be5cad0-78a5-11ed-91ac-13b4d432605b", "first_shown_at": "2022-12-10T16:12:46.000000Z", "last_shown_at": "2022-12-12T17:52:11.000000Z", "show_counter": 3, "first_data_reception_at": "2022-12-12T17:52:11.000000Z", "last_data_reception_at": "2022-12-12T17:52:15.000000Z", "completed_at": "2022-12-12T17:52:36.000000Z", "received_at": "2022-12-12T17:52:36.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Showing more local shifts would be amazing!"}, "contact": {"uuid": "3a6bbf60-672c-11ed-9a71-0b8c214dbf45", "remote_id": "5a675bcc-9fec-4c3e-bc8e-bed956e4ea8a", "email": null, "display_name": "", "account": {"uuid": "3a6d40c0-672c-11ed-884e-070e5e04e48c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854304}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9250fb20-78a4-11ed-b909-c78ef70fead2", "first_shown_at": "2022-12-10T16:06:14.000000Z", "last_shown_at": "2022-12-12T17:50:10.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T17:50:14.000000Z", "last_data_reception_at": "2022-12-12T17:50:28.000000Z", "completed_at": "2022-12-12T17:50:47.000000Z", "received_at": "2022-12-12T17:50:47.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Higher pay"}, "contact": {"uuid": "c1959540-69bc-11ed-913b-399056683d17", "remote_id": "6d024a80-5e2d-4e4c-b16f-ee03a63de04d", "email": null, "display_name": "", "account": {"uuid": "c1974210-69bc-11ed-8602-938dcdd41276", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854304}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3cfcfca0-78a0-11ed-a7df-65273ff53e86", "first_shown_at": "2022-12-10T15:35:13.000000Z", "last_shown_at": "2022-12-12T17:41:30.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T17:41:35.000000Z", "last_data_reception_at": "2022-12-12T17:41:35.000000Z", "completed_at": "2022-12-12T17:41:56.000000Z", "received_at": "2022-12-12T17:41:56.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "On me qualifient comme Chef de partie"}, "contact": {"uuid": "a2a438b0-6738-11ed-a365-1b64a1be6392", "remote_id": "58401a3b-d3f1-4503-882f-5d36479f59c2", "email": null, "display_name": "", "account": {"uuid": "a2a67db0-6738-11ed-beb8-89ebdcb60e19", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854304}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b1e6aa50-78a1-11ed-8814-b1d1b171a504", "first_shown_at": "2022-12-10T15:45:38.000000Z", "last_shown_at": "2022-12-12T17:40:51.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T17:40:57.000000Z", "last_data_reception_at": "2022-12-12T17:40:57.000000Z", "completed_at": "2022-12-12T17:41:15.000000Z", "received_at": "2022-12-12T17:41:15.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "More propositions"}, "contact": {"uuid": "1d4b71c0-6b93-11ed-9c38-e3ea2d551fdd", "remote_id": "efb18447-03d8-4744-8140-b968e4336edc", "email": null, "display_name": "", "account": {"uuid": "1d4ceca0-6b93-11ed-a62a-332eff291e63", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854305}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2274ba30-789e-11ed-8ef8-d5f0a1ac54c3", "first_shown_at": "2022-12-10T15:20:09.000000Z", "last_shown_at": "2022-12-12T17:21:18.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T17:21:22.000000Z", "last_data_reception_at": "2022-12-12T17:21:28.000000Z", "completed_at": "2022-12-12T17:22:19.000000Z", "received_at": "2022-12-12T17:22:19.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Avoir plus de missions"}, "contact": {"uuid": "c6a60ec0-66c5-11ed-ad2e-4f3345017b34", "remote_id": "56f2200e-c81e-409e-b28b-3e9726d5acf5", "email": null, "display_name": "", "account": {"uuid": "c6a7f480-66c5-11ed-a860-c160742f81b5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854305}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "830f4630-78a6-11ed-be8e-61f57d7fd7a3", "first_shown_at": "2022-12-10T16:20:07.000000Z", "last_shown_at": "2022-12-12T17:17:09.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T17:17:12.000000Z", "last_data_reception_at": "2022-12-12T17:17:12.000000Z", "completed_at": "2022-12-12T17:17:23.000000Z", "received_at": "2022-12-12T17:17:23.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de missions"}, "contact": {"uuid": "0e9a7a40-6873-11ed-93af-a3603dd44c50", "remote_id": "e0452e7a-1ea6-4c13-b9cc-161c96e272e3", "email": null, "display_name": "", "account": {"uuid": "0e9bdae0-6873-11ed-befe-87c831d3bd68", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854305}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "fad63860-789a-11ed-95c5-5b9cb400d677", "first_shown_at": "2022-12-10T14:57:34.000000Z", "last_shown_at": "2022-12-12T17:13:43.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T17:13:47.000000Z", "last_data_reception_at": "2022-12-12T17:13:47.000000Z", "completed_at": "2022-12-12T17:14:47.000000Z", "received_at": "2022-12-12T17:14:47.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "It\u2019s good to phone staff that haven\u2019t taken shifts in awhile."}, "contact": {"uuid": "fb26bf40-67f6-11ed-8ab3-dfdc147168e8", "remote_id": "daae4afc-3cbb-4b82-ad63-7398222cd8c2", "email": null, "display_name": "", "account": {"uuid": "fb28ebd0-67f6-11ed-81a5-014f47dd4056", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854305}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5ba4d9e0-789b-11ed-8c38-d963fba9164f", "first_shown_at": "2022-12-10T15:00:17.000000Z", "last_shown_at": "2022-12-12T16:51:29.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T16:51:35.000000Z", "last_data_reception_at": "2022-12-12T16:51:35.000000Z", "completed_at": "2022-12-12T16:51:51.000000Z", "received_at": "2022-12-12T16:51:51.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Great agency"}, "contact": {"uuid": "06ca0500-66bf-11ed-ad97-c54e896f2335", "remote_id": "d2417c7f-c4d6-451c-8c80-b3ac0700839b", "email": null, "display_name": "", "account": {"uuid": "06cc0cb0-66bf-11ed-a3d2-8ded888ac84b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854306}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ed628bb0-78a7-11ed-bfa0-5546cdc2bc47", "first_shown_at": "2022-12-10T16:30:15.000000Z", "last_shown_at": "2022-12-12T16:50:32.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T16:50:37.000000Z", "last_data_reception_at": "2022-12-12T16:50:37.000000Z", "completed_at": "2022-12-12T16:51:32.000000Z", "received_at": "2022-12-12T16:51:32.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Il es deja bien"}, "contact": {"uuid": "17a28f00-6717-11ed-8077-11b9bbb628ca", "remote_id": "e518866e-7cb0-464f-a1fd-0c8c23c901e2", "email": null, "display_name": "", "account": {"uuid": "17a46870-6717-11ed-a879-c3a31f34dd95", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854306}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "72198cf0-789d-11ed-87d0-633f1b6cc8c1", "first_shown_at": "2022-12-10T15:15:13.000000Z", "last_shown_at": "2022-12-12T16:28:22.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T16:28:25.000000Z", "last_data_reception_at": "2022-12-12T16:28:25.000000Z", "completed_at": "2022-12-12T16:28:37.000000Z", "received_at": "2022-12-12T16:28:37.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "NoT applicable"}, "contact": {"uuid": "4c801570-6a9d-11ed-bcee-933ca81e5f84", "remote_id": "d23e0fa3-608a-4dc5-bf48-a3dff9864420", "email": null, "display_name": "", "account": {"uuid": "4c81f5a0-6a9d-11ed-be6e-0daf31835bdd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854306}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "01cad5c0-7a39-11ed-bf6e-6b8af99bca42", "first_shown_at": "2022-12-12T16:21:18.000000Z", "last_shown_at": "2022-12-12T16:21:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T16:21:35.000000Z", "last_data_reception_at": "2022-12-12T16:21:35.000000Z", "completed_at": "2022-12-12T16:22:30.000000Z", "received_at": "2022-12-12T16:22:30.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Bonjour\nEnvoie les missions tous pr\u00e8s de chez nous."}, "contact": {"uuid": "7371f310-7045-11ed-b762-2982b32e8776", "remote_id": "52a22c29-f4ab-443f-b131-7c98fcd89083", "email": null, "display_name": "", "account": {"uuid": "737384f0-7045-11ed-b28c-5dde210e2768", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["localisation"], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854306}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1d6c2610-7897-11ed-b12a-8b0dcbbc0715", "first_shown_at": "2022-12-10T14:29:54.000000Z", "last_shown_at": "2022-12-12T16:10:41.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T16:10:45.000000Z", "last_data_reception_at": "2022-12-12T16:10:45.000000Z", "completed_at": "2022-12-12T16:10:54.000000Z", "received_at": "2022-12-12T16:10:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Meilleur"}, "contact": {"uuid": "a5eb3c00-67f3-11ed-968f-6182cead397e", "remote_id": "47818126-88ed-46f0-8bba-ba27874af74c", "email": null, "display_name": "", "account": {"uuid": "a5ed8280-67f3-11ed-9822-b9ca214f9bae", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854306}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d18d6270-789c-11ed-87c0-c5b9dc7be08c", "first_shown_at": "2022-12-10T15:10:44.000000Z", "last_shown_at": "2022-12-12T16:08:25.000000Z", "show_counter": 3, "first_data_reception_at": "2022-12-12T16:08:31.000000Z", "last_data_reception_at": "2022-12-12T16:08:31.000000Z", "completed_at": "2022-12-12T16:09:06.000000Z", "received_at": "2022-12-12T16:09:06.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Brigad meilleur application pour bosser"}, "contact": {"uuid": "f1507580-66c8-11ed-8d5a-1f42e88d99c3", "remote_id": "59a6450d-a4e6-4be8-bda9-cc3895baadd2", "email": null, "display_name": "", "account": {"uuid": "f1525760-66c8-11ed-9121-8d3cde58fd97", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854307}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "372dbbc0-78a1-11ed-9e90-a1b49a408c98", "first_shown_at": "2022-12-10T15:42:12.000000Z", "last_shown_at": "2022-12-12T16:04:14.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T16:04:20.000000Z", "last_data_reception_at": "2022-12-12T16:04:20.000000Z", "completed_at": "2022-12-12T16:05:02.000000Z", "received_at": "2022-12-12T16:05:02.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Magnifique"}, "contact": {"uuid": "07711940-6750-11ed-9095-c32f3c2b1cd8", "remote_id": "27c9eab0-ec24-4d9b-80c1-ae85ad70d380", "email": null, "display_name": "", "account": {"uuid": "07728f20-6750-11ed-b387-17cd912cb3e4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854307}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d67026c0-789f-11ed-b454-3fa240f1e0b6", "first_shown_at": "2022-12-10T15:32:21.000000Z", "last_shown_at": "2022-12-12T15:57:52.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T15:57:59.000000Z", "last_data_reception_at": "2022-12-12T15:57:59.000000Z", "completed_at": "2022-12-12T15:58:17.000000Z", "received_at": "2022-12-12T15:58:17.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": null}, "contact": {"uuid": "63f26560-675d-11ed-b0e4-df206600b899", "remote_id": "df982314-5b2a-4efb-a56e-738f8d86635e", "email": null, "display_name": "", "account": {"uuid": "63f469c0-675d-11ed-91cd-a97769d9bf7f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854307}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "87197060-789d-11ed-9258-df0617af29a9", "first_shown_at": "2022-12-10T15:15:49.000000Z", "last_shown_at": "2022-12-12T15:46:07.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T15:46:11.000000Z", "last_data_reception_at": "2022-12-12T15:46:11.000000Z", "completed_at": "2022-12-12T15:46:30.000000Z", "received_at": "2022-12-12T15:46:30.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Having a contact telephone number to Brigad office"}, "contact": {"uuid": "27116dd0-66bf-11ed-bd63-f5918a771173", "remote_id": "f2ee5ae0-acc9-4cc4-9c85-61e28e8ba57e", "email": null, "display_name": "", "account": {"uuid": "271393f0-66bf-11ed-9c91-b3bf3f7b2454", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854307}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "23099140-7898-11ed-be66-03e7caeedf25", "first_shown_at": "2022-12-10T14:37:13.000000Z", "last_shown_at": "2022-12-12T15:35:39.000000Z", "show_counter": 5, "first_data_reception_at": "2022-12-12T15:40:44.000000Z", "last_data_reception_at": "2022-12-12T15:45:25.000000Z", "completed_at": "2022-12-12T15:45:09.000000Z", "received_at": "2022-12-12T15:45:09.000000Z", "dismissed_at": "2022-12-12T15:45:28.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "en m,accordant plus de missions merci"}, "contact": {"uuid": "dce12ce0-675d-11ed-adb4-9776801978b7", "remote_id": "13a55573-6b4f-481f-8603-51f65bb9f491", "email": null, "display_name": "", "account": {"uuid": "dce28080-675d-11ed-88f8-13c9e1b05c0a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854307}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "eb982690-7a32-11ed-9d61-f3719948ce42", "first_shown_at": "2022-12-12T15:37:43.000000Z", "last_shown_at": "2022-12-12T15:37:43.000000Z", "show_counter": 0, "first_data_reception_at": "2022-12-12T15:37:43.000000Z", "last_data_reception_at": "2022-12-12T15:37:43.000000Z", "completed_at": "2022-12-12T15:37:44.000000Z", "received_at": "2022-12-12T15:37:44.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "460657d0-77c7-11ed-aacf-af6185bcbd6c", "remote_id": "2b6507f2-2557-428f-92f1-094af4715d4e", "email": "ef57601@compass-group.fr", "display_name": "", "account": {"uuid": "46095510-77c7-11ed-b04c-613b3bb7e2b9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Key Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854308}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4002da90-789c-11ed-88a9-e5b38db6a131", "first_shown_at": "2022-12-10T15:06:40.000000Z", "last_shown_at": "2022-12-12T15:22:53.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T15:22:57.000000Z", "last_data_reception_at": "2022-12-12T15:22:57.000000Z", "completed_at": "2022-12-12T15:24:24.000000Z", "received_at": "2022-12-12T15:24:24.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je trouve des mission que souh\u00e8te"}, "contact": {"uuid": "20a86b80-66ca-11ed-9cd4-b3d83d82b9b1", "remote_id": "309d66f9-cfc2-4115-afe8-137ceff80312", "email": null, "display_name": "", "account": {"uuid": "20aa8070-66ca-11ed-aa8a-61da2af03401", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854308}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ced4af20-7a2f-11ed-8d76-67a56580c4c7", "first_shown_at": "2022-12-12T15:15:27.000000Z", "last_shown_at": "2022-12-12T15:15:27.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T15:17:06.000000Z", "last_data_reception_at": "2022-12-12T15:17:06.000000Z", "completed_at": "2022-12-12T15:17:18.000000Z", "received_at": "2022-12-12T15:17:18.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "cc4c8650-7963-11ed-862e-55b00eda29d9", "remote_id": "7c465f40-2d1a-4d18-bc41-e07e5c655d3c", "email": "s.mourey@yahoo.fr", "display_name": "", "account": {"uuid": "cc4e44f0-7963-11ed-972b-b31bea4beb74", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854308}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "15c5d080-789a-11ed-b518-11512a13540e", "first_shown_at": "2022-12-10T14:51:10.000000Z", "last_shown_at": "2022-12-12T15:15:09.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T15:15:19.000000Z", "last_data_reception_at": "2022-12-12T15:15:19.000000Z", "completed_at": "2022-12-12T15:16:05.000000Z", "received_at": "2022-12-12T15:16:05.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "It\u2019s total 100% helpful for me."}, "contact": {"uuid": "7716e510-671d-11ed-881d-bdc8f4fad70e", "remote_id": "962db427-8961-4c58-8c24-e04537e7ed72", "email": null, "display_name": "", "account": {"uuid": "7718c080-671d-11ed-a32f-09ad79860f68", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854308}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9d54e400-7897-11ed-ace1-911b42a40127", "first_shown_at": "2022-12-10T14:33:29.000000Z", "last_shown_at": "2022-12-12T15:10:05.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T15:10:11.000000Z", "last_data_reception_at": "2022-12-12T15:10:29.000000Z", "completed_at": "2022-12-12T15:11:33.000000Z", "received_at": "2022-12-12T15:11:33.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pour le moment je suis tr\u00e8s satisfaite"}, "contact": {"uuid": "1a967590-66ba-11ed-a915-6d0108463cbc", "remote_id": "e0a5a68a-eb12-4179-a0d2-4192657aaef4", "email": null, "display_name": "", "account": {"uuid": "1a97ba00-66ba-11ed-9979-6f543b1a4bc2", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854308}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4754bce0-7a2e-11ed-8661-3ffd8d4db19c", "first_shown_at": "2022-12-12T15:04:30.000000Z", "last_shown_at": "2022-12-12T15:04:30.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T15:06:53.000000Z", "last_data_reception_at": "2022-12-12T15:06:53.000000Z", "completed_at": "2022-12-12T15:07:02.000000Z", "received_at": "2022-12-12T15:07:02.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "0", "comment_ameliorer_brigad": null}, "contact": {"uuid": "a3f46350-4a4e-11ed-8822-8b37992f955b", "remote_id": "73240571-e310-4eb8-88f3-257c93754274", "email": "bistrotdesvignerons@outlook.fr", "display_name": "", "account": {"uuid": "a3f6de80-4a4e-11ed-85ed-eb8fe56952d9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854308}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "739e4600-70bf-11ed-803f-39406d448d47", "first_shown_at": "2022-11-30T14:58:29.000000Z", "last_shown_at": "2022-12-12T15:01:27.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T15:01:33.000000Z", "last_data_reception_at": "2022-12-12T15:01:33.000000Z", "completed_at": "2022-12-12T15:01:36.000000Z", "received_at": "2022-12-12T15:01:36.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "5a7a0640-5b75-11ed-9a2e-4f2dca9b153d", "remote_id": "9784644b-c103-47d0-b0a5-8a2439e081ef", "email": "ef60901@compass-group.fr", "display_name": "", "account": {"uuid": "5a7d3000-5b75-11ed-85ab-8fcfaca37684", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Key Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854308}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7197f770-7898-11ed-9b3d-752d47734aba", "first_shown_at": "2022-12-10T14:39:25.000000Z", "last_shown_at": "2022-12-12T14:48:49.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T14:48:54.000000Z", "last_data_reception_at": "2022-12-12T14:48:54.000000Z", "completed_at": "2022-12-12T14:49:08.000000Z", "received_at": "2022-12-12T14:49:08.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellent app"}, "contact": {"uuid": "2ea7e490-6758-11ed-8436-7799f83daede", "remote_id": "a066f14c-ebf3-410c-bc1d-55280aa78a02", "email": null, "display_name": "", "account": {"uuid": "2eaaecb0-6758-11ed-a319-5d50ffc017bb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854309}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8a9bca40-7a2a-11ed-bce7-d55257e65b5a", "first_shown_at": "2022-12-12T14:37:45.000000Z", "last_shown_at": "2022-12-12T14:37:45.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T14:37:56.000000Z", "last_data_reception_at": "2022-12-12T14:37:56.000000Z", "completed_at": "2022-12-12T14:38:27.000000Z", "received_at": "2022-12-12T14:38:27.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Nice bar to work with."}, "contact": {"uuid": "6b91bd70-6cac-11ed-b1de-7df775873359", "remote_id": "0635445c-8d3c-415c-a9e7-ecc72fb00051", "email": null, "display_name": "", "account": {"uuid": "6b937e00-6cac-11ed-a655-552998ed0a2e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854309}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a67f87b0-7a1c-11ed-b835-27915541cf8c", "first_shown_at": "2022-12-12T12:58:18.000000Z", "last_shown_at": "2022-12-12T12:58:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T12:58:25.000000Z", "last_data_reception_at": "2022-12-12T12:58:25.000000Z", "completed_at": "2022-12-12T12:58:46.000000Z", "received_at": "2022-12-12T12:58:46.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus des missions svp"}, "contact": {"uuid": "8ff3b910-6995-11ed-b393-f9ffaa555baa", "remote_id": "dd31c58c-2e59-4141-9d74-34fd5b2ae9a1", "email": null, "display_name": "", "account": {"uuid": "8ff56d20-6995-11ed-97cf-f13e79b11e33", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854309}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "38f80c80-7a1c-11ed-b035-dbcb9688bb63", "first_shown_at": "2022-12-12T12:55:15.000000Z", "last_shown_at": "2022-12-12T12:55:15.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T12:55:26.000000Z", "last_data_reception_at": "2022-12-12T12:55:26.000000Z", "completed_at": "2022-12-12T12:55:59.000000Z", "received_at": "2022-12-12T12:55:59.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "have a Pay earlier option"}, "contact": {"uuid": "e2243cf0-6750-11ed-845c-5d08776b8421", "remote_id": "c4275fe2-5748-4ccc-9d65-e9cc0c487110", "email": null, "display_name": "", "account": {"uuid": "e2265630-6750-11ed-b57f-3d2517c623f3", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["payment"], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854309}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c77c09a0-7a1b-11ed-949f-671be420d11d", "first_shown_at": "2022-12-12T12:52:04.000000Z", "last_shown_at": "2022-12-12T12:52:04.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T12:52:10.000000Z", "last_data_reception_at": "2022-12-12T12:52:10.000000Z", "completed_at": "2022-12-12T12:52:22.000000Z", "received_at": "2022-12-12T12:52:22.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "3dbf4e30-4a45-11ed-b9dd-c53373cd271f", "remote_id": "4456c929-8ecf-4b1c-89a3-b786020ad91a", "email": "elodie.neto@compass-group.fr", "display_name": "", "account": {"uuid": "3dc20f90-4a45-11ed-8278-5726276c44e8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854309}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9d78f880-7a15-11ed-90c9-f74d3d0bb19f", "first_shown_at": "2022-12-12T12:07:57.000000Z", "last_shown_at": "2022-12-12T12:07:57.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T12:08:01.000000Z", "last_data_reception_at": "2022-12-12T12:08:01.000000Z", "completed_at": "2022-12-12T12:08:47.000000Z", "received_at": "2022-12-12T12:08:47.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Pouvoir d\u00e9cider de. La date des encaissements."}, "contact": {"uuid": "3ceb0e60-671b-11ed-aaef-bb90e29e8f2b", "remote_id": "24404326-e2a3-4a1a-8431-84f95431d042", "email": null, "display_name": "", "account": {"uuid": "3cedead0-671b-11ed-b4d1-73aced702d5d", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["payment"], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854309}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c8823250-7a0e-11ed-a450-315ff52ee024", "first_shown_at": "2022-12-12T11:19:03.000000Z", "last_shown_at": "2022-12-12T11:19:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T11:19:07.000000Z", "last_data_reception_at": "2022-12-12T11:19:07.000000Z", "completed_at": "2022-12-12T11:20:23.000000Z", "received_at": "2022-12-12T11:20:23.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "En ayant des missions plus proche de mon domicile ou dans le 95.Merci"}, "contact": {"uuid": "5de18a40-66bd-11ed-bb00-a1023ae44165", "remote_id": "d235d956-61d6-409e-9427-fed3b3b3e9c7", "email": null, "display_name": "", "account": {"uuid": "5de39700-66bd-11ed-961b-e96001a6ca9a", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["localisation"], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854310}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "41bd57b0-7a0e-11ed-b3df-6d580e7fdfa2", "first_shown_at": "2022-12-12T11:15:16.000000Z", "last_shown_at": "2022-12-12T11:16:03.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T11:15:25.000000Z", "last_data_reception_at": "2022-12-12T11:15:25.000000Z", "completed_at": "2022-12-12T11:15:54.000000Z", "received_at": "2022-12-12T11:15:54.000000Z", "dismissed_at": "2022-12-12T11:16:05.000000Z", "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "To be considerate of everyone's right to work circumstances"}, "contact": {"uuid": "9907a120-66da-11ed-99da-37b73f3bc05e", "remote_id": "3cc5af8b-2fde-455c-bb6c-49f012f2f4a0", "email": null, "display_name": "", "account": {"uuid": "9909d100-66da-11ed-81d4-490a02d04fbd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854310}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "19cb0ec0-7a0e-11ed-a605-f79a7d0a4e7a", "first_shown_at": "2022-12-12T11:14:09.000000Z", "last_shown_at": "2022-12-12T11:14:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T11:14:14.000000Z", "last_data_reception_at": "2022-12-12T11:14:21.000000Z", "completed_at": "2022-12-12T11:14:25.000000Z", "received_at": "2022-12-12T11:14:25.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Ggghjcccb"}, "contact": {"uuid": "05cabe60-6701-11ed-a19f-33192d63c185", "remote_id": "3ebaaa3e-607e-4e77-8d5b-fa662cc320d5", "email": null, "display_name": "", "account": {"uuid": "05ccd050-6701-11ed-a8f8-ebde536959c7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854310}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "553179a0-7a0b-11ed-b6bd-eb7fdb4bcfc6", "first_shown_at": "2022-12-12T10:54:21.000000Z", "last_shown_at": "2022-12-12T10:54:21.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T10:54:22.000000Z", "last_data_reception_at": "2022-12-12T10:54:22.000000Z", "completed_at": "2022-12-12T10:54:33.000000Z", "received_at": "2022-12-12T10:54:33.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Muy buena execelente"}, "contact": {"uuid": "dcda2e00-675c-11ed-b642-f72d8ea8fe49", "remote_id": "dbf01f11-b353-4c14-8d4c-6fd62ea40a54", "email": null, "display_name": "", "account": {"uuid": "dcdc02a0-675c-11ed-a8b0-d969e95ca32b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854310}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "489411d0-7a0a-11ed-adb3-93cf75829041", "first_shown_at": "2022-12-12T10:46:50.000000Z", "last_shown_at": "2022-12-12T10:46:50.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T10:46:55.000000Z", "last_data_reception_at": "2022-12-12T10:46:55.000000Z", "completed_at": "2022-12-12T10:46:59.000000Z", "received_at": "2022-12-12T10:46:59.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "5087d7a0-4aca-11ed-863b-09908f473b1f", "remote_id": "d3156402-e7a4-4cfb-a398-cb3c47a0acbb", "email": "c.guenneau@lafocss.org", "display_name": "", "account": {"uuid": "508976e0-4aca-11ed-a700-f3b59aab5701", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854310}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2998c7e0-7a0a-11ed-ac10-a92348e7db42", "first_shown_at": "2022-12-12T10:45:58.000000Z", "last_shown_at": "2022-12-12T10:45:58.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T10:46:03.000000Z", "last_data_reception_at": "2022-12-12T10:46:03.000000Z", "completed_at": "2022-12-12T10:46:27.000000Z", "received_at": "2022-12-12T10:46:27.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "\u2026\u2026\u2026."}, "contact": {"uuid": "8d10da50-68ae-11ed-808f-336b5b2f7fa2", "remote_id": "ba86282e-5b8a-42a4-af5b-e23e2c711089", "email": null, "display_name": "", "account": {"uuid": "8d121040-68ae-11ed-a18b-b5d5d4e46615", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854310}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "29e06ca0-7a09-11ed-b99f-f91b0c03d1af", "first_shown_at": "2022-12-12T10:38:49.000000Z", "last_shown_at": "2022-12-12T10:38:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T10:38:51.000000Z", "last_data_reception_at": "2022-12-12T10:38:51.000000Z", "completed_at": "2022-12-12T10:39:14.000000Z", "received_at": "2022-12-12T10:39:14.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Respect pour le travaille de le person\u00e9 avec beaucoup d\u2019exp\u00e9rience"}, "contact": {"uuid": "6996ff30-6839-11ed-ac1b-fb494a65bcda", "remote_id": "26180117-5986-45f2-b94b-bf69ecd04e7c", "email": null, "display_name": "", "account": {"uuid": "6998a490-6839-11ed-968d-2f4d58f286b1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854310}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2cf47a50-7559-11ed-b03b-8db7045334f3", "first_shown_at": "2022-12-06T11:28:58.000000Z", "last_shown_at": "2022-12-12T10:31:15.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T10:31:19.000000Z", "last_data_reception_at": "2022-12-12T10:31:19.000000Z", "completed_at": "2022-12-12T10:31:23.000000Z", "received_at": "2022-12-12T10:31:23.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "5f423d10-7151-11ed-b95d-fd29e4318329", "remote_id": "7d002e16-eabf-4a88-924c-c4fcd12e11e9", "email": "e650301@compass-group.fr", "display_name": "", "account": {"uuid": "5f43f640-7151-11ed-9cad-15f4fb99b15b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Key Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854311}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f1e48b10-7a07-11ed-928e-0501676df522", "first_shown_at": "2022-12-12T10:30:06.000000Z", "last_shown_at": "2022-12-12T10:30:06.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T10:30:12.000000Z", "last_data_reception_at": "2022-12-12T10:30:12.000000Z", "completed_at": "2022-12-12T10:30:29.000000Z", "received_at": "2022-12-12T10:30:29.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Taux horaires"}, "contact": {"uuid": "3c2b25b0-66be-11ed-9df8-2dac3ad04a35", "remote_id": "0f728205-dfd9-4ff7-af20-301720c992d1", "email": null, "display_name": "", "account": {"uuid": "3c2cd360-66be-11ed-85ba-c90ee7a3395b", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["payment"], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854311}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "09e7d900-7a07-11ed-b8ce-17cf1b600f5f", "first_shown_at": "2022-12-12T10:23:36.000000Z", "last_shown_at": "2022-12-12T10:23:36.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T10:23:55.000000Z", "last_data_reception_at": "2022-12-12T10:23:55.000000Z", "completed_at": "2022-12-12T10:24:45.000000Z", "received_at": "2022-12-12T10:24:45.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En donnant des missions de 1 mois"}, "contact": {"uuid": "0c52f2e0-6758-11ed-8665-232d0860ec48", "remote_id": "d92f6600-a771-4078-9b99-06ad06190bdc", "email": null, "display_name": "", "account": {"uuid": "0c562790-6758-11ed-af61-4f708684264a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854311}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2133f080-7a05-11ed-b0eb-c52dbf132f3c", "first_shown_at": "2022-12-12T10:09:56.000000Z", "last_shown_at": "2022-12-12T10:09:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T10:10:17.000000Z", "last_data_reception_at": "2022-12-12T10:10:17.000000Z", "completed_at": "2022-12-12T10:10:43.000000Z", "received_at": "2022-12-12T10:10:43.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "Manque d'organisation, impossible de joindre le service"}, "contact": {"uuid": "7d033160-6740-11ed-bc19-c79123d9c8a2", "remote_id": "0ea8cb07-11ec-401a-877d-d6c3c52303fa", "email": null, "display_name": "", "account": {"uuid": "7d04d700-6740-11ed-a7aa-09ce4a753196", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854311}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "542bc650-7a04-11ed-817e-47c672f01e22", "first_shown_at": "2022-12-12T10:04:12.000000Z", "last_shown_at": "2022-12-12T10:04:12.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T10:04:46.000000Z", "last_data_reception_at": "2022-12-12T10:04:46.000000Z", "completed_at": "2022-12-12T10:06:32.000000Z", "received_at": "2022-12-12T10:06:32.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "7", "comment_ameliorer_brigad": "bonjour ,\nmanque de visibilit\u00e9 pour les missions et leur unit\u00e9 d'intervention. \nbien cordialement\nMme LE COZ"}, "contact": {"uuid": "4eea4480-4a22-11ed-98e4-3f4aa34cda2e", "remote_id": "109321cc-e0dc-4728-bf60-7697c6811e2b", "email": "christelle.lecoz@acsc.asso.fr", "display_name": "", "account": {"uuid": "4eec57a0-4a22-11ed-b4a6-a31ef5cb5656", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Small Accounts"]}, "emitted_at": 1670944854311}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "84c1aee0-7a03-11ed-b33a-0f0dcba71183", "first_shown_at": "2022-12-12T09:58:24.000000Z", "last_shown_at": "2022-12-12T09:58:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T09:58:31.000000Z", "last_data_reception_at": "2022-12-12T09:58:31.000000Z", "completed_at": "2022-12-12T09:59:42.000000Z", "received_at": "2022-12-12T09:59:42.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Things are fine for me at the moment, certainly better than other apps I have used."}, "contact": {"uuid": "8a643780-6714-11ed-9ecd-c37b90bad783", "remote_id": "9aa69d5c-e97e-4cee-bd1c-d44331bfed24", "email": null, "display_name": "", "account": {"uuid": "8a6638a0-6714-11ed-83dd-29433a3101bf", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854312}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9746c1c0-7a02-11ed-a20e-91d7e617b732", "first_shown_at": "2022-12-12T09:51:46.000000Z", "last_shown_at": "2022-12-12T09:51:46.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T09:51:56.000000Z", "last_data_reception_at": "2022-12-12T09:51:56.000000Z", "completed_at": "2022-12-12T09:52:21.000000Z", "received_at": "2022-12-12T09:52:21.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "So far so good"}, "contact": {"uuid": "1b372380-76fb-11ed-b854-158e17f00cd5", "remote_id": "2ced0964-403f-444a-bc54-8e2ffca37e73", "email": null, "display_name": "", "account": {"uuid": "1b38a5d0-76fb-11ed-81b9-6f3d5b8a946a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854312}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "01d773b0-7a02-11ed-8919-4b7ef6c6f779", "first_shown_at": "2022-12-12T09:47:35.000000Z", "last_shown_at": "2022-12-12T09:47:35.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T09:47:42.000000Z", "last_data_reception_at": "2022-12-12T09:47:42.000000Z", "completed_at": "2022-12-12T09:50:04.000000Z", "received_at": "2022-12-12T09:50:04.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Bringing more jobs for the site.And trying to pay more better than before.Because london is too expensive and peoples are working to stay alive."}, "contact": {"uuid": "c3f6c0b0-6af1-11ed-b5dd-7f9652700e88", "remote_id": "3c6db55d-8aa9-4e2d-88fe-e78d9f625863", "email": null, "display_name": "", "account": {"uuid": "c3f86430-6af1-11ed-8b01-39ec5773fb63", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["pricing"], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854312}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7b219690-7a01-11ed-81bb-b149e3a69047", "first_shown_at": "2022-12-12T09:43:49.000000Z", "last_shown_at": "2022-12-12T09:43:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T09:43:56.000000Z", "last_data_reception_at": "2022-12-12T09:43:56.000000Z", "completed_at": "2022-12-12T09:45:25.000000Z", "received_at": "2022-12-12T09:45:25.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Donnez les missions aux brigadiers qui vous le demande"}, "contact": {"uuid": "a85fdd60-6724-11ed-be26-b1c7d20085eb", "remote_id": "0bd1f1a0-e43a-451d-b0bd-e60a5273f6f7", "email": null, "display_name": "", "account": {"uuid": "a8614de0-6724-11ed-b745-f7b23588840d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854312}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "50992270-7a00-11ed-9d38-2587c0ae50ed", "first_shown_at": "2022-12-12T09:35:28.000000Z", "last_shown_at": "2022-12-12T09:35:28.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T09:35:32.000000Z", "last_data_reception_at": "2022-12-12T09:35:34.000000Z", "completed_at": "2022-12-12T09:35:49.000000Z", "received_at": "2022-12-12T09:35:49.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien \u00e0 am\u00e9liorer"}, "contact": {"uuid": "fc783ad0-69d4-11ed-9d9a-97ea792e11bd", "remote_id": "f3c308a6-8aa0-4094-bdf6-5aefe877cd94", "email": null, "display_name": "", "account": {"uuid": "fc79bb70-69d4-11ed-8b90-ef383a406275", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854312}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "558dcb20-79fd-11ed-9372-d9664dba0165", "first_shown_at": "2022-12-12T09:14:08.000000Z", "last_shown_at": "2022-12-12T09:14:08.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T09:14:13.000000Z", "last_data_reception_at": "2022-12-12T09:14:13.000000Z", "completed_at": "2022-12-12T09:14:36.000000Z", "received_at": "2022-12-12T09:14:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Avoir des missions domicile"}, "contact": {"uuid": "79f45b00-68d7-11ed-91bf-8f355fd06b40", "remote_id": "2e1f9d6d-81d0-485c-ad3e-90d2fa32a241", "email": null, "display_name": "", "account": {"uuid": "79f59c80-68d7-11ed-b4c3-99fccd837a86", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854312}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "49349960-79fc-11ed-bd40-6f7a79ca5054", "first_shown_at": "2022-12-12T09:06:38.000000Z", "last_shown_at": "2022-12-12T09:06:38.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T09:06:41.000000Z", "last_data_reception_at": "2022-12-12T09:06:41.000000Z", "completed_at": "2022-12-12T09:09:10.000000Z", "received_at": "2022-12-12T09:09:10.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "- Make it more easier to copy and paste the address \n- After working at a new company have a comment box to share written feedback in a few words. \n- Allow 3 chances before getting suspended I believe it\u2019s 2 chances which I think is a bit harsh"}, "contact": {"uuid": "4c272000-6837-11ed-8df2-7be3a7c53726", "remote_id": "8ec32909-99ee-4313-a908-6757b0a8c677", "email": null, "display_name": "", "account": {"uuid": "4c292c40-6837-11ed-bc71-b9b0c158f1e0", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["suspension", "UX"], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854312}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "eb957670-79fb-11ed-aab9-ed27e07cebb2", "first_shown_at": "2022-12-12T09:04:01.000000Z", "last_shown_at": "2022-12-12T09:04:01.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T09:05:44.000000Z", "last_data_reception_at": "2022-12-12T09:05:44.000000Z", "completed_at": "2022-12-12T09:05:56.000000Z", "received_at": "2022-12-12T09:05:56.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Good amazing"}, "contact": {"uuid": "b034d530-6766-11ed-bad1-f7e439182708", "remote_id": "3e68b965-c474-4098-a026-b9bd6cc50132", "email": null, "display_name": "", "account": {"uuid": "b036b570-6766-11ed-afd3-03893e0ba5ee", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854313}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d85f6bb0-79fa-11ed-9623-f395842182cf", "first_shown_at": "2022-12-12T08:56:19.000000Z", "last_shown_at": "2022-12-12T08:56:19.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T08:56:23.000000Z", "last_data_reception_at": "2022-12-12T08:56:23.000000Z", "completed_at": "2022-12-12T08:56:32.000000Z", "received_at": "2022-12-12T08:56:32.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellent"}, "contact": {"uuid": "32b7a010-6c08-11ed-b9a7-5fd03a6c63f1", "remote_id": "9aef0610-8eba-4b6b-9bba-157e3fda0602", "email": null, "display_name": "", "account": {"uuid": "32b924b0-6c08-11ed-8b26-f1a341fdc2ed", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854313}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b834c1a0-79f9-11ed-bd44-6b02ae48450f", "first_shown_at": "2022-12-12T08:48:16.000000Z", "last_shown_at": "2022-12-12T08:48:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T08:48:21.000000Z", "last_data_reception_at": "2022-12-12T08:48:21.000000Z", "completed_at": "2022-12-12T08:48:44.000000Z", "received_at": "2022-12-12T08:48:44.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s bonne exp\u00e9rience"}, "contact": {"uuid": "4cdaf8b0-66c5-11ed-b168-172b205af6c9", "remote_id": "22d75449-51c1-484e-920c-dee8dec104ef", "email": null, "display_name": "", "account": {"uuid": "4cdc9dd0-66c5-11ed-bf1c-79b4d01d2dbe", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854313}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c2c5e340-79f6-11ed-97d7-395e5cab36a0", "first_shown_at": "2022-12-12T08:27:05.000000Z", "last_shown_at": "2022-12-12T08:27:05.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T08:27:24.000000Z", "last_data_reception_at": "2022-12-12T08:27:24.000000Z", "completed_at": "2022-12-12T08:28:32.000000Z", "received_at": "2022-12-12T08:28:32.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Proposant plus de missions"}, "contact": {"uuid": "b1fdaa40-681f-11ed-91b9-5535772d2fe2", "remote_id": "6ab199ac-a2ac-4083-aee2-f963e938e851", "email": null, "display_name": "", "account": {"uuid": "b1ffb160-681f-11ed-bcbe-e72d388d44f0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854313}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8eff96b0-79f4-11ed-a83b-276cd7a440cd", "first_shown_at": "2022-12-12T08:11:19.000000Z", "last_shown_at": "2022-12-12T08:11:19.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T08:11:21.000000Z", "last_data_reception_at": "2022-12-12T08:11:21.000000Z", "completed_at": "2022-12-12T08:11:32.000000Z", "received_at": "2022-12-12T08:11:32.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Great experience"}, "contact": {"uuid": "37d63b70-68fb-11ed-a5b6-6114e75e1c3a", "remote_id": "867417da-40fe-4839-b3f5-bd68d6ec0813", "email": null, "display_name": "", "account": {"uuid": "37d78740-68fb-11ed-ad76-bd06a9cea0ae", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854313}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1de0c5b0-79f2-11ed-9eb9-e3ae9e3c389b", "first_shown_at": "2022-12-12T07:53:50.000000Z", "last_shown_at": "2022-12-12T07:53:50.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T07:53:55.000000Z", "last_data_reception_at": "2022-12-12T07:53:55.000000Z", "completed_at": "2022-12-12T07:54:11.000000Z", "received_at": "2022-12-12T07:54:11.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "C\u2019est pas tr\u00e8s bien organiser"}, "contact": {"uuid": "e95a2c20-6713-11ed-beed-1523e8d4e66c", "remote_id": "d688d31e-6334-46f5-a9f5-20d033794678", "email": null, "display_name": "", "account": {"uuid": "e95c0c40-6713-11ed-90f7-d506bcb49d37", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854313}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "400c7170-79e9-11ed-9198-5f60d5de0b83", "first_shown_at": "2022-12-12T06:50:22.000000Z", "last_shown_at": "2022-12-12T06:50:22.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T06:50:26.000000Z", "last_data_reception_at": "2022-12-12T06:50:26.000000Z", "completed_at": "2022-12-12T06:50:53.000000Z", "received_at": "2022-12-12T06:50:53.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Ces tr\u00e8s bien comme sa"}, "contact": {"uuid": "b75de0a0-6740-11ed-80a2-83643e30953a", "remote_id": "5aeb07a0-e90b-4af1-bc58-13c598905786", "email": null, "display_name": "", "account": {"uuid": "b75f53e0-6740-11ed-b77f-1de4bd514cb3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854314}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a34238d0-79e8-11ed-b380-9b9c83f892ac", "first_shown_at": "2022-12-12T06:45:59.000000Z", "last_shown_at": "2022-12-12T06:45:59.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-12T06:46:17.000000Z", "last_data_reception_at": "2022-12-12T06:46:17.000000Z", "completed_at": "2022-12-12T06:48:11.000000Z", "received_at": "2022-12-12T06:48:11.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Continuer tout jour"}, "contact": {"uuid": "33c22e30-6718-11ed-919f-5bd44d8ccb43", "remote_id": "ef46cd63-7731-4dba-9864-bbc3c6863570", "email": null, "display_name": "", "account": {"uuid": "33c43e70-6718-11ed-8019-1b2a1763842d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854314}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ec419ae0-79e1-11ed-9126-d77a4b2a98f4", "first_shown_at": "2022-12-12T05:57:55.000000Z", "last_shown_at": "2022-12-12T05:57:55.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T05:58:00.000000Z", "last_data_reception_at": "2022-12-12T05:58:00.000000Z", "completed_at": "2022-12-12T05:58:20.000000Z", "received_at": "2022-12-12T05:58:20.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Bien ! Permet des prises de postes rapides"}, "contact": {"uuid": "978c3c20-66bc-11ed-b313-8594c41674b0", "remote_id": "e73e37da-29b2-44e8-a057-d8027dde2181", "email": null, "display_name": "", "account": {"uuid": "978f1ce0-66bc-11ed-b6ff-f519b325b075", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854314}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f25b2590-79de-11ed-9892-dffd7ec3ee98", "first_shown_at": "2022-12-12T05:36:37.000000Z", "last_shown_at": "2022-12-12T05:36:37.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T05:36:44.000000Z", "last_data_reception_at": "2022-12-12T05:36:44.000000Z", "completed_at": "2022-12-12T05:42:57.000000Z", "received_at": "2022-12-12T05:42:57.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "je suis tr\u00e8s ravi du fonctionnement pas de discrimination entre coll\u00e8gues merci pour tout"}, "contact": {"uuid": "40866500-6704-11ed-84ba-b975085cc458", "remote_id": "774c1a9f-43b7-4a79-9397-c62734869d4d", "email": null, "display_name": "", "account": {"uuid": "408943b0-6704-11ed-9125-392b5ac4d27e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854314}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1a359dc0-79d3-11ed-ac91-27f63c5fbcbd", "first_shown_at": "2022-12-12T04:11:50.000000Z", "last_shown_at": "2022-12-12T04:11:50.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T04:11:52.000000Z", "last_data_reception_at": "2022-12-12T04:12:04.000000Z", "completed_at": "2022-12-12T04:12:11.000000Z", "received_at": "2022-12-12T04:12:11.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "1", "how_could_we_improve_your_experience_with_brigad": "\u2026\u2026\u2026\u2026\u2026\u2026.."}, "contact": {"uuid": "d6d9a690-67cc-11ed-8583-fb81ca09943d", "remote_id": "93212da3-ce9f-4233-b3cb-60b8db55dbb8", "email": null, "display_name": "", "account": {"uuid": "d6dafe50-67cc-11ed-bed7-e9fcae8f36b2", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854314}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "13c301c0-79c1-11ed-bc67-591292a70e79", "first_shown_at": "2022-12-12T02:02:48.000000Z", "last_shown_at": "2022-12-12T02:02:48.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T02:02:55.000000Z", "last_data_reception_at": "2022-12-12T02:02:55.000000Z", "completed_at": "2022-12-12T02:04:28.000000Z", "received_at": "2022-12-12T02:04:28.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Depuis que j\u2019ai l\u2019application je re\u00e7ois tr\u00e8s peu de propositions de missions.\nEt sinon elle sont \u00e0 plus de 40km de chez moi.\nOr une connaissance habitant dans la m\u00eame ville que moi re\u00e7oit des missions plus proches"}, "contact": {"uuid": "2e67df50-6722-11ed-9edb-c38e2b9c8058", "remote_id": "122937f7-f72f-44f7-a380-59f1c8c6a684", "email": null, "display_name": "", "account": {"uuid": "2e69c9d0-6722-11ed-bd62-41902d436368", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["missions"], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854315}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6e38c980-79b0-11ed-bd89-2717b5442304", "first_shown_at": "2022-12-12T00:03:38.000000Z", "last_shown_at": "2022-12-12T00:03:38.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-12T00:03:43.000000Z", "last_data_reception_at": "2022-12-12T00:03:43.000000Z", "completed_at": "2022-12-12T00:05:33.000000Z", "received_at": "2022-12-12T00:05:33.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Plus de propositions de mission"}, "contact": {"uuid": "d2a6e400-672b-11ed-9392-1d5ec63a99dd", "remote_id": "77e2335f-707c-4781-9069-0cad41dc2825", "email": null, "display_name": "", "account": {"uuid": "d2a85b80-672b-11ed-8839-7b05dc6af6a5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854315}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d7b04160-79ad-11ed-b52a-514b92993e88", "first_shown_at": "2022-12-11T23:45:07.000000Z", "last_shown_at": "2022-12-11T23:45:07.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T23:45:10.000000Z", "last_data_reception_at": "2022-12-11T23:45:10.000000Z", "completed_at": "2022-12-11T23:45:39.000000Z", "received_at": "2022-12-11T23:45:39.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En proposant plus de mission directeur"}, "contact": {"uuid": "d3ce1cf0-66ba-11ed-94a5-ff69cdfe5f60", "remote_id": "91d3d7e5-5097-43ba-959a-491e47c15a98", "email": null, "display_name": "", "account": {"uuid": "d3cfc370-66ba-11ed-abac-49169c31b17e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854315}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e777fdc0-79ab-11ed-a508-e7b4b507f958", "first_shown_at": "2022-12-11T23:31:14.000000Z", "last_shown_at": "2022-12-11T23:31:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T23:31:21.000000Z", "last_data_reception_at": "2022-12-11T23:31:21.000000Z", "completed_at": "2022-12-11T23:32:13.000000Z", "received_at": "2022-12-11T23:32:13.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Excellent"}, "contact": {"uuid": "07d7b370-6727-11ed-ac71-13ac43865c53", "remote_id": "7bf7905a-bdb2-43c6-8079-68bb343bd636", "email": null, "display_name": "", "account": {"uuid": "07d9b2f0-6727-11ed-aaf4-419324dbf664", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854315}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ff254980-79a7-11ed-9514-1798a2685a92", "first_shown_at": "2022-12-11T23:03:16.000000Z", "last_shown_at": "2022-12-11T23:03:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T23:03:23.000000Z", "last_data_reception_at": "2022-12-11T23:03:23.000000Z", "completed_at": "2022-12-11T23:04:01.000000Z", "received_at": "2022-12-11T23:04:01.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Bien et tr\u00e8s cool"}, "contact": {"uuid": "6221e140-6b61-11ed-8fed-63078e3a57c7", "remote_id": "69c5971f-0ced-444e-99aa-cd5e75ab32eb", "email": null, "display_name": "", "account": {"uuid": "62240630-6b61-11ed-a7c8-fd30bdaec271", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854315}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6e08f290-79a6-11ed-8e62-a59643e6642a", "first_shown_at": "2022-12-11T22:52:03.000000Z", "last_shown_at": "2022-12-11T22:52:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T22:52:11.000000Z", "last_data_reception_at": "2022-12-11T22:52:11.000000Z", "completed_at": "2022-12-11T22:52:30.000000Z", "received_at": "2022-12-11T22:52:30.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "En m'envoyant des missions"}, "contact": {"uuid": "41656cf0-6755-11ed-9e3f-133fda08c67e", "remote_id": "7cdccd3b-6524-4f2a-b3eb-7bd072b60a88", "email": null, "display_name": "", "account": {"uuid": "41676c00-6755-11ed-b720-d771317fece1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854315}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1f2420a0-79a2-11ed-93da-757f45c44edf", "first_shown_at": "2022-12-11T22:21:13.000000Z", "last_shown_at": "2022-12-11T22:21:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T22:21:16.000000Z", "last_data_reception_at": "2022-12-11T22:21:16.000000Z", "completed_at": "2022-12-11T22:21:34.000000Z", "received_at": "2022-12-11T22:21:34.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Plus de missions \u00e0 c\u00f4t\u00e9 du domicile"}, "contact": {"uuid": "365f7a40-673c-11ed-be6f-e9e4844b14b6", "remote_id": "47a327f2-2897-4228-b271-48606b400658", "email": null, "display_name": "", "account": {"uuid": "366171f0-673c-11ed-9acb-65dc419c98af", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["localisation"], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854316}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d5de2610-79a0-11ed-b4c8-b943098c1461", "first_shown_at": "2022-12-11T22:12:00.000000Z", "last_shown_at": "2022-12-11T22:12:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T22:12:11.000000Z", "last_data_reception_at": "2022-12-11T22:12:11.000000Z", "completed_at": "2022-12-11T22:12:49.000000Z", "received_at": "2022-12-11T22:12:49.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "D\u00e9j\u00e0 bien \u00e9labor\u00e9 je r\u00e9fl\u00e9chis"}, "contact": {"uuid": "3b638960-67e0-11ed-b933-25a0e8863ef5", "remote_id": "f50ac182-6014-4a1f-b378-a0ae82e0876c", "email": null, "display_name": "", "account": {"uuid": "3b655aa0-67e0-11ed-8778-53d6b5d1e738", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854316}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8aef2130-799d-11ed-9998-5fe3f97e0b14", "first_shown_at": "2022-12-11T21:48:26.000000Z", "last_shown_at": "2022-12-11T21:48:26.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T21:48:32.000000Z", "last_data_reception_at": "2022-12-11T21:48:32.000000Z", "completed_at": "2022-12-11T21:49:43.000000Z", "received_at": "2022-12-11T21:49:43.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien a dire"}, "contact": {"uuid": "ef3f40a0-670c-11ed-9948-5b8e75f06818", "remote_id": "ff91e493-f4fa-44a7-a10f-53d5dea10933", "email": null, "display_name": "", "account": {"uuid": "ef407660-670c-11ed-9035-2b17c9c2ab35", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854316}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f7debf70-7999-11ed-b1bc-5b99415b677f", "first_shown_at": "2022-12-11T21:22:51.000000Z", "last_shown_at": "2022-12-11T21:22:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T21:22:54.000000Z", "last_data_reception_at": "2022-12-11T21:22:54.000000Z", "completed_at": "2022-12-11T21:23:14.000000Z", "received_at": "2022-12-11T21:23:14.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus d\u2019informations sur l\u2019es mission"}, "contact": {"uuid": "af7a5290-6717-11ed-bdfe-a9e966691a7f", "remote_id": "9590e5ac-2428-45f1-b2aa-8ad19d6ce77a", "email": null, "display_name": "", "account": {"uuid": "af7c3650-6717-11ed-967b-13c39dd412c5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854316}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "bd80e200-7998-11ed-b229-c30c678b634d", "first_shown_at": "2022-12-11T21:14:03.000000Z", "last_shown_at": "2022-12-11T21:14:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T21:14:10.000000Z", "last_data_reception_at": "2022-12-11T21:14:10.000000Z", "completed_at": "2022-12-11T21:14:55.000000Z", "received_at": "2022-12-11T21:14:55.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Beaucoup plus de missions dans le haut de gamme et bien r\u00e9mun\u00e9r\u00e9"}, "contact": {"uuid": "cf104970-68a9-11ed-9a06-310f74ee2e4f", "remote_id": "d2414e5f-f9a3-4c66-9433-3ff86b11b6a4", "email": null, "display_name": "", "account": {"uuid": "cf118770-68a9-11ed-845a-610b1c0cfae8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854316}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b066f440-7994-11ed-8b53-5d069a12d6d8", "first_shown_at": "2022-12-11T20:45:04.000000Z", "last_shown_at": "2022-12-11T20:45:04.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T20:45:10.000000Z", "last_data_reception_at": "2022-12-11T20:45:10.000000Z", "completed_at": "2022-12-11T20:45:38.000000Z", "received_at": "2022-12-11T20:45:38.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "De recevoir beaucoup de mission"}, "contact": {"uuid": "6d64fc70-66fe-11ed-9a55-e75030f7f5dd", "remote_id": "293d6fcf-2a5b-4ed1-b00e-495b8376eb95", "email": null, "display_name": "", "account": {"uuid": "6d66cba0-66fe-11ed-bd6e-31a68bd9c618", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854316}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d7129b60-7992-11ed-8555-5f6200a02eea", "first_shown_at": "2022-12-11T20:31:49.000000Z", "last_shown_at": "2022-12-11T20:31:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T20:34:33.000000Z", "last_data_reception_at": "2022-12-11T20:34:33.000000Z", "completed_at": "2022-12-11T20:36:03.000000Z", "received_at": "2022-12-11T20:36:03.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": "une Facture globale par mois."}, "contact": {"uuid": "0510e0e0-4a6c-11ed-ba9a-ad24c902629e", "remote_id": "b6e9e961-81fa-4dae-9c7a-30093ee5becd", "email": "sana.nouira@api-restauration.com", "display_name": "", "account": {"uuid": "0512e2a0-4a6c-11ed-8309-4d588f177209", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854316}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "68ce2fe0-7992-11ed-a28d-1717f9850175", "first_shown_at": "2022-12-11T20:28:44.000000Z", "last_shown_at": "2022-12-11T20:28:44.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T20:28:47.000000Z", "last_data_reception_at": "2022-12-11T20:28:47.000000Z", "completed_at": "2022-12-11T20:29:00.000000Z", "received_at": "2022-12-11T20:29:00.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Good\u2026\u2026.."}, "contact": {"uuid": "f422bc30-66cb-11ed-a1ab-b7f3c434fe56", "remote_id": "9b53b270-cfce-466d-aa46-e08064f5ffa6", "email": null, "display_name": "", "account": {"uuid": "f4245d40-66cb-11ed-b2f2-53a42c53aa3b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854317}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0de4fa30-798a-11ed-99cd-d9bf6672ab6b", "first_shown_at": "2022-12-11T19:28:56.000000Z", "last_shown_at": "2022-12-11T19:28:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T19:29:01.000000Z", "last_data_reception_at": "2022-12-11T19:29:01.000000Z", "completed_at": "2022-12-11T19:30:16.000000Z", "received_at": "2022-12-11T19:30:16.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Il faut envoyer Les missions un peu plus \u00e0 toutesonde"}, "contact": {"uuid": "2fb6ba60-6709-11ed-8000-adb455526715", "remote_id": "6852bcb7-481d-4e06-886e-4749fac201c7", "email": null, "display_name": "", "account": {"uuid": "2fb8c4c0-6709-11ed-ab40-03bdc5bdc6b8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854317}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "801a2b20-7988-11ed-a44e-0f1a26e7e857", "first_shown_at": "2022-12-11T19:17:49.000000Z", "last_shown_at": "2022-12-11T19:17:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T19:17:51.000000Z", "last_data_reception_at": "2022-12-11T19:17:51.000000Z", "completed_at": "2022-12-11T19:18:16.000000Z", "received_at": "2022-12-11T19:18:16.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Application fiable, professionnelle, r\u00e9active"}, "contact": {"uuid": "26082d10-69e8-11ed-9b87-1fb72e63206a", "remote_id": "618c805c-37a6-4281-8861-65175d9c7c88", "email": null, "display_name": "", "account": {"uuid": "2609abb0-69e8-11ed-b8cd-eb5b760c4172", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854317}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6d75a370-7988-11ed-863e-df9cd86e2532", "first_shown_at": "2022-12-11T19:17:17.000000Z", "last_shown_at": "2022-12-11T19:17:17.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T19:17:26.000000Z", "last_data_reception_at": "2022-12-11T19:17:26.000000Z", "completed_at": "2022-12-11T19:18:18.000000Z", "received_at": "2022-12-11T19:18:18.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "Pay offering so low. Everyone can find better \u00a3 EVENT."}, "contact": {"uuid": "ad516860-6832-11ed-a6d4-49441a8f6cf1", "remote_id": "0ec0149c-55b6-4b0a-9ba1-8546554867f9", "email": null, "display_name": "", "account": {"uuid": "ad535620-6832-11ed-aa7f-61e5799c019f", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["pricing"], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854317}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1fb38f10-7988-11ed-b060-8d6787b384c0", "first_shown_at": "2022-12-11T19:15:07.000000Z", "last_shown_at": "2022-12-11T19:15:07.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T19:15:11.000000Z", "last_data_reception_at": "2022-12-11T19:15:11.000000Z", "completed_at": "2022-12-11T19:16:23.000000Z", "received_at": "2022-12-11T19:16:23.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pour moi c est un compl\u00e9ment de salaire donc pour l instant j en suis tr\u00e8s content"}, "contact": {"uuid": "8c4b9620-66fe-11ed-8d8a-d1074bc64165", "remote_id": "3f34dbc1-2e0c-4b67-8e93-211b0c8dd4ef", "email": null, "display_name": "", "account": {"uuid": "8c4dc180-66fe-11ed-b742-15c85fc45635", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854317}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b3db5390-7986-11ed-a7a3-61d6bd19c1a0", "first_shown_at": "2022-12-11T19:04:56.000000Z", "last_shown_at": "2022-12-11T19:04:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T19:05:04.000000Z", "last_data_reception_at": "2022-12-11T19:05:04.000000Z", "completed_at": "2022-12-11T19:05:52.000000Z", "received_at": "2022-12-11T19:05:52.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En me donnant plus de missions"}, "contact": {"uuid": "3d76f4c0-66c4-11ed-b9b4-a54f70ec7fe9", "remote_id": "263d862a-ddad-423c-a7ea-e533fd43fa64", "email": null, "display_name": "", "account": {"uuid": "3d783470-66c4-11ed-9f6d-7ba9e9486983", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854318}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a5b4a430-7985-11ed-a016-e5d0a1db5d78", "first_shown_at": "2022-12-11T18:57:23.000000Z", "last_shown_at": "2022-12-11T18:57:23.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-11T18:57:41.000000Z", "last_data_reception_at": "2022-12-11T18:57:41.000000Z", "completed_at": "2022-12-11T18:58:12.000000Z", "received_at": "2022-12-11T18:58:12.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je trouve tr\u00e8s bien"}, "contact": {"uuid": "fc5816b0-67ce-11ed-bf5f-9ba851f0fe7c", "remote_id": "42146071-f8b9-406d-a3e9-87f9b7fd7dc4", "email": null, "display_name": "", "account": {"uuid": "fc5a2c70-67ce-11ed-823d-0b3ce1dc798d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854318}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ae2b5110-7983-11ed-a8ef-53c1633b9f82", "first_shown_at": "2022-12-11T18:43:18.000000Z", "last_shown_at": "2022-12-11T18:43:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T18:43:31.000000Z", "last_data_reception_at": "2022-12-11T18:43:31.000000Z", "completed_at": "2022-12-11T18:44:03.000000Z", "received_at": "2022-12-11T18:44:03.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Je sois tr\u00e8s rarement des missions"}, "contact": {"uuid": "7ad058f0-6706-11ed-88e2-c1c4e310c176", "remote_id": "00dea321-3ed2-4e15-9e8a-b178b40f2eb3", "email": null, "display_name": "", "account": {"uuid": "7ad2ab70-6706-11ed-8266-dd597d59b401", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["missions"], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854318}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "443de900-7983-11ed-ad01-4faf4bf1c68a", "first_shown_at": "2022-12-11T18:40:21.000000Z", "last_shown_at": "2022-12-11T18:40:21.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T18:40:26.000000Z", "last_data_reception_at": "2022-12-11T18:40:26.000000Z", "completed_at": "2022-12-11T18:43:35.000000Z", "received_at": "2022-12-11T18:43:35.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "More details about the job position, reviews on team environment, compulsory satisfaction feedback from the business"}, "contact": {"uuid": "e2df7fb0-66d7-11ed-9b5b-09da041efa57", "remote_id": "e584e23d-f6e9-4d3b-b46b-09d0033d5e86", "email": null, "display_name": "", "account": {"uuid": "e2e17110-66d7-11ed-932a-cb8d9363f232", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["missions"], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854318}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ebb185d0-7981-11ed-adac-4d912a63ea5c", "first_shown_at": "2022-12-11T18:30:43.000000Z", "last_shown_at": "2022-12-11T18:30:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T18:30:47.000000Z", "last_data_reception_at": "2022-12-11T18:30:47.000000Z", "completed_at": "2022-12-11T18:31:22.000000Z", "received_at": "2022-12-11T18:31:22.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Plus des missions dans des diff\u00e9rentes structures"}, "contact": {"uuid": "2294ecb0-6735-11ed-b674-bb2ee56f14e7", "remote_id": "3c9fff53-9c74-4e2f-912d-cd2c4b24f916", "email": null, "display_name": "", "account": {"uuid": "229733a0-6735-11ed-aab8-6157e0beccdd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854318}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f6ae39f0-7980-11ed-8760-c1e49426add9", "first_shown_at": "2022-12-11T18:23:51.000000Z", "last_shown_at": "2022-12-11T18:23:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T18:24:42.000000Z", "last_data_reception_at": "2022-12-11T18:24:42.000000Z", "completed_at": "2022-12-11T18:27:36.000000Z", "received_at": "2022-12-11T18:27:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Par plus de missions"}, "contact": {"uuid": "318023c0-69e7-11ed-9064-578e42ef9019", "remote_id": "45cd2238-7b2e-48df-9698-1a72a7f61c13", "email": null, "display_name": "", "account": {"uuid": "3181fc20-69e7-11ed-ab36-5b75e2a64b31", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854318}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "89e0f510-797f-11ed-a371-218f24ca02db", "first_shown_at": "2022-12-11T18:13:39.000000Z", "last_shown_at": "2022-12-11T18:14:07.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-11T18:13:43.000000Z", "last_data_reception_at": "2022-12-11T18:14:12.000000Z", "completed_at": "2022-12-11T18:14:00.000000Z", "received_at": "2022-12-11T18:14:00.000000Z", "dismissed_at": "2022-12-11T18:14:19.000000Z", "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "App is slow"}, "contact": {"uuid": "c6d325c0-66b9-11ed-930b-7356c2ca5987", "remote_id": "4cec96a9-6af8-405e-93ea-05548388d279", "email": null, "display_name": "", "account": {"uuid": "c6d530c0-66b9-11ed-a9df-f9afcef70b37", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854319}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4782ebd0-797e-11ed-94da-cfec86fc63e8", "first_shown_at": "2022-12-11T18:04:39.000000Z", "last_shown_at": "2022-12-11T18:04:39.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T18:04:49.000000Z", "last_data_reception_at": "2022-12-11T18:04:49.000000Z", "completed_at": "2022-12-11T18:06:07.000000Z", "received_at": "2022-12-11T18:06:07.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Sur la suspension plus \u00e0 l\u2019\u00e9coute des brigaders que des clients"}, "contact": {"uuid": "d1c7ca30-6756-11ed-8eee-b7eaeee5bebc", "remote_id": "9fab513e-1ad6-4e25-a78c-b404d66e0c6b", "email": null, "display_name": "", "account": {"uuid": "d1ca9d20-6756-11ed-8f89-6d59f3127cf2", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["suspension"], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854319}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "59109d20-797d-11ed-8e5f-fd4c4ca39118", "first_shown_at": "2022-12-11T17:57:59.000000Z", "last_shown_at": "2022-12-11T17:57:59.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T17:58:03.000000Z", "last_data_reception_at": "2022-12-11T17:58:03.000000Z", "completed_at": "2022-12-11T17:59:29.000000Z", "received_at": "2022-12-11T17:59:29.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "You need to listen to your work force. Work together with them to sort out any issues may raise during the day. They need to feel as part of the team working towards a better future"}, "contact": {"uuid": "70f544f0-66bc-11ed-90c6-d925f81b57ec", "remote_id": "5201678f-b51c-4df1-938b-bcac3dac5370", "email": null, "display_name": "", "account": {"uuid": "70f74b50-66bc-11ed-b165-fb42fdf04f70", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854319}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "df239b40-797c-11ed-830f-8970456984ff", "first_shown_at": "2022-12-11T17:54:34.000000Z", "last_shown_at": "2022-12-11T17:54:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T17:54:40.000000Z", "last_data_reception_at": "2022-12-11T17:55:14.000000Z", "completed_at": "2022-12-11T17:55:57.000000Z", "received_at": "2022-12-11T17:55:57.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Plus de mission"}, "contact": {"uuid": "44a58fa0-6763-11ed-b33f-c59e03816726", "remote_id": "cbf784cb-2eff-43c4-988b-dbe411d5a70c", "email": null, "display_name": "", "account": {"uuid": "44a79790-6763-11ed-8e0b-211afc4f8ff4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854319}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "95985e70-797c-11ed-8ec4-31009a9e1ab8", "first_shown_at": "2022-12-11T17:52:31.000000Z", "last_shown_at": "2022-12-11T17:52:31.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T17:52:37.000000Z", "last_data_reception_at": "2022-12-11T17:52:37.000000Z", "completed_at": "2022-12-11T17:53:09.000000Z", "received_at": "2022-12-11T17:53:09.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Possibility to cancel without suspending"}, "contact": {"uuid": "beeaf0c0-6b00-11ed-9617-7ba9d6482887", "remote_id": "2dd70d54-620b-4a25-a371-f15b270a5b46", "email": null, "display_name": "", "account": {"uuid": "beeccc90-6b00-11ed-b841-695b5067581f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854319}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1162e850-797c-11ed-9b6f-357e172e5da5", "first_shown_at": "2022-12-11T17:48:49.000000Z", "last_shown_at": "2022-12-11T17:48:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T17:49:03.000000Z", "last_data_reception_at": "2022-12-11T17:49:03.000000Z", "completed_at": "2022-12-11T17:51:09.000000Z", "received_at": "2022-12-11T17:51:09.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s bon je voulais bien continuer travailler avec vous"}, "contact": {"uuid": "b307d190-66e0-11ed-ae78-7b734c2da15c", "remote_id": "c7702c7d-ee73-478f-b091-d0f430c5e4f9", "email": null, "display_name": "", "account": {"uuid": "b309b450-66e0-11ed-a3ff-93809bb88c8b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854319}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b8621460-7977-11ed-ad2d-2919713a03bc", "first_shown_at": "2022-12-11T17:17:41.000000Z", "last_shown_at": "2022-12-11T17:17:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T17:17:45.000000Z", "last_data_reception_at": "2022-12-11T17:17:45.000000Z", "completed_at": "2022-12-11T17:18:14.000000Z", "received_at": "2022-12-11T17:18:14.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je ne sais pas."}, "contact": {"uuid": "6ea04140-6702-11ed-aa0c-6dee0dcea377", "remote_id": "5156695f-7073-4ba7-bbd4-6c5d17fe2607", "email": null, "display_name": "", "account": {"uuid": "6ea1a8e0-6702-11ed-b3fc-5507d3ce3019", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854320}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3a06fad0-7976-11ed-8220-134c158c7638", "first_shown_at": "2022-12-11T17:07:00.000000Z", "last_shown_at": "2022-12-11T17:07:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T17:07:04.000000Z", "last_data_reception_at": "2022-12-11T17:07:04.000000Z", "completed_at": "2022-12-11T17:07:42.000000Z", "received_at": "2022-12-11T17:07:42.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Un peu plus de missions"}, "contact": {"uuid": "546f7000-677c-11ed-b852-9342b09fb8ca", "remote_id": "4af5a80d-ba12-4390-9d2e-c28131f2f2d3", "email": null, "display_name": "", "account": {"uuid": "54716310-677c-11ed-8700-6db106c3eeec", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854320}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2b8914c0-7973-11ed-b07a-4907d8b31b43", "first_shown_at": "2022-12-11T16:45:07.000000Z", "last_shown_at": "2022-12-11T16:45:07.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T16:45:13.000000Z", "last_data_reception_at": "2022-12-11T16:45:13.000000Z", "completed_at": "2022-12-11T16:47:16.000000Z", "received_at": "2022-12-11T16:47:16.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien de sp\u00e9cial vraiment vous \u00eates formidable comme \u00e7a moi je vous trouve tr\u00e8s bien et vous facilite la tache pour nous et pour \u00e7a je vous remercie cordialement et vous souhaite une tr\u00e8s bonne continuation samate masire"}, "contact": {"uuid": "d2e28d00-670e-11ed-b8ba-cf99ac67a5a1", "remote_id": "8ff1ee1a-06e0-429f-8e9c-57cb1fe2ae0c", "email": null, "display_name": "", "account": {"uuid": "d2e42b00-670e-11ed-8edc-29c34f351928", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854320}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "19b4a550-7970-11ed-8ef8-5984ac01b31e", "first_shown_at": "2022-12-11T16:23:09.000000Z", "last_shown_at": "2022-12-11T16:23:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T16:23:17.000000Z", "last_data_reception_at": "2022-12-11T16:23:17.000000Z", "completed_at": "2022-12-11T16:24:08.000000Z", "received_at": "2022-12-11T16:24:08.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Avec plus de missions elles sont rares en ce moment"}, "contact": {"uuid": "d771eea0-6777-11ed-baf0-6d994712e88c", "remote_id": "58029862-c246-4339-b248-6b304671bb9e", "email": null, "display_name": "", "account": {"uuid": "d773f650-6777-11ed-ba33-3d8d0fb660b5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854320}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c65fa720-7968-11ed-b89c-b7f2d057a4f1", "first_shown_at": "2022-12-11T15:30:43.000000Z", "last_shown_at": "2022-12-11T15:43:35.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-11T15:43:41.000000Z", "last_data_reception_at": "2022-12-11T15:43:41.000000Z", "completed_at": "2022-12-11T15:44:04.000000Z", "received_at": "2022-12-11T15:44:04.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Better rates"}, "contact": {"uuid": "4ac36cc0-6749-11ed-b181-db3d3af9982f", "remote_id": "78d22407-a510-4e35-9c8b-efbe25f43c54", "email": null, "display_name": "", "account": {"uuid": "4ac5a6a0-6749-11ed-a3a2-f9f2585d5c5f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854320}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "076553e0-7969-11ed-98fa-85f66b5b8212", "first_shown_at": "2022-12-11T15:32:32.000000Z", "last_shown_at": "2022-12-11T15:32:32.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T15:32:42.000000Z", "last_data_reception_at": "2022-12-11T15:32:42.000000Z", "completed_at": "2022-12-11T15:32:57.000000Z", "received_at": "2022-12-11T15:32:57.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Plus de missions"}, "contact": {"uuid": "6afa94f0-6a54-11ed-9448-ad5f1e6316bd", "remote_id": "bd903ede-10af-42f5-8e5f-54021d4605dd", "email": null, "display_name": "", "account": {"uuid": "6afcda80-6a54-11ed-bb29-b927e8d7e48d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854321}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "51a579c0-7968-11ed-bb78-a9abb1fb42ae", "first_shown_at": "2022-12-11T15:27:27.000000Z", "last_shown_at": "2022-12-11T15:27:27.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T15:27:32.000000Z", "last_data_reception_at": "2022-12-11T15:27:32.000000Z", "completed_at": "2022-12-11T15:27:43.000000Z", "received_at": "2022-12-11T15:27:43.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Plus de missions"}, "contact": {"uuid": "3c6b6d20-670e-11ed-9892-b52faab8eee8", "remote_id": "265841df-826e-4164-acf6-f183ca9a62d8", "email": null, "display_name": "", "account": {"uuid": "3c6dd6c0-670e-11ed-bc2e-9dc023192fce", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854321}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "39c585c0-7967-11ed-b5d0-c36b3dfbda63", "first_shown_at": "2022-12-11T15:19:37.000000Z", "last_shown_at": "2022-12-11T15:19:37.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T15:19:43.000000Z", "last_data_reception_at": "2022-12-11T15:19:48.000000Z", "completed_at": "2022-12-11T15:20:36.000000Z", "received_at": "2022-12-11T15:20:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Deviter de nous sanctionn\u00e9"}, "contact": {"uuid": "e239d010-6737-11ed-bc3e-59315d99e1d2", "remote_id": "d010422d-5fe2-4309-a1f8-6a2ec1eaabbf", "email": null, "display_name": "", "account": {"uuid": "e23be6b0-6737-11ed-8ab4-c1b210708fd9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854321}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7c9efac0-7963-11ed-b888-dd37caf4a5d3", "first_shown_at": "2022-12-11T14:52:51.000000Z", "last_shown_at": "2022-12-11T14:52:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T14:52:55.000000Z", "last_data_reception_at": "2022-12-11T14:52:55.000000Z", "completed_at": "2022-12-11T14:53:53.000000Z", "received_at": "2022-12-11T14:53:53.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "Service m\u00e9diocre, les patrons peuvent mettent des annoncent fausses type pour Chef de Rang mais te faire faire du run et si tu refuses Brigad suspend ton compte.\nApplication pour les patrons pas les extra, attentions."}, "contact": {"uuid": "b1261e60-6bce-11ed-a481-bbd62e9bc709", "remote_id": "76c31a40-0f49-4231-94b1-6683f68092e7", "email": null, "display_name": "", "account": {"uuid": "b128aa10-6bce-11ed-b6c2-399fc0a47cb4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854321}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0c671c00-7963-11ed-a3bc-71e76e502bf2", "first_shown_at": "2022-12-11T14:49:43.000000Z", "last_shown_at": "2022-12-11T14:49:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T14:49:58.000000Z", "last_data_reception_at": "2022-12-11T14:49:58.000000Z", "completed_at": "2022-12-11T14:50:48.000000Z", "received_at": "2022-12-11T14:50:48.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Augmenter les propositions de mission"}, "contact": {"uuid": "5b2abfc0-6796-11ed-b505-41859ff7fc40", "remote_id": "cdb1efbd-3b1b-4228-91bc-3eb8716eb6d0", "email": null, "display_name": "", "account": {"uuid": "5b2c5320-6796-11ed-a36a-5b55fee5792d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854322}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "98a83d10-7962-11ed-a347-59e0196d330a", "first_shown_at": "2022-12-11T14:46:29.000000Z", "last_shown_at": "2022-12-11T14:46:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T14:46:34.000000Z", "last_data_reception_at": "2022-12-11T14:46:34.000000Z", "completed_at": "2022-12-11T14:47:03.000000Z", "received_at": "2022-12-11T14:47:03.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Satisfait"}, "contact": {"uuid": "2b7d49e0-679c-11ed-817d-351b69bf1510", "remote_id": "56b1bdbf-1611-48bf-994d-0ac5020e5ee1", "email": null, "display_name": "", "account": {"uuid": "2b7f0020-679c-11ed-b549-b9824116628d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854322}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f59fe8d0-795b-11ed-bcec-a1fd5cc97486", "first_shown_at": "2022-12-11T13:58:58.000000Z", "last_shown_at": "2022-12-11T13:58:58.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T13:59:03.000000Z", "last_data_reception_at": "2022-12-11T13:59:03.000000Z", "completed_at": "2022-12-11T14:00:31.000000Z", "received_at": "2022-12-11T14:00:31.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Proposer des formations promotionelles"}, "contact": {"uuid": "93847df0-670b-11ed-825b-cbebc3172da3", "remote_id": "9ef652e4-2860-4707-a6d7-17c0bacdf178", "email": null, "display_name": "", "account": {"uuid": "93864780-670b-11ed-8346-874dc2113dce", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854322}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7965c180-7959-11ed-806e-59c70dbeb01e", "first_shown_at": "2022-12-11T13:41:11.000000Z", "last_shown_at": "2022-12-11T13:41:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T13:41:26.000000Z", "last_data_reception_at": "2022-12-11T13:41:26.000000Z", "completed_at": "2022-12-11T13:42:45.000000Z", "received_at": "2022-12-11T13:42:45.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien \u00e0 dire"}, "contact": {"uuid": "3d923d90-6715-11ed-9635-39a852733fed", "remote_id": "8cf95e57-7704-4710-ae7e-a31a5b205818", "email": null, "display_name": "", "account": {"uuid": "3d974c50-6715-11ed-b3a8-077846fd9c52", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854322}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0d9d3e90-7959-11ed-856d-0500496248f7", "first_shown_at": "2022-12-11T13:38:10.000000Z", "last_shown_at": "2022-12-11T13:38:10.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T13:38:18.000000Z", "last_data_reception_at": "2022-12-11T13:38:18.000000Z", "completed_at": "2022-12-11T13:39:19.000000Z", "received_at": "2022-12-11T13:39:19.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "2", "how_could_we_improve_your_experience_with_brigad": "Je ne re\u00e7ois pas beaucoup de missions, j\u2019en ai re\u00e7u une seule et c\u2019\u00e9tait hyper loin. Merci de me donner d\u00e8s mission s\u2019il vous pla\u00eet"}, "contact": {"uuid": "c8ba6bd0-6752-11ed-987b-75e5a15447ca", "remote_id": "b534541b-ef99-46e2-8521-c1bfd76b6dee", "email": null, "display_name": "", "account": {"uuid": "c8bbd440-6752-11ed-897b-d332759ff921", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854322}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "dbef30a0-7958-11ed-9bec-b9d2eb9f4b5c", "first_shown_at": "2022-12-11T13:36:47.000000Z", "last_shown_at": "2022-12-11T13:36:47.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T13:36:52.000000Z", "last_data_reception_at": "2022-12-11T13:36:52.000000Z", "completed_at": "2022-12-11T13:38:09.000000Z", "received_at": "2022-12-11T13:38:09.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Unfortunately i saw some chefs from brigad wich they dont deserve to work in a kitchen so a better selectiom will be benificial for the busines and for you pride and valour"}, "contact": {"uuid": "8b89ac80-66c4-11ed-89a8-dd90d20bb42e", "remote_id": "1f05bc52-d27f-472f-814d-efa3052cdbef", "email": null, "display_name": "", "account": {"uuid": "8b8b50b0-66c4-11ed-95fa-3b2f39f72062", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854322}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "35a1af10-7955-11ed-89cf-77df5aa5fd1a", "first_shown_at": "2022-12-11T13:10:39.000000Z", "last_shown_at": "2022-12-11T13:10:39.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T13:10:46.000000Z", "last_data_reception_at": "2022-12-11T13:10:46.000000Z", "completed_at": "2022-12-11T13:12:46.000000Z", "received_at": "2022-12-11T13:12:46.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Continuer \u00e0 me donner des missions pr\u00e8s de chez moi mais peut-\u00eatre un peu plus de diversit\u00e9,Merci beaucoup et surtout me fid\u00e9liser \ud83e\udd70"}, "contact": {"uuid": "1b0786a0-673f-11ed-af9e-79831ed5cadb", "remote_id": "c02ff36a-8f61-4a5a-b7aa-fe2f192cadf2", "email": null, "display_name": "", "account": {"uuid": "1b092390-673f-11ed-8c7d-2fab635200dc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854323}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c7917fb0-7953-11ed-b412-0bc22dc976b3", "first_shown_at": "2022-12-11T13:00:25.000000Z", "last_shown_at": "2022-12-11T13:00:25.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T13:00:29.000000Z", "last_data_reception_at": "2022-12-11T13:00:38.000000Z", "completed_at": "2022-12-11T13:01:22.000000Z", "received_at": "2022-12-11T13:01:22.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Plus de d'\u00e9change surtout apr\u00e8s les missions"}, "contact": {"uuid": "57697400-66ba-11ed-868b-89dfd8411612", "remote_id": "47958bdc-4d69-41d2-8cbd-420b2df1cc06", "email": null, "display_name": "", "account": {"uuid": "576b5d30-66ba-11ed-932c-eb4149272713", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854323}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8029ada0-7953-11ed-bfbe-37f2c7c015eb", "first_shown_at": "2022-12-11T12:58:25.000000Z", "last_shown_at": "2022-12-11T12:58:25.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T12:58:29.000000Z", "last_data_reception_at": "2022-12-11T12:58:29.000000Z", "completed_at": "2022-12-11T12:58:54.000000Z", "received_at": "2022-12-11T12:58:54.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Yes, increase the wages for hour."}, "contact": {"uuid": "d61f0d10-68b7-11ed-b3e2-ff2601c72e5a", "remote_id": "d4cadaeb-8ac5-4d72-b7d5-d7fa40edf316", "email": null, "display_name": "", "account": {"uuid": "d6205ed0-68b7-11ed-b751-514399d33fe5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854323}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7b56c3d0-7953-11ed-aed6-5f56796dd0a8", "first_shown_at": "2022-12-11T12:58:17.000000Z", "last_shown_at": "2022-12-11T12:58:17.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T12:58:20.000000Z", "last_data_reception_at": "2022-12-11T12:58:20.000000Z", "completed_at": "2022-12-11T12:59:20.000000Z", "received_at": "2022-12-11T12:59:20.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Baisser la commission a 20%"}, "contact": {"uuid": "44c66d20-66bd-11ed-bd9a-6dbeedc2bc4b", "remote_id": "386ad76a-1520-47a5-b337-89941a998351", "email": null, "display_name": "", "account": {"uuid": "44cb0080-66bd-11ed-abdf-d12b5bd53e04", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854323}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b0348f60-7951-11ed-9b61-53f3312ccfcf", "first_shown_at": "2022-12-11T12:45:27.000000Z", "last_shown_at": "2022-12-11T12:45:27.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T12:45:37.000000Z", "last_data_reception_at": "2022-12-11T12:45:37.000000Z", "completed_at": "2022-12-11T12:46:59.000000Z", "received_at": "2022-12-11T12:46:59.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je veux bien avancer avec brigad"}, "contact": {"uuid": "04419e30-67f7-11ed-9fc7-9112bddab503", "remote_id": "35800336-a965-46fe-82ae-c90823ff5ce4", "email": null, "display_name": "", "account": {"uuid": "04439ee0-67f7-11ed-9344-bf068ee6633a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854323}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f6b74060-7950-11ed-9ab6-d1da6b4c40e7", "first_shown_at": "2022-12-11T12:40:16.000000Z", "last_shown_at": "2022-12-11T12:40:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T12:40:21.000000Z", "last_data_reception_at": "2022-12-11T12:40:21.000000Z", "completed_at": "2022-12-11T12:41:20.000000Z", "received_at": "2022-12-11T12:41:20.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Option choix de g\u00e9olocalisation des missions"}, "contact": {"uuid": "d0828960-66e0-11ed-bcaa-63b8880c5907", "remote_id": "c96fcfbe-edba-4357-85ea-e4050380a5c0", "email": null, "display_name": "", "account": {"uuid": "d0845ca0-66e0-11ed-ac16-d3ce039ed779", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854324}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "76df9c70-794d-11ed-8195-d1274005f69f", "first_shown_at": "2022-12-11T12:15:13.000000Z", "last_shown_at": "2022-12-11T12:15:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T12:15:34.000000Z", "last_data_reception_at": "2022-12-11T12:16:07.000000Z", "completed_at": "2022-12-11T12:17:08.000000Z", "received_at": "2022-12-11T12:17:08.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plongeur"}, "contact": {"uuid": "6f6aec00-6712-11ed-8d90-f160d8bc318a", "remote_id": "27ae5844-650d-45fd-a8bb-8304ab2aa1ed", "email": null, "display_name": "", "account": {"uuid": "6f6c7830-6712-11ed-91ce-7b65b85fb390", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854324}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1d72eca0-794d-11ed-b8ff-174006eb911e", "first_shown_at": "2022-12-11T12:12:43.000000Z", "last_shown_at": "2022-12-11T12:12:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T12:13:04.000000Z", "last_data_reception_at": "2022-12-11T12:13:04.000000Z", "completed_at": "2022-12-11T12:16:08.000000Z", "received_at": "2022-12-11T12:16:08.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus mission"}, "contact": {"uuid": "7e8c68e0-676b-11ed-b084-7569092399df", "remote_id": "48db1db5-360d-4a03-8903-28cd65261787", "email": null, "display_name": "", "account": {"uuid": "7e8db4e0-676b-11ed-8d01-d33c426efc01", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854324}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a0447f60-794c-11ed-8eda-21f66fd540cf", "first_shown_at": "2022-12-11T12:09:13.000000Z", "last_shown_at": "2022-12-11T12:10:08.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-11T12:09:18.000000Z", "last_data_reception_at": "2022-12-11T12:09:18.000000Z", "completed_at": "2022-12-11T12:09:55.000000Z", "received_at": "2022-12-11T12:09:55.000000Z", "dismissed_at": "2022-12-11T12:10:10.000000Z", "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "More information on jobs available or opinions to partially accept the job"}, "contact": {"uuid": "8ed80110-680b-11ed-8ce1-210cf74dad1a", "remote_id": "019bd9d2-a304-432c-a0aa-454a746a100e", "email": null, "display_name": "", "account": {"uuid": "8ed94360-680b-11ed-8152-15767b96c131", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854324}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5f31d1c0-794a-11ed-8f2b-7dc38aa0fdde", "first_shown_at": "2022-12-11T11:53:05.000000Z", "last_shown_at": "2022-12-11T11:53:06.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-11T11:53:15.000000Z", "last_data_reception_at": "2022-12-11T11:53:15.000000Z", "completed_at": "2022-12-11T11:55:01.000000Z", "received_at": "2022-12-11T11:55:01.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "2", "how_could_we_improve_your_experience_with_brigad": "mon compte a \u00e9t\u00e9 suspendu, parce que j\u2019ai eu un probl\u00e8me de voiture que je n\u2019ai pas pu me rendre au travail. Je trouve \u00e7a inacceptable de la part du brigade. Sachant que mon outil de travail si ma voiture"}, "contact": {"uuid": "147b94a0-670f-11ed-a1ca-9f9fb7b51268", "remote_id": "670882e6-e315-4430-a72c-e911407a1160", "email": null, "display_name": "", "account": {"uuid": "147d8990-670f-11ed-b155-83d2e479ea5d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854324}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b653a0e0-7949-11ed-b119-6f18c8b05288", "first_shown_at": "2022-12-11T11:48:21.000000Z", "last_shown_at": "2022-12-11T11:48:21.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T11:48:26.000000Z", "last_data_reception_at": "2022-12-11T11:48:26.000000Z", "completed_at": "2022-12-11T11:48:50.000000Z", "received_at": "2022-12-11T11:48:50.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rapide et efficace, ils font confiance aux artisans"}, "contact": {"uuid": "3ee9b070-6bd3-11ed-bf8c-f9875aac8c56", "remote_id": "8cda3570-c1f3-41c8-ab27-faa0757c0700", "email": null, "display_name": "", "account": {"uuid": "3eeb0400-6bd3-11ed-85a3-815abe796b14", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854324}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "664f9f70-7947-11ed-976a-61343501188e", "first_shown_at": "2022-12-11T11:31:48.000000Z", "last_shown_at": "2022-12-11T11:31:48.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T11:31:52.000000Z", "last_data_reception_at": "2022-12-11T11:31:52.000000Z", "completed_at": "2022-12-11T11:32:10.000000Z", "received_at": "2022-12-11T11:32:10.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Non c est d\u00e9j\u00e0 au top"}, "contact": {"uuid": "7a0506b0-6994-11ed-9d30-a1477e53a574", "remote_id": "21845bd7-1335-4a4e-9195-bba27e60d062", "email": null, "display_name": "", "account": {"uuid": "7a067dd0-6994-11ed-a1e7-e976a82e7cd2", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854325}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d72f9420-7944-11ed-9ff5-6def7c63ff45", "first_shown_at": "2022-12-11T11:13:29.000000Z", "last_shown_at": "2022-12-11T11:13:48.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-11T11:13:37.000000Z", "last_data_reception_at": "2022-12-11T11:22:12.000000Z", "completed_at": "2022-12-11T11:22:39.000000Z", "received_at": "2022-12-11T11:22:39.000000Z", "dismissed_at": "2022-12-11T11:13:45.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Continuer"}, "contact": {"uuid": "cddcf750-697c-11ed-8203-2b2eb86b2d16", "remote_id": "b51d1457-b60c-4084-be0a-238a3e3aa243", "email": null, "display_name": "", "account": {"uuid": "cddf4570-697c-11ed-b729-678b08bc87bd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854325}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "65cbb8e0-7945-11ed-a3a1-25428ef056e5", "first_shown_at": "2022-12-11T11:17:28.000000Z", "last_shown_at": "2022-12-11T11:17:28.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T11:17:31.000000Z", "last_data_reception_at": "2022-12-11T11:17:31.000000Z", "completed_at": "2022-12-11T11:18:20.000000Z", "received_at": "2022-12-11T11:18:20.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Mettre en place un calendrier de disponibilit\u00e9 sur 1 mois"}, "contact": {"uuid": "a6fdbc20-66fc-11ed-b4a5-1927dcf16c19", "remote_id": "dfb6c640-2b20-4e25-adbf-3be6380fcc26", "email": null, "display_name": "", "account": {"uuid": "a6ff4620-66fc-11ed-ace4-8ddc861b19f0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854325}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0a674bb0-7945-11ed-a29b-55c30ef2328c", "first_shown_at": "2022-12-11T11:14:55.000000Z", "last_shown_at": "2022-12-11T11:14:55.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T11:14:58.000000Z", "last_data_reception_at": "2022-12-11T11:14:58.000000Z", "completed_at": "2022-12-11T11:15:20.000000Z", "received_at": "2022-12-11T11:15:20.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "More shifts"}, "contact": {"uuid": "a36324e0-68e9-11ed-aafa-7b76bcbc7d86", "remote_id": "8399027c-46a8-476e-9cce-e6acb06f8a9e", "email": null, "display_name": "", "account": {"uuid": "a364b4e0-68e9-11ed-8359-d5b52d5f2ff3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854325}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ed7e0390-7944-11ed-b41b-3d2d4d42e440", "first_shown_at": "2022-12-11T11:14:06.000000Z", "last_shown_at": "2022-12-11T11:14:06.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T11:14:14.000000Z", "last_data_reception_at": "2022-12-11T11:14:14.000000Z", "completed_at": "2022-12-11T11:15:55.000000Z", "received_at": "2022-12-11T11:15:55.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Payment methods could be updated for a speedier turn around"}, "contact": {"uuid": "b2a0ec00-671d-11ed-a760-2b5741158d30", "remote_id": "aca2e5b3-8f8e-4e54-8f64-973445a62e6d", "email": null, "display_name": "", "account": {"uuid": "b2a2df00-671d-11ed-954d-9d54285a6011", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854326}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "78282a50-7943-11ed-aad0-15ef5287ab8e", "first_shown_at": "2022-12-11T11:03:40.000000Z", "last_shown_at": "2022-12-11T11:03:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T11:03:44.000000Z", "last_data_reception_at": "2022-12-11T11:03:44.000000Z", "completed_at": "2022-12-11T11:03:55.000000Z", "received_at": "2022-12-11T11:03:55.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Plus de mission"}, "contact": {"uuid": "4f5589f0-6799-11ed-a7f4-458c3ee986fd", "remote_id": "e7eece22-39af-4614-8d5c-b1ff18ecd100", "email": null, "display_name": "", "account": {"uuid": "4f577a30-6799-11ed-b868-51965b406df2", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854326}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a15c5ae0-7941-11ed-8d83-7dfbb419269d", "first_shown_at": "2022-12-11T10:50:30.000000Z", "last_shown_at": "2022-12-11T10:50:30.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T10:50:35.000000Z", "last_data_reception_at": "2022-12-11T10:50:35.000000Z", "completed_at": "2022-12-11T10:50:47.000000Z", "received_at": "2022-12-11T10:50:47.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Not sure"}, "contact": {"uuid": "4db55f30-66d5-11ed-b823-a5bd4460b77b", "remote_id": "8e71c4ca-a8cb-4770-9b32-abd1a931d67b", "email": null, "display_name": "", "account": {"uuid": "4db72160-66d5-11ed-8c4e-8d301c639977", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854326}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6b9f3ae0-7941-11ed-a747-33953caa893a", "first_shown_at": "2022-12-11T10:49:00.000000Z", "last_shown_at": "2022-12-11T10:49:50.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-11T10:49:19.000000Z", "last_data_reception_at": "2022-12-11T10:49:53.000000Z", "completed_at": "2022-12-11T10:50:05.000000Z", "received_at": "2022-12-11T10:50:05.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Difficile de trouver des missions"}, "contact": {"uuid": "51712100-66cf-11ed-b590-cbe3e41273eb", "remote_id": "fd377b24-22a6-41ef-acf7-dfb921717753", "email": null, "display_name": "", "account": {"uuid": "5172b320-66cf-11ed-9e47-e33dedae3d4d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854326}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c5ece040-793f-11ed-a21a-0fed3124d411", "first_shown_at": "2022-12-11T10:37:12.000000Z", "last_shown_at": "2022-12-11T10:37:12.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T10:37:15.000000Z", "last_data_reception_at": "2022-12-11T10:37:15.000000Z", "completed_at": "2022-12-11T10:37:59.000000Z", "received_at": "2022-12-11T10:37:59.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s pro compar\u00e9 aux autres applications de placement. Cependant je pense qu il devrait avoir un petit peu plus de suivi au niveau des diff\u00e9rents placements."}, "contact": {"uuid": "3e5c4650-674b-11ed-8378-63b502897744", "remote_id": "8668c97e-6910-484e-a86f-cc005c8b030d", "email": null, "display_name": "", "account": {"uuid": "3e5e2f80-674b-11ed-9841-39c08ac12cef", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854326}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0ad86520-793f-11ed-8e4a-cdd7c22e0b9a", "first_shown_at": "2022-12-11T10:31:59.000000Z", "last_shown_at": "2022-12-11T10:31:59.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T10:32:08.000000Z", "last_data_reception_at": "2022-12-11T10:32:08.000000Z", "completed_at": "2022-12-11T10:32:38.000000Z", "received_at": "2022-12-11T10:32:38.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Ilya rien \u00e0 am\u00e9liorer"}, "contact": {"uuid": "c614ff60-671f-11ed-92bf-89342c009401", "remote_id": "1d2ebacc-10e6-4af4-b219-174993b54292", "email": null, "display_name": "", "account": {"uuid": "c616c690-671f-11ed-953c-8d24ae4ab4d4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854326}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "08e7d730-793f-11ed-bc22-854a552ee3fc", "first_shown_at": "2022-12-11T10:31:55.000000Z", "last_shown_at": "2022-12-11T10:31:55.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T10:32:00.000000Z", "last_data_reception_at": "2022-12-11T10:32:00.000000Z", "completed_at": "2022-12-11T10:32:31.000000Z", "received_at": "2022-12-11T10:32:31.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Never had problems and the shifts are mostly good"}, "contact": {"uuid": "67bf1580-66bc-11ed-95c5-c571e668f75c", "remote_id": "5081e17c-09a3-4b69-8445-45355563763c", "email": null, "display_name": "", "account": {"uuid": "67c11000-66bc-11ed-a854-1538bb88388b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854327}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "36124dc0-793e-11ed-a0d7-95855f7cfdaa", "first_shown_at": "2022-12-11T10:26:02.000000Z", "last_shown_at": "2022-12-11T10:26:02.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T10:26:09.000000Z", "last_data_reception_at": "2022-12-11T10:26:09.000000Z", "completed_at": "2022-12-11T10:27:16.000000Z", "received_at": "2022-12-11T10:27:16.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "La notation client est trop handicapante \nUne mauvaise note peut tout ruiner"}, "contact": {"uuid": "24fc3190-66c8-11ed-82eb-8f4124112b51", "remote_id": "d8415d8d-e9d6-4953-8fe5-49ec1119b7b9", "email": null, "display_name": "", "account": {"uuid": "24fe3e70-66c8-11ed-905a-97896e06868a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854327}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e2952680-793d-11ed-a527-eb9d2e67f71d", "first_shown_at": "2022-12-11T10:23:41.000000Z", "last_shown_at": "2022-12-11T10:23:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T10:23:45.000000Z", "last_data_reception_at": "2022-12-11T10:23:45.000000Z", "completed_at": "2022-12-11T10:24:06.000000Z", "received_at": "2022-12-11T10:24:06.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de propositions partout"}, "contact": {"uuid": "21dda040-6753-11ed-803d-c5340016534e", "remote_id": "513c6fbb-2f4b-46fa-ac93-ae17d7a9344e", "email": null, "display_name": "", "account": {"uuid": "21e16630-6753-11ed-9d48-a717bef3404f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854327}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "178730b0-793d-11ed-9b5c-73a9565664b2", "first_shown_at": "2022-12-11T10:18:01.000000Z", "last_shown_at": "2022-12-11T10:18:01.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T10:18:04.000000Z", "last_data_reception_at": "2022-12-11T10:18:04.000000Z", "completed_at": "2022-12-11T10:19:29.000000Z", "received_at": "2022-12-11T10:19:29.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "It\u2019s a great app for chefs wanting extra work, it gives a chance for us to learn and improve and see how other businesses function ,"}, "contact": {"uuid": "4cdaaf10-6b1c-11ed-8507-fbefab1ac418", "remote_id": "9efcefea-2b4c-4797-8f35-58daa33ed1c0", "email": null, "display_name": "", "account": {"uuid": "4cdc4660-6b1c-11ed-bb8d-6360374b9359", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854327}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4db5f780-793c-11ed-a252-cbd4e672b8a9", "first_shown_at": "2022-12-11T10:12:22.000000Z", "last_shown_at": "2022-12-11T10:12:22.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T10:12:28.000000Z", "last_data_reception_at": "2022-12-11T10:12:28.000000Z", "completed_at": "2022-12-11T10:12:41.000000Z", "received_at": "2022-12-11T10:12:41.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Plus de missions"}, "contact": {"uuid": "78eb2da0-67e8-11ed-bcd5-fd5ee0f57c4d", "remote_id": "7f8f0dc0-3517-4fef-ac62-6ef9141fc5e0", "email": null, "display_name": "", "account": {"uuid": "78ed4e40-67e8-11ed-abe9-4b9074c8c43a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854328}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e3c3add0-793b-11ed-87f6-053c054bf6c8", "first_shown_at": "2022-12-11T10:09:24.000000Z", "last_shown_at": "2022-12-11T10:09:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T10:09:28.000000Z", "last_data_reception_at": "2022-12-11T10:09:28.000000Z", "completed_at": "2022-12-11T10:11:23.000000Z", "received_at": "2022-12-11T10:11:23.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En demandant + de d\u00e9tails aux clients sur le contenu des missions, certains notent rien sur l'annonce du coup on zappe l\u00e0 o\u00f9 il y a + dinfos."}, "contact": {"uuid": "7f58e4f0-66b9-11ed-9ce6-d969c5e97d08", "remote_id": "d2cea692-74b4-46e2-b65f-e5712ff484a5", "email": null, "display_name": "", "account": {"uuid": "7f5af110-66b9-11ed-a7cf-7b096ecb0fe3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854328}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d701aca0-793a-11ed-b73f-8f40c9502eb6", "first_shown_at": "2022-12-11T10:01:54.000000Z", "last_shown_at": "2022-12-11T10:01:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T10:01:59.000000Z", "last_data_reception_at": "2022-12-11T10:01:59.000000Z", "completed_at": "2022-12-11T10:02:57.000000Z", "received_at": "2022-12-11T10:02:57.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En me proposant plus de missions"}, "contact": {"uuid": "22144110-6744-11ed-b7b5-49c21e058bdf", "remote_id": "2299110d-33be-49ff-b0e0-362e7b3a210b", "email": null, "display_name": "", "account": {"uuid": "22170980-6744-11ed-b5dc-dd88c397a938", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854328}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d2a00f20-7939-11ed-b9cb-87bed1c7ad68", "first_shown_at": "2022-12-11T09:54:37.000000Z", "last_shown_at": "2022-12-11T09:54:37.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:54:46.000000Z", "last_data_reception_at": "2022-12-11T09:54:46.000000Z", "completed_at": "2022-12-11T09:55:38.000000Z", "received_at": "2022-12-11T09:55:38.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Salut en me donnant des missions plus all\u00e9chantes"}, "contact": {"uuid": "9e624ef0-6718-11ed-9e46-f307112d5bbd", "remote_id": "dcc3bb75-3220-4efc-8d8b-251eb960599e", "email": null, "display_name": "", "account": {"uuid": "9e64e8b0-6718-11ed-978a-5354be4fbdad", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854328}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "921748d0-7938-11ed-a8f7-bd8ae02cc1c3", "first_shown_at": "2022-12-11T09:45:39.000000Z", "last_shown_at": "2022-12-11T09:45:39.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:45:48.000000Z", "last_data_reception_at": "2022-12-11T09:45:48.000000Z", "completed_at": "2022-12-11T09:46:55.000000Z", "received_at": "2022-12-11T09:46:55.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "En donnant les missions plus pr\u00e8s de moi et c'est du gagne temps et \u00e9conomie de carburant Merci"}, "contact": {"uuid": "cc83be60-6756-11ed-8d7b-8d0659b92c71", "remote_id": "f146495c-f36e-4e55-9ea3-28052a7db572", "email": null, "display_name": "", "account": {"uuid": "cc857fd0-6756-11ed-b72a-e776eb68e768", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854328}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ff7dc470-7937-11ed-a7c3-6d38bf861ec5", "first_shown_at": "2022-12-11T09:41:33.000000Z", "last_shown_at": "2022-12-11T09:41:33.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:41:36.000000Z", "last_data_reception_at": "2022-12-11T09:41:45.000000Z", "completed_at": "2022-12-11T09:42:32.000000Z", "received_at": "2022-12-11T09:42:32.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "mettre beaucoup plus de metier de la petite enfance"}, "contact": {"uuid": "7aaee3c0-66cb-11ed-bdbe-ef3178e6cfee", "remote_id": "55d8cb76-04b8-46af-a6a3-f25d823e1487", "email": null, "display_name": "", "account": {"uuid": "7ab04450-66cb-11ed-a2f3-597e90040a91", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854328}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f3191990-7937-11ed-b02f-6ba2e0c62a0c", "first_shown_at": "2022-12-11T09:41:12.000000Z", "last_shown_at": "2022-12-11T09:41:12.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:41:28.000000Z", "last_data_reception_at": "2022-12-11T09:41:28.000000Z", "completed_at": "2022-12-11T09:41:41.000000Z", "received_at": "2022-12-11T09:41:41.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Je ne sais pas."}, "contact": {"uuid": "425a92e0-670b-11ed-8463-b3f00babfaf7", "remote_id": "8f0bb536-5962-440c-85a4-cc75a42db2de", "email": null, "display_name": "", "account": {"uuid": "425c79b0-670b-11ed-97f4-a529b1bdb1bf", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854329}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b9275f60-7937-11ed-aa58-47ed1499884a", "first_shown_at": "2022-12-11T09:39:35.000000Z", "last_shown_at": "2022-12-11T09:39:35.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:39:40.000000Z", "last_data_reception_at": "2022-12-11T09:39:40.000000Z", "completed_at": "2022-12-11T09:40:09.000000Z", "received_at": "2022-12-11T09:40:09.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "Prix \u00e9mission trop bas"}, "contact": {"uuid": "b8827fe0-671c-11ed-8d9c-89f0d91fb945", "remote_id": "0f1c1003-b7e5-43d6-8843-c6a93cf843cd", "email": null, "display_name": "", "account": {"uuid": "b883f6f0-671c-11ed-a1a5-1fbe7680b5a4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854329}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "481aca80-7937-11ed-bd11-1344aeeac9b5", "first_shown_at": "2022-12-11T09:36:25.000000Z", "last_shown_at": "2022-12-11T09:36:25.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:36:47.000000Z", "last_data_reception_at": "2022-12-11T09:36:47.000000Z", "completed_at": "2022-12-11T09:37:21.000000Z", "received_at": "2022-12-11T09:37:21.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus des missions"}, "contact": {"uuid": "e78b8ec0-6774-11ed-9467-a57952a5c505", "remote_id": "28415d4a-a6f6-4f6b-809c-306339a1d248", "email": null, "display_name": "", "account": {"uuid": "e78d1810-6774-11ed-bf6f-37db1c9b1737", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854329}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4760c5d0-7937-11ed-a1e7-35c49162d494", "first_shown_at": "2022-12-11T09:36:24.000000Z", "last_shown_at": "2022-12-11T09:36:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:36:29.000000Z", "last_data_reception_at": "2022-12-11T09:36:29.000000Z", "completed_at": "2022-12-11T09:37:09.000000Z", "received_at": "2022-12-11T09:37:09.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "En recevant des propositions de missions en secteur hospitalier"}, "contact": {"uuid": "aeb5ab50-6731-11ed-9db3-59c7e4d2c6b7", "remote_id": "3ae1283b-c243-451d-96ab-8a264301df81", "email": null, "display_name": "", "account": {"uuid": "aeb7bd90-6731-11ed-8229-15d01e78d060", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854329}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7b9c0420-7936-11ed-b56a-558383affbc8", "first_shown_at": "2022-12-11T09:30:42.000000Z", "last_shown_at": "2022-12-11T09:30:42.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:30:48.000000Z", "last_data_reception_at": "2022-12-11T09:30:48.000000Z", "completed_at": "2022-12-11T09:32:07.000000Z", "received_at": "2022-12-11T09:32:07.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Bonjour j\u2019ai pas vraiment des choses \u00e0 dire vous \u00eates mieux que d\u2019autres alors pour l\u2019instant rien a dire"}, "contact": {"uuid": "35d74960-66fc-11ed-9856-01b5f7589d70", "remote_id": "da417b63-80cb-47f5-a490-0aa4edc2d8f3", "email": null, "display_name": "", "account": {"uuid": "35d97bd0-66fc-11ed-8300-838a598e5591", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854329}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1c3d8b30-7936-11ed-830b-a709440c6a2c", "first_shown_at": "2022-12-11T09:28:02.000000Z", "last_shown_at": "2022-12-11T09:28:02.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:28:08.000000Z", "last_data_reception_at": "2022-12-11T09:28:08.000000Z", "completed_at": "2022-12-11T09:29:05.000000Z", "received_at": "2022-12-11T09:29:05.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Mettre \u00e0 jour le plate-forme"}, "contact": {"uuid": "1ddc3640-681b-11ed-9360-f15480aeef46", "remote_id": "cfa31f40-c350-4e9b-b726-fd2881973343", "email": null, "display_name": "", "account": {"uuid": "1dde5850-681b-11ed-aae3-9dbb8360531d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854329}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "00c1f7a0-7936-11ed-adf6-079a021c08e7", "first_shown_at": "2022-12-11T09:27:16.000000Z", "last_shown_at": "2022-12-11T09:27:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:27:21.000000Z", "last_data_reception_at": "2022-12-11T09:27:21.000000Z", "completed_at": "2022-12-11T09:27:35.000000Z", "received_at": "2022-12-11T09:27:35.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellent"}, "contact": {"uuid": "3f8914b0-6808-11ed-b230-4b956356b22e", "remote_id": "3e0b4798-7c8f-47cb-8751-67031cbec592", "email": null, "display_name": "", "account": {"uuid": "3f8a8fa0-6808-11ed-a1b1-bb4c893abb44", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854330}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "72370d60-7935-11ed-8864-a13a3c7a50e4", "first_shown_at": "2022-12-11T09:23:17.000000Z", "last_shown_at": "2022-12-11T09:23:17.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-11T09:23:26.000000Z", "last_data_reception_at": "2022-12-11T09:23:26.000000Z", "completed_at": "2022-12-11T09:25:08.000000Z", "received_at": "2022-12-11T09:25:08.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Generally, a good experience but it would be helpful if the address of the venue didn't seem to disappear when a mission has been accepted."}, "contact": {"uuid": "edd20c00-7608-11ed-a2e7-a17a05b300c6", "remote_id": "e3bc7f45-ceff-453b-9b37-d4e1f9662e84", "email": null, "display_name": "", "account": {"uuid": "edd4ab90-7608-11ed-be37-6d30c7f3b8dd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854330}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c5e2c7b0-7932-11ed-aa45-6554050ec3d5", "first_shown_at": "2022-12-11T09:04:09.000000Z", "last_shown_at": "2022-12-11T09:04:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:04:11.000000Z", "last_data_reception_at": "2022-12-11T09:04:11.000000Z", "completed_at": "2022-12-11T09:04:24.000000Z", "received_at": "2022-12-11T09:04:24.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Super appli merci beaucoup"}, "contact": {"uuid": "cc8aa720-66b9-11ed-92d5-817089d1b6f9", "remote_id": "05ae8d5a-2adf-4d00-b10d-763cfa6341c4", "email": null, "display_name": "", "account": {"uuid": "cc8c6ca0-66b9-11ed-a833-7dfea53ca627", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854330}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6e608990-7932-11ed-b036-b74c527c3f2b", "first_shown_at": "2022-12-11T09:01:42.000000Z", "last_shown_at": "2022-12-11T09:01:42.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T09:01:56.000000Z", "last_data_reception_at": "2022-12-11T09:01:56.000000Z", "completed_at": "2022-12-11T09:02:17.000000Z", "received_at": "2022-12-11T09:02:17.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s efficace"}, "contact": {"uuid": "d5057480-66de-11ed-8212-a1f7d0aad2cf", "remote_id": "e70a30bb-372b-4ca1-b55a-b498eed679e0", "email": null, "display_name": "", "account": {"uuid": "d506afc0-66de-11ed-87cd-49af64859a4b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854330}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "de9b3000-7931-11ed-b3a4-5977224e72f5", "first_shown_at": "2022-12-11T08:57:41.000000Z", "last_shown_at": "2022-12-11T08:57:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T08:58:08.000000Z", "last_data_reception_at": "2022-12-11T08:58:08.000000Z", "completed_at": "2022-12-11T08:58:36.000000Z", "received_at": "2022-12-11T08:58:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Bug incessant et pas de r\u00e9ponses adapt\u00e9s"}, "contact": {"uuid": "0e20c030-66c4-11ed-bd09-af78f8b07c28", "remote_id": "d979e649-53ed-4b79-8885-c935d0e25e54", "email": null, "display_name": "", "account": {"uuid": "0e228690-66c4-11ed-a520-8b07974ff0e8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854330}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2bd29e80-7931-11ed-a60f-79c7d2881578", "first_shown_at": "2022-12-11T08:52:41.000000Z", "last_shown_at": "2022-12-11T08:52:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T08:52:44.000000Z", "last_data_reception_at": "2022-12-11T08:52:44.000000Z", "completed_at": "2022-12-11T08:52:56.000000Z", "received_at": "2022-12-11T08:52:56.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "It's very good"}, "contact": {"uuid": "304aed00-6b91-11ed-b121-6fae7c2a02b8", "remote_id": "d6f70849-0de8-4fb5-9280-72ff3f574dc8", "email": null, "display_name": "", "account": {"uuid": "304ce350-6b91-11ed-8cec-39c060121d3e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854330}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "78df4f50-7930-11ed-90e4-2f731fbd7b89", "first_shown_at": "2022-12-11T08:47:41.000000Z", "last_shown_at": "2022-12-11T08:47:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T08:47:46.000000Z", "last_data_reception_at": "2022-12-11T08:47:46.000000Z", "completed_at": "2022-12-11T08:48:35.000000Z", "received_at": "2022-12-11T08:48:35.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Plus de missions sur la grande courroie de paris"}, "contact": {"uuid": "ac657880-66f5-11ed-84f2-2b5206976d1f", "remote_id": "b8d45f43-33bd-44ec-9c5a-147a707c066c", "email": null, "display_name": "", "account": {"uuid": "ac675d40-66f5-11ed-ad79-2f68f73f0ee1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854331}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3fcfd940-7930-11ed-884c-6104193ea4d8", "first_shown_at": "2022-12-11T08:46:05.000000Z", "last_shown_at": "2022-12-11T08:46:05.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T08:46:55.000000Z", "last_data_reception_at": "2022-12-11T08:46:55.000000Z", "completed_at": "2022-12-11T08:47:15.000000Z", "received_at": "2022-12-11T08:47:15.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "C\u2019est d\u00e9j\u00e0 bien ce que vous faites, que demander de plus ?"}, "contact": {"uuid": "82d51ac0-676d-11ed-8c5b-a36a7b84c558", "remote_id": "e94e085b-b605-42ce-b472-3af5bac58b2a", "email": null, "display_name": "", "account": {"uuid": "82d645e0-676d-11ed-9467-ebfdd3a6b554", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854331}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "46321bd0-792f-11ed-be33-17f51f13294a", "first_shown_at": "2022-12-11T08:39:06.000000Z", "last_shown_at": "2022-12-11T08:39:06.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T08:39:46.000000Z", "last_data_reception_at": "2022-12-11T08:39:46.000000Z", "completed_at": "2022-12-11T08:40:15.000000Z", "received_at": "2022-12-11T08:40:15.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "Ils y\u2019a plus des commandes"}, "contact": {"uuid": "abf6b9b0-66c6-11ed-a3aa-35755fd84652", "remote_id": "056b5a2b-b4da-4539-886e-fc2da0e10d32", "email": null, "display_name": "", "account": {"uuid": "abf906e0-66c6-11ed-9256-27537f684c76", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854331}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4d66b000-792f-11ed-b3cd-9311d4f75013", "first_shown_at": "2022-12-11T08:39:18.000000Z", "last_shown_at": "2022-12-11T08:39:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T08:39:24.000000Z", "last_data_reception_at": "2022-12-11T08:39:24.000000Z", "completed_at": "2022-12-11T08:39:48.000000Z", "received_at": "2022-12-11T08:39:48.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Je ne sais pas vraiment"}, "contact": {"uuid": "c0976ca0-66cd-11ed-b066-074a48d14f1d", "remote_id": "2d1894f4-d0ad-4cec-9a75-20d4b3f96380", "email": null, "display_name": "", "account": {"uuid": "c098b240-66cd-11ed-904b-130246f6c2e7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854331}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "fdbc3470-792e-11ed-a84e-9b1f1b7cff21", "first_shown_at": "2022-12-11T08:37:05.000000Z", "last_shown_at": "2022-12-11T08:37:05.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T08:37:08.000000Z", "last_data_reception_at": "2022-12-11T08:37:08.000000Z", "completed_at": "2022-12-11T08:38:12.000000Z", "received_at": "2022-12-11T08:38:12.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "To delete unwanted missions by just swiping to the side."}, "contact": {"uuid": "13d63740-690e-11ed-9529-1fb0172791d4", "remote_id": "a71e2892-5364-430c-8827-6a8f380b26fb", "email": null, "display_name": "", "account": {"uuid": "13d773a0-690e-11ed-abe1-1d3603b94e0f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854332}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "64c0d680-792e-11ed-864e-bf9f4f0f0877", "first_shown_at": "2022-12-11T08:32:48.000000Z", "last_shown_at": "2022-12-11T08:32:48.000000Z", "show_counter": 4, "first_data_reception_at": "2022-12-11T08:32:59.000000Z", "last_data_reception_at": "2022-12-11T08:32:59.000000Z", "completed_at": "2022-12-11T08:34:57.000000Z", "received_at": "2022-12-11T08:34:57.000000Z", "dismissed_at": "2022-12-11T08:35:05.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "En me proposant des missions en clinique ou hopitaux"}, "contact": {"uuid": "60dda6c0-66c3-11ed-8aa4-634349f27834", "remote_id": "6e65ea08-92ea-40f1-93da-b44bac941184", "email": null, "display_name": "", "account": {"uuid": "60df4100-66c3-11ed-b06a-7d5bebedd314", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854332}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "17a751c0-792c-11ed-9a8f-5799080e4c67", "first_shown_at": "2022-12-11T08:16:20.000000Z", "last_shown_at": "2022-12-11T08:16:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T08:16:24.000000Z", "last_data_reception_at": "2022-12-11T08:16:36.000000Z", "completed_at": "2022-12-11T08:16:46.000000Z", "received_at": "2022-12-11T08:16:46.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "............"}, "contact": {"uuid": "6c969cf0-6719-11ed-9a02-21c3819594ba", "remote_id": "408e4572-5f49-4d09-8b09-f1f672a9109d", "email": null, "display_name": "", "account": {"uuid": "6c98ab10-6719-11ed-8656-cb1c97f9d45b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854332}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "36d28720-792b-11ed-a17f-9765b8689e27", "first_shown_at": "2022-12-11T08:10:02.000000Z", "last_shown_at": "2022-12-11T08:10:02.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T08:10:05.000000Z", "last_data_reception_at": "2022-12-11T08:10:05.000000Z", "completed_at": "2022-12-11T08:13:46.000000Z", "received_at": "2022-12-11T08:13:46.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de renseignements sur la nature du poste demand\u00e9/travail seul ou en \u00e9quipe"}, "contact": {"uuid": "bcf94180-672f-11ed-af77-77b622766207", "remote_id": "04f53161-36f0-4ce5-983e-7cbd30a7d4a0", "email": null, "display_name": "", "account": {"uuid": "bcfb5790-672f-11ed-b3b5-e74228f080d0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854332}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6006a690-7929-11ed-9d33-67745472bc44", "first_shown_at": "2022-12-11T07:56:53.000000Z", "last_shown_at": "2022-12-11T07:56:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T07:57:12.000000Z", "last_data_reception_at": "2022-12-11T07:57:12.000000Z", "completed_at": "2022-12-11T07:57:43.000000Z", "received_at": "2022-12-11T07:57:43.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": "Annul\u00e9 cet mission incomplete"}, "contact": {"uuid": "604ce8c0-5d1e-11ed-927a-991bb5b717da", "remote_id": "511c8101-bd77-45a2-a375-9ed90cab839f", "email": "bullitcafe-garcia@orange.fr", "display_name": "", "account": {"uuid": "604f3550-5d1e-11ed-9c1e-914cb2aba743", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854332}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4f14be00-7929-11ed-8ef5-d5ce8fd3ffe8", "first_shown_at": "2022-12-11T07:56:24.000000Z", "last_shown_at": "2022-12-11T07:56:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T07:56:33.000000Z", "last_data_reception_at": "2022-12-11T07:56:33.000000Z", "completed_at": "2022-12-11T07:56:59.000000Z", "received_at": "2022-12-11T07:56:59.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "It\u2019s perfect"}, "contact": {"uuid": "549748b0-6713-11ed-9401-793036d54b0a", "remote_id": "214b247b-820f-4e40-a169-bc08f8633b16", "email": null, "display_name": "", "account": {"uuid": "549ac0f0-6713-11ed-8539-4162c281fc70", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854332}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d8444340-7928-11ed-879b-2bd8e57ae708", "first_shown_at": "2022-12-11T07:53:05.000000Z", "last_shown_at": "2022-12-11T07:53:05.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T07:53:10.000000Z", "last_data_reception_at": "2022-12-11T07:53:10.000000Z", "completed_at": "2022-12-11T07:54:17.000000Z", "received_at": "2022-12-11T07:54:17.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Augmenter les taux horaires"}, "contact": {"uuid": "5f0783d0-681b-11ed-a59a-157ea4845771", "remote_id": "fbed528e-02dd-4faf-9192-f5886cd9cb88", "email": null, "display_name": "", "account": {"uuid": "5f0986c0-681b-11ed-a1f9-1f4b94901c12", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854332}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "434c4530-7925-11ed-9630-31b5712c0550", "first_shown_at": "2022-12-11T07:27:26.000000Z", "last_shown_at": "2022-12-11T07:27:26.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T07:27:30.000000Z", "last_data_reception_at": "2022-12-11T07:27:30.000000Z", "completed_at": "2022-12-11T07:29:13.000000Z", "received_at": "2022-12-11T07:29:13.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de mission dans la plonge pour moi. Mais c'est d\u00e9j\u00e0 parfait pour moi\ud83d\ude09\nMerci"}, "contact": {"uuid": "3ddcad60-670f-11ed-a6c2-d1e3f9a5d25d", "remote_id": "303d298f-1dec-4d67-adcb-7aca83d19cb7", "email": null, "display_name": "", "account": {"uuid": "3ddeb890-670f-11ed-8115-5d624c09edae", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854333}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5ddf7db0-7923-11ed-bf4b-c11cbd0b46de", "first_shown_at": "2022-12-11T07:13:52.000000Z", "last_shown_at": "2022-12-11T07:13:52.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T07:13:55.000000Z", "last_data_reception_at": "2022-12-11T07:13:55.000000Z", "completed_at": "2022-12-11T07:14:01.000000Z", "received_at": "2022-12-11T07:14:01.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Absolutely fabulous"}, "contact": {"uuid": "37bba680-66be-11ed-bf4e-5f31b5efb4d9", "remote_id": "43035bf1-79e9-4cc9-8015-9eb8472dca15", "email": null, "display_name": "", "account": {"uuid": "37bcea90-66be-11ed-96cb-8f3ff6095e01", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854333}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a2fe2740-791e-11ed-abb6-4fb109c6a46b", "first_shown_at": "2022-12-11T06:40:00.000000Z", "last_shown_at": "2022-12-11T06:40:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T06:40:08.000000Z", "last_data_reception_at": "2022-12-11T06:40:08.000000Z", "completed_at": "2022-12-11T06:42:25.000000Z", "received_at": "2022-12-11T06:42:25.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "C\u2019est que j\u2019ai remarqu\u00e9 j\u2019en ai pas des missions malgr\u00e9 mes disponibilit\u00e9s"}, "contact": {"uuid": "49f7b520-6803-11ed-93e3-d72204b6abec", "remote_id": "a2fb7453-0451-4893-9dec-be31f660c816", "email": null, "display_name": "", "account": {"uuid": "49f9bd00-6803-11ed-800b-95965ca2ee44", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854333}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4ca30de0-791c-11ed-8ba6-8d01c6f08c32", "first_shown_at": "2022-12-11T06:23:17.000000Z", "last_shown_at": "2022-12-11T06:23:17.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T06:23:23.000000Z", "last_data_reception_at": "2022-12-11T06:23:23.000000Z", "completed_at": "2022-12-11T06:25:45.000000Z", "received_at": "2022-12-11T06:25:45.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Brigad est bien mais si les missions pourraient arriver quelques jours avant \u00e7a serait l\u2019id\u00e9al"}, "contact": {"uuid": "03689210-6728-11ed-992a-03fe0fd895c5", "remote_id": "8abd0ff5-d055-41f0-a11c-f710a327ed31", "email": null, "display_name": "", "account": {"uuid": "036c2660-6728-11ed-a328-1bb1e30e9e73", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854333}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b0ddfb20-7919-11ed-9946-15a5758f8623", "first_shown_at": "2022-12-11T06:04:36.000000Z", "last_shown_at": "2022-12-11T06:04:36.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T06:04:47.000000Z", "last_data_reception_at": "2022-12-11T06:04:47.000000Z", "completed_at": "2022-12-11T06:05:28.000000Z", "received_at": "2022-12-11T06:05:28.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "En s'implantant dans les ville moyenne comme Valenciennes par exemple"}, "contact": {"uuid": "1d35ee70-6703-11ed-9d00-c34258ae2816", "remote_id": "3be9f47b-7705-4684-b7b3-5347cf7b91fd", "email": null, "display_name": "", "account": {"uuid": "1d3795e0-6703-11ed-b7b2-e71b92009fc3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854333}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "11e9ebe0-7910-11ed-b0ea-4bb5830b9fbc", "first_shown_at": "2022-12-11T04:55:44.000000Z", "last_shown_at": "2022-12-11T04:55:44.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T04:55:54.000000Z", "last_data_reception_at": "2022-12-11T04:55:54.000000Z", "completed_at": "2022-12-11T04:57:27.000000Z", "received_at": "2022-12-11T04:57:27.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Certaines missions ne sont pas assez tarif\u00e9es par rapport au lib\u00e9ral (300e pour 10 ou 12h de boulot alors qu\u2019en lib\u00e9ral on les a en 5-6h) \nEt les dimanches ne sont pas major\u00e9s, pay\u00e9s au m\u00eame tarif qu\u2019en semaine, ce n\u2019est pas avantageux"}, "contact": {"uuid": "c4934940-673a-11ed-9481-1fa5000f893e", "remote_id": "2af5b0e1-e7b8-4ab2-abba-e7f1b3524a32", "email": null, "display_name": "", "account": {"uuid": "c4958360-673a-11ed-9854-f9271f79d7b7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854333}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1d82ec60-790e-11ed-939b-99a6ecf81bed", "first_shown_at": "2022-12-11T04:41:45.000000Z", "last_shown_at": "2022-12-11T04:41:45.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T04:41:50.000000Z", "last_data_reception_at": "2022-12-11T04:41:50.000000Z", "completed_at": "2022-12-11T04:43:11.000000Z", "received_at": "2022-12-11T04:43:11.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de mission, \u00e7a fait 2 mois que j ai la chance de maintenir le m\u00eame clients, avant il y avait plus de propositions"}, "contact": {"uuid": "0bb2bcb0-66c1-11ed-939c-73e0424132dd", "remote_id": "51427d1a-a37f-4369-acc8-fbac61709376", "email": null, "display_name": "", "account": {"uuid": "0bb49aa0-66c1-11ed-936a-df146b27d7bc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854334}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "714eb9f0-790b-11ed-a866-6773d1941141", "first_shown_at": "2022-12-11T04:22:37.000000Z", "last_shown_at": "2022-12-11T04:22:37.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T04:22:39.000000Z", "last_data_reception_at": "2022-12-11T04:22:47.000000Z", "completed_at": "2022-12-11T04:22:52.000000Z", "received_at": "2022-12-11T04:22:52.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "All OK so far"}, "contact": {"uuid": "da31e7f0-67ee-11ed-8b65-fd053a14226b", "remote_id": "44b0299b-061f-417f-ab0b-38c843d0216b", "email": null, "display_name": "", "account": {"uuid": "da33d2c0-67ee-11ed-82d1-2d91d7f61884", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854334}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9c7d2dd0-790a-11ed-ac9b-213570f03578", "first_shown_at": "2022-12-11T04:16:40.000000Z", "last_shown_at": "2022-12-11T04:16:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T04:16:44.000000Z", "last_data_reception_at": "2022-12-11T04:16:44.000000Z", "completed_at": "2022-12-11T04:17:46.000000Z", "received_at": "2022-12-11T04:17:46.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "people stop talking shit and acting unprofessional im haooy to drag people outside and do barbaric stuff and talk mad. but i a work place alot of you need to grow up."}, "contact": {"uuid": "50574910-68cf-11ed-8d1b-7da627b373ea", "remote_id": "469b6d12-a4c6-4b2f-953e-b911ee326e23", "email": null, "display_name": "", "account": {"uuid": "50591b40-68cf-11ed-ad7a-c15c9c0d2f7a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854334}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "53b8c1f0-7905-11ed-a845-e3b5b1b3b10d", "first_shown_at": "2022-12-11T03:38:50.000000Z", "last_shown_at": "2022-12-11T03:38:50.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T03:38:52.000000Z", "last_data_reception_at": "2022-12-11T03:38:52.000000Z", "completed_at": "2022-12-11T03:39:06.000000Z", "received_at": "2022-12-11T03:39:06.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "nothing really"}, "contact": {"uuid": "dfd2bd50-66de-11ed-a458-0979ea554fec", "remote_id": "e3caae33-95f2-4fce-b510-554eeba19c6b", "email": null, "display_name": "", "account": {"uuid": "dfd48150-66de-11ed-b51a-5d2c382ad4a9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854334}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "dba03c40-78fa-11ed-9490-190da7703aff", "first_shown_at": "2022-12-11T02:23:54.000000Z", "last_shown_at": "2022-12-11T02:23:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T02:23:55.000000Z", "last_data_reception_at": "2022-12-11T02:23:55.000000Z", "completed_at": "2022-12-11T02:24:02.000000Z", "received_at": "2022-12-11T02:24:02.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s bien"}, "contact": {"uuid": "84c74f70-66bc-11ed-bfe1-83a4b8106732", "remote_id": "ae7133ec-f4f1-43e0-90f6-2b21c99a9e9a", "email": null, "display_name": "", "account": {"uuid": "84c95240-66bc-11ed-ab32-5d7ff163dd14", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854334}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b256d8d0-78f8-11ed-8d79-950bfcfd882c", "first_shown_at": "2022-12-11T02:08:25.000000Z", "last_shown_at": "2022-12-11T02:08:25.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T02:08:30.000000Z", "last_data_reception_at": "2022-12-11T02:08:30.000000Z", "completed_at": "2022-12-11T02:09:28.000000Z", "received_at": "2022-12-11T02:09:28.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "I recommended you to many but it's a hussle for them to get the UTR. You're Amazing."}, "contact": {"uuid": "d81005b0-66d5-11ed-991c-13f66a47ab1e", "remote_id": "2182d6bb-de7f-4236-9632-e50c2572e331", "email": null, "display_name": "", "account": {"uuid": "d8120060-66d5-11ed-8cc9-af1cfca4df43", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854334}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a3c0b7b0-78f7-11ed-9711-957155694d49", "first_shown_at": "2022-12-11T02:00:51.000000Z", "last_shown_at": "2022-12-11T02:00:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T02:00:55.000000Z", "last_data_reception_at": "2022-12-11T02:00:55.000000Z", "completed_at": "2022-12-11T02:01:20.000000Z", "received_at": "2022-12-11T02:01:20.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Give more pay rise"}, "contact": {"uuid": "15f66d10-66c4-11ed-8900-bfc2c8da6408", "remote_id": "a45c5b24-81b5-43d8-afea-9b7100dce139", "email": null, "display_name": "", "account": {"uuid": "15f7ae30-66c4-11ed-b1b5-574de031275e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854335}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6f7da970-78f7-11ed-b737-6f61fa113118", "first_shown_at": "2022-12-11T01:59:24.000000Z", "last_shown_at": "2022-12-11T01:59:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T01:59:27.000000Z", "last_data_reception_at": "2022-12-11T01:59:27.000000Z", "completed_at": "2022-12-11T01:59:48.000000Z", "received_at": "2022-12-11T01:59:48.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Un vrai retour pour l\u2019es brigadier \nPas une bo\u00eete de r\u00e9ponse automatique \nMerci"}, "contact": {"uuid": "118bf1f0-671a-11ed-a287-e125b949a309", "remote_id": "9039431d-79a8-40c8-b548-d3802208d1eb", "email": null, "display_name": "", "account": {"uuid": "118d76b0-671a-11ed-b04a-e7fe5eb4e83d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854335}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "594aa350-78f4-11ed-b8e3-6b88c46a2815", "first_shown_at": "2022-12-11T01:37:18.000000Z", "last_shown_at": "2022-12-11T01:37:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T01:37:22.000000Z", "last_data_reception_at": "2022-12-11T01:37:22.000000Z", "completed_at": "2022-12-11T01:37:38.000000Z", "received_at": "2022-12-11T01:37:38.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Pay abit more"}, "contact": {"uuid": "65269790-66cc-11ed-abdf-e1a38f7c2a12", "remote_id": "c0cb291c-e962-4b7d-a10f-743b21444224", "email": null, "display_name": "", "account": {"uuid": "65283bf0-66cc-11ed-b59c-ebf4b41aa209", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854335}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "471ff5b0-78f3-11ed-a7ad-bbd82a2e764c", "first_shown_at": "2022-12-11T01:29:38.000000Z", "last_shown_at": "2022-12-11T01:29:38.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T01:29:42.000000Z", "last_data_reception_at": "2022-12-11T01:29:42.000000Z", "completed_at": "2022-12-11T01:30:54.000000Z", "received_at": "2022-12-11T01:30:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Franchement c'est d\u00e9j\u00e0 tr\u00e8s bien comme cela mais avoir plus de proposition serait un plus en tout cas merci brigade."}, "contact": {"uuid": "d46c7650-6914-11ed-84d4-4b2ec711218d", "remote_id": "3daffeb7-0fce-4894-ada3-242a9c3663d1", "email": null, "display_name": "", "account": {"uuid": "d46e6770-6914-11ed-b86c-9d83b85d43e3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854335}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "29d1b920-78f3-11ed-a504-efafd95ed8ad", "first_shown_at": "2022-12-11T01:28:49.000000Z", "last_shown_at": "2022-12-11T01:28:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T01:28:52.000000Z", "last_data_reception_at": "2022-12-11T01:28:52.000000Z", "completed_at": "2022-12-11T01:41:50.000000Z", "received_at": "2022-12-11T01:41:50.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "I suggest that the message option is great but I think a proper improvement could be a phone contact where we were be able to get in touch easier in case of any enquiry or request."}, "contact": {"uuid": "f753bd10-6758-11ed-ba08-ef834e0c2c45", "remote_id": "8cd04cd5-d9fc-47f5-ac02-5b80219fa835", "email": null, "display_name": "", "account": {"uuid": "f7566e40-6758-11ed-b08d-03b8bbf1143d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854335}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "16842170-78ed-11ed-b90e-a9c0f9d6e680", "first_shown_at": "2022-12-11T00:45:19.000000Z", "last_shown_at": "2022-12-11T00:45:19.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T00:45:23.000000Z", "last_data_reception_at": "2022-12-11T00:45:23.000000Z", "completed_at": "2022-12-11T00:45:46.000000Z", "received_at": "2022-12-11T00:45:46.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Make it clear to employers about break times"}, "contact": {"uuid": "c8d2b010-68f2-11ed-b6e7-3b430f2b38b2", "remote_id": "c66eaff5-42e9-40ea-b26f-0ebaf4640f82", "email": null, "display_name": "", "account": {"uuid": "c8d448c0-68f2-11ed-b0a5-e5faa3553237", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854335}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7a81afb0-78e9-11ed-bc77-250bece8a31a", "first_shown_at": "2022-12-11T00:19:29.000000Z", "last_shown_at": "2022-12-11T00:19:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T00:19:36.000000Z", "last_data_reception_at": "2022-12-11T00:19:36.000000Z", "completed_at": "2022-12-11T00:22:37.000000Z", "received_at": "2022-12-11T00:22:37.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien tout est parfait franchement bravo \u00e0 vous vous abattez un travail de titan. \nSeulement que personnellement mon compte se d\u00e9connecte de temps en temps et je sais pas l\u2019origine du probl\u00e8me. Sinon RAS.\n\nBien cordialement,\nPapa Abdoulaye Thiam"}, "contact": {"uuid": "b6d7ea80-6753-11ed-b1df-57be8a49d65d", "remote_id": "f221924e-acf0-4a2e-b3b3-08fd390600ae", "email": null, "display_name": "", "account": {"uuid": "b6dc9cc0-6753-11ed-a3ef-6fa945f2aefc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854335}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e40efb30-78e8-11ed-9c8f-3ba97ae44e34", "first_shown_at": "2022-12-11T00:15:17.000000Z", "last_shown_at": "2022-12-11T00:15:17.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-11T00:15:20.000000Z", "last_data_reception_at": "2022-12-11T00:15:20.000000Z", "completed_at": "2022-12-11T00:15:49.000000Z", "received_at": "2022-12-11T00:15:49.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Clearer breifs and employer expectations stated before accepting job"}, "contact": {"uuid": "4c91a010-6758-11ed-bdb8-29ea82d14bfc", "remote_id": "c73d6589-c341-471f-ba43-e2061388dcbb", "email": null, "display_name": "", "account": {"uuid": "4c930500-6758-11ed-bf6e-f1e514a487f3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854336}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5d8422c0-78e6-11ed-a863-97fbc27b8954", "first_shown_at": "2022-12-10T23:57:12.000000Z", "last_shown_at": "2022-12-10T23:57:12.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T23:57:18.000000Z", "last_data_reception_at": "2022-12-10T23:57:18.000000Z", "completed_at": "2022-12-10T23:58:20.000000Z", "received_at": "2022-12-10T23:58:20.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Il faut donner des cadeaux et des primes pour les super talons"}, "contact": {"uuid": "b0fb9e20-6a81-11ed-a7b1-c30524a0c814", "remote_id": "48b508bf-0118-40ba-9272-f0f963fcb3c3", "email": null, "display_name": "", "account": {"uuid": "b0fda040-6a81-11ed-b34b-bf7e9af086f3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854336}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4b8b53b0-78e6-11ed-a22a-7955d99cfdf7", "first_shown_at": "2022-12-10T23:56:42.000000Z", "last_shown_at": "2022-12-10T23:56:42.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T23:56:51.000000Z", "last_data_reception_at": "2022-12-10T23:56:51.000000Z", "completed_at": "2022-12-10T23:58:13.000000Z", "received_at": "2022-12-10T23:58:13.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Encore plus cibl\u00e9 mission"}, "contact": {"uuid": "2a0c7800-66c3-11ed-b26c-155d63271e11", "remote_id": "b59a2522-bda6-4111-bc78-1e154c07b500", "email": null, "display_name": "", "account": {"uuid": "2a0e1ef0-66c3-11ed-8a60-f5185a1c1d9c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854336}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d3278780-78e5-11ed-8cc8-fdfb998b7275", "first_shown_at": "2022-12-10T23:53:20.000000Z", "last_shown_at": "2022-12-10T23:53:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T23:53:24.000000Z", "last_data_reception_at": "2022-12-10T23:53:24.000000Z", "completed_at": "2022-12-10T23:54:30.000000Z", "received_at": "2022-12-10T23:54:30.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "Bug quand j\u2019essaie de prendre une mission, et les gars qui me r\u00e9pondent un trucs \u00e0 c\u00f4t\u00e9 de la plaque en automatique\u2026. Y\u2019a un Bug et vous faites rien lol"}, "contact": {"uuid": "a5e14510-6716-11ed-8778-e5fdb64e386a", "remote_id": "c1cab655-852c-4bb4-b569-c37c23d54db8", "email": null, "display_name": "", "account": {"uuid": "a5e2f3c0-6716-11ed-b146-c57c198caae0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854336}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "980e0840-78e4-11ed-b694-e9991b9e494e", "first_shown_at": "2022-12-10T23:44:31.000000Z", "last_shown_at": "2022-12-10T23:44:31.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T23:44:37.000000Z", "last_data_reception_at": "2022-12-10T23:44:37.000000Z", "completed_at": "2022-12-10T23:45:11.000000Z", "received_at": "2022-12-10T23:45:11.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Vous \u00eates top"}, "contact": {"uuid": "e8f46850-6720-11ed-9dbe-b3389b78b89e", "remote_id": "a765998d-5799-4d62-a062-f17dc3171d26", "email": null, "display_name": "", "account": {"uuid": "e8f5ea40-6720-11ed-912f-d7134e59ba34", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854336}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5f78d5d0-78e4-11ed-9370-bd9606749cff", "first_shown_at": "2022-12-10T23:42:56.000000Z", "last_shown_at": "2022-12-10T23:42:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T23:43:01.000000Z", "last_data_reception_at": "2022-12-10T23:43:01.000000Z", "completed_at": "2022-12-10T23:43:37.000000Z", "received_at": "2022-12-10T23:43:37.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "More details about the missions"}, "contact": {"uuid": "81ee83a0-7482-11ed-a742-156db3a738ea", "remote_id": "cdd338b1-ca6c-4484-ba84-35ed91362800", "email": null, "display_name": "", "account": {"uuid": "81f057e0-7482-11ed-9deb-df859c41d702", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854336}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4eba6420-78e3-11ed-8e42-c318b959f550", "first_shown_at": "2022-12-10T23:35:19.000000Z", "last_shown_at": "2022-12-10T23:35:19.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T23:35:24.000000Z", "last_data_reception_at": "2022-12-10T23:35:24.000000Z", "completed_at": "2022-12-10T23:36:45.000000Z", "received_at": "2022-12-10T23:36:45.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "EASY, AND NICE"}, "contact": {"uuid": "8afa7090-73ed-11ed-9ad3-411ce9527da0", "remote_id": "ea94f06d-eaa4-4933-8cd4-9e7fe663dddc", "email": null, "display_name": "", "account": {"uuid": "8afc2310-73ed-11ed-9cc0-5dca979735ed", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854337}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3a397b70-78e2-11ed-a708-7dd0ed263558", "first_shown_at": "2022-12-10T23:27:35.000000Z", "last_shown_at": "2022-12-10T23:27:35.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T23:27:40.000000Z", "last_data_reception_at": "2022-12-10T23:27:56.000000Z", "completed_at": "2022-12-10T23:31:01.000000Z", "received_at": "2022-12-10T23:31:01.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je souhaite qu\u2019on puisse joindre Brigad en cas d\u2019urgence au t\u00e9l\u00e9phone, si possible"}, "contact": {"uuid": "9c561f30-6739-11ed-84f0-37f2e8ee4b17", "remote_id": "c90a1cfe-583e-48df-b483-772c57c9c38f", "email": null, "display_name": "", "account": {"uuid": "9c58efd0-6739-11ed-a698-43d340d3582a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854337}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0dbf16d0-78e2-11ed-bdb8-d7bc914ec969", "first_shown_at": "2022-12-10T23:26:20.000000Z", "last_shown_at": "2022-12-10T23:26:20.000000Z", "show_counter": 0, "first_data_reception_at": "2022-12-10T23:26:20.000000Z", "last_data_reception_at": "2022-12-10T23:26:20.000000Z", "completed_at": "2022-12-10T23:26:20.000000Z", "received_at": "2022-12-10T23:26:20.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Franchement je gagne beaucoup d'exp\u00e9rience professionnelle plus que avant \nMerci l'\u00e9quipe de BRIGAD"}, "contact": {"uuid": "4978a450-6772-11ed-bbdd-958226848d7b", "remote_id": "d17f76b1-3c67-4693-8ba4-0dd00f49ba75", "email": null, "display_name": "", "account": {"uuid": "497ab060-6772-11ed-b515-770cf771e563", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854337}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f047aee0-78e1-11ed-b2e6-499435a0d32a", "first_shown_at": "2022-12-10T23:25:31.000000Z", "last_shown_at": "2022-12-10T23:25:31.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T23:25:35.000000Z", "last_data_reception_at": "2022-12-10T23:25:35.000000Z", "completed_at": "2022-12-10T23:25:56.000000Z", "received_at": "2022-12-10T23:25:56.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Nothing. Everything is great"}, "contact": {"uuid": "86d450d0-66be-11ed-81fa-c32ef9799e1e", "remote_id": "a1a55239-1de3-43f4-ab3c-4dd37bc93ad1", "email": null, "display_name": "", "account": {"uuid": "86d58620-66be-11ed-bad5-9302fb4d9cbc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854337}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "967d77c0-78df-11ed-9d57-99555819f039", "first_shown_at": "2022-12-10T23:08:41.000000Z", "last_shown_at": "2022-12-10T23:08:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T23:08:50.000000Z", "last_data_reception_at": "2022-12-10T23:08:50.000000Z", "completed_at": "2022-12-10T23:09:25.000000Z", "received_at": "2022-12-10T23:09:25.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "En continuant comme \u00e7a"}, "contact": {"uuid": "3a5af310-6751-11ed-846d-df3b635d85ba", "remote_id": "f9d52d9b-30fd-456f-88d3-00060d4b8492", "email": null, "display_name": "", "account": {"uuid": "3a5cf5f0-6751-11ed-ae3a-e30558ee9245", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854337}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e9656f90-78de-11ed-bec4-9f403f20e601", "first_shown_at": "2022-12-10T23:03:51.000000Z", "last_shown_at": "2022-12-10T23:03:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T23:03:59.000000Z", "last_data_reception_at": "2022-12-10T23:03:59.000000Z", "completed_at": "2022-12-10T23:04:35.000000Z", "received_at": "2022-12-10T23:04:35.000000Z", "dismissed_at": "2022-12-10T23:04:39.000000Z", "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Giving rating on the venues"}, "contact": {"uuid": "b7725dc0-679c-11ed-b4b4-a5b8815c7d7f", "remote_id": "5c93e30b-6031-47db-acbc-804c5e53244f", "email": null, "display_name": "", "account": {"uuid": "b7745560-679c-11ed-91db-39daad86a353", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854338}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "29634090-78de-11ed-b608-89302a10fbb3", "first_shown_at": "2022-12-10T22:58:29.000000Z", "last_shown_at": "2022-12-10T22:58:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:58:35.000000Z", "last_data_reception_at": "2022-12-10T22:58:35.000000Z", "completed_at": "2022-12-10T22:58:48.000000Z", "received_at": "2022-12-10T22:58:48.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "More money"}, "contact": {"uuid": "be2d19f0-66b9-11ed-8a99-392348d1025a", "remote_id": "af27d9fa-8a8e-4f51-87fa-6ac13525138d", "email": null, "display_name": "", "account": {"uuid": "be2f6170-66b9-11ed-9737-1fc00326ffe1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854338}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ccea6300-78dd-11ed-89a6-59ba084ba694", "first_shown_at": "2022-12-10T22:55:53.000000Z", "last_shown_at": "2022-12-10T22:55:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:55:57.000000Z", "last_data_reception_at": "2022-12-10T22:55:57.000000Z", "completed_at": "2022-12-10T22:56:08.000000Z", "received_at": "2022-12-10T22:56:08.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s utile"}, "contact": {"uuid": "ae2be0d0-67e4-11ed-9c34-3ff83b9e8ea0", "remote_id": "8ebbc528-c593-4612-b4b1-364e2795572b", "email": null, "display_name": "", "account": {"uuid": "ae2e1450-67e4-11ed-81c7-ed7056afec1f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854338}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a36f4040-78d9-11ed-902d-f5b1efec336b", "first_shown_at": "2022-12-10T22:26:06.000000Z", "last_shown_at": "2022-12-10T22:26:06.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:26:14.000000Z", "last_data_reception_at": "2022-12-10T22:26:14.000000Z", "completed_at": "2022-12-10T22:27:23.000000Z", "received_at": "2022-12-10T22:27:23.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En multipliant les offres sur Paris"}, "contact": {"uuid": "26d911c0-66d5-11ed-b410-8d24410eb3a2", "remote_id": "7e8bbd46-a3d7-4ec5-adc6-ce182c0f9f88", "email": null, "display_name": "", "account": {"uuid": "26db1c50-66d5-11ed-ae3b-456cf5605823", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854338}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "faad8bf0-78d7-11ed-85a4-89f57f203822", "first_shown_at": "2022-12-10T22:14:13.000000Z", "last_shown_at": "2022-12-10T22:14:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:14:16.000000Z", "last_data_reception_at": "2022-12-10T22:14:16.000000Z", "completed_at": "2022-12-10T22:14:36.000000Z", "received_at": "2022-12-10T22:14:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tout fonctionne tr\u00e8s bien!"}, "contact": {"uuid": "be99e550-6717-11ed-a92b-a328c5bb20cf", "remote_id": "eb1d2fb9-d91a-424d-948f-eab33ac2dede", "email": null, "display_name": "", "account": {"uuid": "be9b32a0-6717-11ed-894d-6557e223d040", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854338}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "33ea49a0-78d7-11ed-9dc2-9f9dc156464d", "first_shown_at": "2022-12-10T22:08:40.000000Z", "last_shown_at": "2022-12-10T22:08:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:08:45.000000Z", "last_data_reception_at": "2022-12-10T22:08:45.000000Z", "completed_at": "2022-12-10T22:08:54.000000Z", "received_at": "2022-12-10T22:08:54.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Not enough shifts"}, "contact": {"uuid": "45985040-6eb3-11ed-a2e0-99c80ca53245", "remote_id": "5479b469-b89c-4e65-8321-c86d00da2014", "email": null, "display_name": "", "account": {"uuid": "459a75b0-6eb3-11ed-824d-b3b685372a66", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854338}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2289c730-78d7-11ed-a367-1115d3a2d24f", "first_shown_at": "2022-12-10T22:08:11.000000Z", "last_shown_at": "2022-12-10T22:08:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:08:14.000000Z", "last_data_reception_at": "2022-12-10T22:08:14.000000Z", "completed_at": "2022-12-10T22:08:28.000000Z", "received_at": "2022-12-10T22:08:28.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de mission"}, "contact": {"uuid": "35a25b80-6856-11ed-a485-63f24922bbd0", "remote_id": "53c738da-e646-42a2-bdd3-4d6cf33867a3", "email": null, "display_name": "", "account": {"uuid": "35a431c0-6856-11ed-a0db-cf9f683a5ed5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854339}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "046b32e0-78d7-11ed-b7f1-8d16af038255", "first_shown_at": "2022-12-10T22:07:20.000000Z", "last_shown_at": "2022-12-10T22:07:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:07:25.000000Z", "last_data_reception_at": "2022-12-10T22:07:25.000000Z", "completed_at": "2022-12-10T22:07:44.000000Z", "received_at": "2022-12-10T22:07:44.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Be able to cancel missions without a week suspension"}, "contact": {"uuid": "2ea2a780-67fa-11ed-ac74-5505820ae0bb", "remote_id": "b262ef70-38f4-4b47-9fa3-e7f39f7ba025", "email": null, "display_name": "", "account": {"uuid": "2ea40af0-67fa-11ed-acd6-cdb82050fd51", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854339}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ff3fa660-78d6-11ed-9f4d-dd23064fb0af", "first_shown_at": "2022-12-10T22:07:11.000000Z", "last_shown_at": "2022-12-10T22:07:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:07:16.000000Z", "last_data_reception_at": "2022-12-10T22:07:16.000000Z", "completed_at": "2022-12-10T22:07:37.000000Z", "received_at": "2022-12-10T22:07:37.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de mission"}, "contact": {"uuid": "5b2c3b00-673f-11ed-b822-81163f8658f9", "remote_id": "71d19b28-1b81-47a3-bc51-cf3b8954d3dc", "email": null, "display_name": "", "account": {"uuid": "5b2dcbe0-673f-11ed-8671-6fa1d6ddbe0f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854339}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9497a4d0-78d6-11ed-be82-45c270d438aa", "first_shown_at": "2022-12-10T22:04:12.000000Z", "last_shown_at": "2022-12-10T22:04:12.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:04:22.000000Z", "last_data_reception_at": "2022-12-10T22:04:22.000000Z", "completed_at": "2022-12-10T22:09:06.000000Z", "received_at": "2022-12-10T22:09:06.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "J'aimerais bien avoir plus des missions davantage car je vais avoir des march\u00e9s \u00e0 temps plein, et non travailler 1 ou 2 jours le mois, c'est peu car Brigad pour moi, c'est une mission \u00e0 temps plein et longue dur\u00e9e, je vous remercie"}, "contact": {"uuid": "2f5c2900-66d4-11ed-86b4-e9434127f729", "remote_id": "600cca76-7c78-48e5-8668-f1a4ec204869", "email": null, "display_name": "", "account": {"uuid": "2f5e4a40-66d4-11ed-a3a3-7f520b350ba1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854339}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "52eb64c0-78d6-11ed-b618-23ca2e8d37e7", "first_shown_at": "2022-12-10T22:02:22.000000Z", "last_shown_at": "2022-12-10T22:02:22.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:02:29.000000Z", "last_data_reception_at": "2022-12-10T22:02:29.000000Z", "completed_at": "2022-12-10T22:03:50.000000Z", "received_at": "2022-12-10T22:03:50.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En rajoutant le poste de commis \u00e0 mon profil et en me donnant beaucoup plus de mission dans la semaine et surtout les week-ends merci cordialement."}, "contact": {"uuid": "977c15d0-670f-11ed-9ae2-25f842709ae1", "remote_id": "612b1e59-ff1d-4763-8578-09d526102334", "email": null, "display_name": "", "account": {"uuid": "977dceb0-670f-11ed-b21c-6f9ef5a437fc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854339}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3ba534b0-78d6-11ed-9e41-bd531b314df7", "first_shown_at": "2022-12-10T22:01:43.000000Z", "last_shown_at": "2022-12-10T22:01:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T22:01:51.000000Z", "last_data_reception_at": "2022-12-10T22:01:51.000000Z", "completed_at": "2022-12-10T22:03:18.000000Z", "received_at": "2022-12-10T22:03:18.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "\u00catre plus \u00e0 l'\u00e9coute de vos talents"}, "contact": {"uuid": "a900df60-6972-11ed-af61-1308d4e2099a", "remote_id": "dd993846-f257-4694-9f0f-f68eabb1e0cf", "email": null, "display_name": "", "account": {"uuid": "a902c7a0-6972-11ed-bde3-b79121779cf0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854339}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4dcbea20-78d5-11ed-9ab8-73f895b0c4f3", "first_shown_at": "2022-12-10T21:55:04.000000Z", "last_shown_at": "2022-12-10T21:55:04.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T21:55:11.000000Z", "last_data_reception_at": "2022-12-10T21:55:11.000000Z", "completed_at": "2022-12-10T21:55:56.000000Z", "received_at": "2022-12-10T21:55:56.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Fiabilit\u00e9 confiance et rapide"}, "contact": {"uuid": "302ba220-674e-11ed-83bd-c9e2599d85fe", "remote_id": "477a39f5-c411-4f0a-9994-a622fa7e6e03", "email": null, "display_name": "", "account": {"uuid": "302dda20-674e-11ed-93d6-17dd65490bfc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854340}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "05616f10-78d4-11ed-a2f3-5169a1de7fae", "first_shown_at": "2022-12-10T21:45:53.000000Z", "last_shown_at": "2022-12-10T21:45:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T21:45:56.000000Z", "last_data_reception_at": "2022-12-10T21:45:56.000000Z", "completed_at": "2022-12-10T21:46:54.000000Z", "received_at": "2022-12-10T21:46:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "\u00c9largir les partenariats avec les laboratoires, les h\u00f4pitaux, les cliniques."}, "contact": {"uuid": "35741d30-6708-11ed-a804-774d49c80d59", "remote_id": "57775f28-35cd-404f-8a07-aacc83de802d", "email": null, "display_name": "", "account": {"uuid": "35766040-6708-11ed-9407-fb375c6f49ae", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854340}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ce781bd0-78d3-11ed-b040-7d800532945d", "first_shown_at": "2022-12-10T21:44:21.000000Z", "last_shown_at": "2022-12-10T21:44:21.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T21:44:32.000000Z", "last_data_reception_at": "2022-12-10T21:44:32.000000Z", "completed_at": "2022-12-10T21:44:47.000000Z", "received_at": "2022-12-10T21:44:47.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s bien"}, "contact": {"uuid": "92ffcf60-673a-11ed-9cd5-11bb4b46a5e8", "remote_id": "9aba80be-520a-49e8-ae96-7dd0ab15a6ee", "email": null, "display_name": "", "account": {"uuid": "9301a8c0-673a-11ed-96fb-3dd1725e3428", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854340}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d371e010-78d2-11ed-8ce5-2bcd3dbea6e8", "first_shown_at": "2022-12-10T21:37:20.000000Z", "last_shown_at": "2022-12-10T21:38:11.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T21:37:24.000000Z", "last_data_reception_at": "2022-12-10T21:37:24.000000Z", "completed_at": "2022-12-10T21:37:40.000000Z", "received_at": "2022-12-10T21:37:40.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "J'aimerais beaucoup"}, "contact": {"uuid": "bb5ce8b0-672f-11ed-9bee-c34a9a3432b7", "remote_id": "75afc526-2161-41fb-8e52-c1cbcbc35312", "email": null, "display_name": "", "account": {"uuid": "bb5e2ab0-672f-11ed-af42-a13cb9e4a49d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854340}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "cb53d3e0-78d1-11ed-b436-1948786e0f65", "first_shown_at": "2022-12-10T21:29:57.000000Z", "last_shown_at": "2022-12-10T21:29:57.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T21:30:01.000000Z", "last_data_reception_at": "2022-12-10T21:30:01.000000Z", "completed_at": "2022-12-10T21:30:09.000000Z", "received_at": "2022-12-10T21:30:09.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Parfait"}, "contact": {"uuid": "426f9250-68b2-11ed-b155-f7d3631c7558", "remote_id": "d0e7e21d-3eac-4b0c-a2df-83f3a9f3426a", "email": null, "display_name": "", "account": {"uuid": "42715710-68b2-11ed-a3bf-2b49b7623b68", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854340}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "52d9f6f0-78d0-11ed-b42a-eba89c757613", "first_shown_at": "2022-12-10T21:19:25.000000Z", "last_shown_at": "2022-12-10T21:19:25.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T21:19:28.000000Z", "last_data_reception_at": "2022-12-10T21:19:28.000000Z", "completed_at": "2022-12-10T21:20:41.000000Z", "received_at": "2022-12-10T21:20:41.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Super application et franchement des missions j'en re\u00e7ois tous les jours c'est vraiment super\ud83d\ude09"}, "contact": {"uuid": "6e924a90-6701-11ed-a848-455987735938", "remote_id": "30031c23-ff7f-4660-9bfa-2cb01dd53497", "email": null, "display_name": "", "account": {"uuid": "6e93e760-6701-11ed-8aea-9923da5e222a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854340}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b45f8120-78cf-11ed-ae48-05e60567c9a2", "first_shown_at": "2022-12-10T21:14:59.000000Z", "last_shown_at": "2022-12-10T21:14:59.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T21:15:15.000000Z", "last_data_reception_at": "2022-12-10T21:15:15.000000Z", "completed_at": "2022-12-10T21:15:40.000000Z", "received_at": "2022-12-10T21:15:40.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Temps plein"}, "contact": {"uuid": "7a5bb8f0-66cc-11ed-a349-5baaa1732f34", "remote_id": "702f8bd2-50a6-4c25-ae1e-28edb812165c", "email": null, "display_name": "", "account": {"uuid": "7a5dcb20-66cc-11ed-a945-09ae3e024328", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854341}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "04a99200-78ce-11ed-a672-f3bf0d9476ef", "first_shown_at": "2022-12-10T21:02:55.000000Z", "last_shown_at": "2022-12-10T21:02:55.000000Z", "show_counter": 0, "first_data_reception_at": "2022-12-10T21:02:55.000000Z", "last_data_reception_at": "2022-12-10T21:02:55.000000Z", "completed_at": "2022-12-10T21:03:28.000000Z", "received_at": "2022-12-10T21:03:28.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Baisser les frais de commission pour les super talents"}, "contact": {"uuid": "d75989d0-66cd-11ed-9f62-7ddf67d3418b", "remote_id": "4e3aff5a-f413-4596-b394-9d26e87ce98f", "email": null, "display_name": "", "account": {"uuid": "d75b3a70-66cd-11ed-a450-39f5aab4b297", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854341}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a6ef9090-78cd-11ed-857c-cfc7382ecf63", "first_shown_at": "2022-12-10T21:00:18.000000Z", "last_shown_at": "2022-12-10T21:00:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T21:00:24.000000Z", "last_data_reception_at": "2022-12-10T21:00:24.000000Z", "completed_at": "2022-12-10T21:03:17.000000Z", "received_at": "2022-12-10T21:03:17.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "have easy access for various reasons"}, "contact": {"uuid": "752b5910-66d0-11ed-8c2c-99e01b291f4f", "remote_id": "670f441f-7c47-489c-b8b2-7080d638be31", "email": null, "display_name": "", "account": {"uuid": "752cb080-66d0-11ed-8441-cf805f0f5e23", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854341}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "56fff9f0-78cd-11ed-a63c-0367c39a4c4c", "first_shown_at": "2022-12-10T20:58:04.000000Z", "last_shown_at": "2022-12-10T20:58:04.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:58:15.000000Z", "last_data_reception_at": "2022-12-10T20:58:15.000000Z", "completed_at": "2022-12-10T20:58:56.000000Z", "received_at": "2022-12-10T20:58:56.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus d\u2019\u00e9missions, besoin de travailler, plus de mission, besoin d\u2019argent s\u2019il vous pla\u00eet"}, "contact": {"uuid": "f0c048a0-673d-11ed-aeee-e78a69254402", "remote_id": "d39daf2e-ea36-45d7-96dc-7fb5cfaaa2f5", "email": null, "display_name": "", "account": {"uuid": "f0c22460-673d-11ed-9398-3738f859c688", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854341}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f38e6cf0-78cb-11ed-a004-3d76eb49b268", "first_shown_at": "2022-12-10T20:48:07.000000Z", "last_shown_at": "2022-12-10T20:48:07.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:48:14.000000Z", "last_data_reception_at": "2022-12-10T20:49:28.000000Z", "completed_at": "2022-12-10T20:51:35.000000Z", "received_at": "2022-12-10T20:51:35.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "pouvoir avoir un contact direct via le telephone avec un conseillee brigade"}, "contact": {"uuid": "4533d020-66be-11ed-9b60-09ec6c3cea4c", "remote_id": "2cb90064-5d26-45c7-a107-956ebba10d64", "email": null, "display_name": "", "account": {"uuid": "45360850-66be-11ed-b1b0-7b5a15b03d2b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854342}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e60a4100-78cb-11ed-8e41-d3856241f62b", "first_shown_at": "2022-12-10T20:47:45.000000Z", "last_shown_at": "2022-12-10T20:47:45.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:47:54.000000Z", "last_data_reception_at": "2022-12-10T20:47:54.000000Z", "completed_at": "2022-12-10T20:50:27.000000Z", "received_at": "2022-12-10T20:50:27.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Prendre en consid\u00e9ration notre parole et ne pas bloquer lorsque nous n'avons pas pu honorer une prestation"}, "contact": {"uuid": "7f333cb0-6754-11ed-9464-cff61a9ffd34", "remote_id": "d2cc19be-abda-433f-b5d3-75ef591fcacf", "email": null, "display_name": "", "account": {"uuid": "7f35c340-6754-11ed-942c-4d4355c34760", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854342}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d3f37d80-78cb-11ed-bdd6-4d434a178e30", "first_shown_at": "2022-12-10T20:47:14.000000Z", "last_shown_at": "2022-12-10T20:47:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:47:25.000000Z", "last_data_reception_at": "2022-12-10T20:47:25.000000Z", "completed_at": "2022-12-10T20:48:58.000000Z", "received_at": "2022-12-10T20:48:58.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "I would try to check more the reason why someone cancel a mision \u2026 as i did today because a member of my family passed away and i couldn\u2019t assist to my mission.\nThen my account is suspended"}, "contact": {"uuid": "a3c39b50-66bc-11ed-aa89-4db668b73d73", "remote_id": "28d537c4-b6f8-4b44-8969-28db7a092d24", "email": null, "display_name": "", "account": {"uuid": "a3c58e80-66bc-11ed-8bee-f98b68129ecf", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854342}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9bdaffd0-78ca-11ed-8996-595ece3c4948", "first_shown_at": "2022-12-10T20:38:31.000000Z", "last_shown_at": "2022-12-10T20:38:31.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:38:39.000000Z", "last_data_reception_at": "2022-12-10T20:38:39.000000Z", "completed_at": "2022-12-10T20:39:10.000000Z", "received_at": "2022-12-10T20:39:10.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Am\u00e9liorer les paiements"}, "contact": {"uuid": "1db0ddd0-6727-11ed-9006-b1eb66f91872", "remote_id": "2e9dfc4f-74aa-41c8-8e71-c3127b49b0f1", "email": null, "display_name": "", "account": {"uuid": "1db326b0-6727-11ed-ae2a-6bbc8e5e4fb4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854342}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6c5f7560-78ca-11ed-97a1-d32eaee1bdfb", "first_shown_at": "2022-12-10T20:37:11.000000Z", "last_shown_at": "2022-12-10T20:37:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:37:18.000000Z", "last_data_reception_at": "2022-12-10T20:37:18.000000Z", "completed_at": "2022-12-10T20:38:17.000000Z", "received_at": "2022-12-10T20:38:17.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Je n\u2019aime pas le fait que vous ne montrez le prix r\u00e9el inclus votre 25% de services dans les missions \u00e7a cr\u00e9e des confusions pour les d\u00e9clarations"}, "contact": {"uuid": "8812eb50-6768-11ed-a942-a966495b5623", "remote_id": "7f172b0a-89da-4b04-b297-4293cd67dd96", "email": null, "display_name": "", "account": {"uuid": "8814b410-6768-11ed-a0bf-572462cd1961", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854342}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "cd4ec6e0-78c9-11ed-bbf4-ab2da3d8df49", "first_shown_at": "2022-12-10T20:32:44.000000Z", "last_shown_at": "2022-12-10T20:32:44.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:32:48.000000Z", "last_data_reception_at": "2022-12-10T20:32:57.000000Z", "completed_at": "2022-12-10T20:33:11.000000Z", "received_at": "2022-12-10T20:33:11.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Commission trop importante!"}, "contact": {"uuid": "976f7700-66d4-11ed-9ce2-e5435edef30f", "remote_id": "5bbf138e-3721-4ab5-b0b0-ab2bf9a02e08", "email": null, "display_name": "", "account": {"uuid": "97718b60-66d4-11ed-becc-45dc84f21544", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854343}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0e21f240-78c9-11ed-a55c-fbf074336941", "first_shown_at": "2022-12-10T20:27:23.000000Z", "last_shown_at": "2022-12-10T20:27:23.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:27:34.000000Z", "last_data_reception_at": "2022-12-10T20:27:34.000000Z", "completed_at": "2022-12-10T20:28:42.000000Z", "received_at": "2022-12-10T20:28:42.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "If the payment would arrive faster would be better\nOtherwise great app"}, "contact": {"uuid": "0e193790-6765-11ed-aec6-05528a7f95b6", "remote_id": "8cc97a03-9cc6-49d2-b8ed-7b6b54c240c6", "email": null, "display_name": "", "account": {"uuid": "0e1be4a0-6765-11ed-9cff-0b717f8bc6ed", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854343}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4ee1eb10-78c8-11ed-a13d-7161162593e5", "first_shown_at": "2022-12-10T20:22:03.000000Z", "last_shown_at": "2022-12-10T20:22:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:22:13.000000Z", "last_data_reception_at": "2022-12-10T20:22:13.000000Z", "completed_at": "2022-12-10T20:22:43.000000Z", "received_at": "2022-12-10T20:22:43.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tout va tr\u00e8s bien"}, "contact": {"uuid": "38828630-66bf-11ed-b0ed-ef9a6d5174dd", "remote_id": "a405077a-8326-4ef8-b9e0-43c21cf8bfb1", "email": null, "display_name": "", "account": {"uuid": "38841fc0-66bf-11ed-b066-c79ba89a52a9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854343}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f22f2720-78c7-11ed-b4fb-ad6f6030a8e9", "first_shown_at": "2022-12-10T20:19:27.000000Z", "last_shown_at": "2022-12-10T20:19:27.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:19:32.000000Z", "last_data_reception_at": "2022-12-10T20:19:32.000000Z", "completed_at": "2022-12-10T20:21:45.000000Z", "received_at": "2022-12-10T20:21:45.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Manques cruellement d\u2019offres diversifi\u00e9es ! Toujours les m\u00eames \u00e9tablissements. Impossible de se projeter avec Brigad dans l\u2019avenir"}, "contact": {"uuid": "a94999a0-68b7-11ed-a5c3-03de641f1f99", "remote_id": "a0be6563-8fde-4bc1-a7d6-32e1f82dd795", "email": null, "display_name": "", "account": {"uuid": "a94b8040-68b7-11ed-bccb-bbb0d73cf65f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854343}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e2359150-78c6-11ed-ad25-b1f6bfb20ce8", "first_shown_at": "2022-12-10T20:11:51.000000Z", "last_shown_at": "2022-12-10T20:11:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:12:09.000000Z", "last_data_reception_at": "2022-12-10T20:12:09.000000Z", "completed_at": "2022-12-10T20:18:58.000000Z", "received_at": "2022-12-10T20:18:58.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Give little bit priority who is working with your company as well as your client or business places"}, "contact": {"uuid": "93bb9d00-66cd-11ed-8d45-59a0f3fe8a48", "remote_id": "20308d1d-2336-4ae5-9274-cd3850cc9388", "email": null, "display_name": "", "account": {"uuid": "93bda3c0-66cd-11ed-a5ee-19aab37c8152", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854343}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d362d3a0-78c6-11ed-bbe3-f7646ac3506d", "first_shown_at": "2022-12-10T20:11:26.000000Z", "last_shown_at": "2022-12-10T20:11:26.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:11:30.000000Z", "last_data_reception_at": "2022-12-10T20:11:38.000000Z", "completed_at": "2022-12-10T20:11:47.000000Z", "received_at": "2022-12-10T20:11:47.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Proposer plus de mission"}, "contact": {"uuid": "d02bacd0-672d-11ed-bdfe-fde14cef203d", "remote_id": "d98683ab-b576-4a4e-9013-3b8767d875f5", "email": null, "display_name": "", "account": {"uuid": "d02dd510-672d-11ed-aa11-ebe6c96babd6", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854344}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9ccf2ee0-78c6-11ed-a10b-8bca06fafb92", "first_shown_at": "2022-12-10T20:09:54.000000Z", "last_shown_at": "2022-12-10T20:09:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:10:00.000000Z", "last_data_reception_at": "2022-12-10T20:10:00.000000Z", "completed_at": "2022-12-10T20:10:13.000000Z", "received_at": "2022-12-10T20:10:13.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Very nice"}, "contact": {"uuid": "02ff8bd0-6a7c-11ed-a504-e944e995c869", "remote_id": "58e483a7-11bb-4bf1-b016-48cdc2e3c66b", "email": null, "display_name": "", "account": {"uuid": "0301aca0-6a7c-11ed-9e08-85bfd588790c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854344}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f2e87bf0-78c5-11ed-b1cb-0b5d1f6708bd", "first_shown_at": "2022-12-10T20:05:09.000000Z", "last_shown_at": "2022-12-10T20:05:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:05:12.000000Z", "last_data_reception_at": "2022-12-10T20:05:12.000000Z", "completed_at": "2022-12-10T20:05:28.000000Z", "received_at": "2022-12-10T20:05:28.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je trouve l\u2019application tr\u00e8s bien"}, "contact": {"uuid": "8f4636e0-6a6f-11ed-afd9-e5b2f2a18e99", "remote_id": "7aed453b-c887-4e6f-bd0e-f15717f4a5a6", "email": null, "display_name": "", "account": {"uuid": "8f48af40-6a6f-11ed-ba06-5113e0b705a7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854344}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "94780990-78c5-11ed-90db-6b9c9b4139cc", "first_shown_at": "2022-12-10T20:02:31.000000Z", "last_shown_at": "2022-12-10T20:02:31.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:02:33.000000Z", "last_data_reception_at": "2022-12-10T20:02:33.000000Z", "completed_at": "2022-12-10T20:05:34.000000Z", "received_at": "2022-12-10T20:05:34.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Avoir la possibilit\u00e9 de choisir et ou s\u00e9lectionner et \u00e9largir les diff\u00e9rents types de postes"}, "contact": {"uuid": "3d5ad7c0-66be-11ed-a570-05348e65dcb8", "remote_id": "bb3b98f3-e1b6-4de9-9ea9-227c126461b9", "email": null, "display_name": "", "account": {"uuid": "3d5cf8a0-66be-11ed-803d-ffd97fc25f82", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854344}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "875c6e80-78c5-11ed-b282-59c481fa190e", "first_shown_at": "2022-12-10T20:02:09.000000Z", "last_shown_at": "2022-12-10T20:02:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:02:18.000000Z", "last_data_reception_at": "2022-12-10T20:02:18.000000Z", "completed_at": "2022-12-10T20:07:13.000000Z", "received_at": "2022-12-10T20:07:13.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "J'ai rien a dire, juste merci pour l'\u00e9quipe brigad des mission fournie, pass\u00e9 de bonne f\u00eate."}, "contact": {"uuid": "51a7a6c0-66bb-11ed-a14d-83a25a37dcca", "remote_id": "3397a64e-62be-4016-a1ee-05c339b93ad5", "email": null, "display_name": "", "account": {"uuid": "51a99a60-66bb-11ed-956b-f515ab40bb34", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854344}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "80157100-78c5-11ed-b532-bf25b0b14495", "first_shown_at": "2022-12-10T20:01:57.000000Z", "last_shown_at": "2022-12-10T20:01:57.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:02:06.000000Z", "last_data_reception_at": "2022-12-10T20:02:06.000000Z", "completed_at": "2022-12-10T20:03:11.000000Z", "received_at": "2022-12-10T20:03:11.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Beaucoup de mission car pas \u00e9vident le temps que je m'aper\u00e7oive qu'il en a un c'est d\u00e9j\u00e0 pris"}, "contact": {"uuid": "8e2252c0-671b-11ed-9b5d-3d01bf81ea28", "remote_id": "20e2b39b-2164-488e-9f2a-0ac74385a229", "email": null, "display_name": "", "account": {"uuid": "8e245c40-671b-11ed-9de2-f18efb183535", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854345}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6e597e80-78c5-11ed-97af-435a5152b480", "first_shown_at": "2022-12-10T20:01:27.000000Z", "last_shown_at": "2022-12-10T20:01:27.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T20:01:46.000000Z", "last_data_reception_at": "2022-12-10T20:01:46.000000Z", "completed_at": "2022-12-10T20:04:39.000000Z", "received_at": "2022-12-10T20:04:39.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je travaille beaucoup de restauration sur brigade restaurant traditionnel jusqu'\u00e0 pr\u00e9sent je suis traditionnel"}, "contact": {"uuid": "6cc25820-66d6-11ed-b2a0-e142af30be67", "remote_id": "0c788368-f78e-4811-a8fc-0ff7792592e1", "email": null, "display_name": "", "account": {"uuid": "6cc41ca0-66d6-11ed-96f2-f35a52333a98", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854345}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "15678d80-78c5-11ed-a40f-5b0e62b6bb22", "first_shown_at": "2022-12-10T19:58:58.000000Z", "last_shown_at": "2022-12-10T19:58:58.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:59:02.000000Z", "last_data_reception_at": "2022-12-10T19:59:02.000000Z", "completed_at": "2022-12-10T20:00:36.000000Z", "received_at": "2022-12-10T20:00:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Des retours d\u2019exp\u00e9rience par t\u00e9l\u00e9phone .comme un d\u00e9briefing"}, "contact": {"uuid": "d0ae1fb0-66bc-11ed-b333-b16932dd4e71", "remote_id": "9b4cb7c3-d0a3-47ad-9295-d16fcb7c8fe0", "email": null, "display_name": "", "account": {"uuid": "d0af6480-66bc-11ed-be7b-0936af204aaa", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854345}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e758c9b0-78c4-11ed-8779-218e3e80d76f", "first_shown_at": "2022-12-10T19:57:40.000000Z", "last_shown_at": "2022-12-10T19:57:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:57:43.000000Z", "last_data_reception_at": "2022-12-10T19:57:43.000000Z", "completed_at": "2022-12-10T19:57:54.000000Z", "received_at": "2022-12-10T19:57:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de missions de saison"}, "contact": {"uuid": "4d354410-676e-11ed-aae7-01cde333f4c3", "remote_id": "b27bfdce-9b4f-408e-8c85-9e347799bc11", "email": null, "display_name": "", "account": {"uuid": "4d37a240-676e-11ed-b0ad-ebe7bbddb183", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854345}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "03b08620-78c4-11ed-979b-ff25ef340b7a", "first_shown_at": "2022-12-10T19:51:18.000000Z", "last_shown_at": "2022-12-10T19:51:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:51:26.000000Z", "last_data_reception_at": "2022-12-10T19:51:26.000000Z", "completed_at": "2022-12-10T19:52:12.000000Z", "received_at": "2022-12-10T19:52:12.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Belle exp\u00e9rience"}, "contact": {"uuid": "ffd03d40-674a-11ed-991f-15e0f492158c", "remote_id": "7e0a0d8d-aa8d-466e-b873-a6bc666843f4", "email": null, "display_name": "", "account": {"uuid": "ffd1de70-674a-11ed-8f12-93c93d4ef34a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854345}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5809f3b0-78c3-11ed-a5c1-49256e9f9515", "first_shown_at": "2022-12-10T19:46:30.000000Z", "last_shown_at": "2022-12-10T19:46:30.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:46:38.000000Z", "last_data_reception_at": "2022-12-10T19:46:38.000000Z", "completed_at": "2022-12-10T19:50:47.000000Z", "received_at": "2022-12-10T19:50:47.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "I like Brigad but i\u2019m take some job sometimes because always like full day, min 8 hours or more until 12 hours is the best, not less\nFor 4, 5, 6 hours never get job."}, "contact": {"uuid": "c726e850-6764-11ed-9c22-6b1aa69191aa", "remote_id": "7536ea67-69c6-4ad5-beba-a69388d555d8", "email": null, "display_name": "", "account": {"uuid": "c728e7a0-6764-11ed-9fe8-91cdb18ae5ce", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854346}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "abb2ed40-78c2-11ed-8835-83cab5f0be37", "first_shown_at": "2022-12-10T19:41:41.000000Z", "last_shown_at": "2022-12-10T19:41:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:41:53.000000Z", "last_data_reception_at": "2022-12-10T19:41:53.000000Z", "completed_at": "2022-12-10T19:42:06.000000Z", "received_at": "2022-12-10T19:42:06.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Very slow at sending tax number"}, "contact": {"uuid": "5a4b57d0-6753-11ed-a96a-c9ce3dffbc6a", "remote_id": "935dc31e-1c0e-4e77-938a-b4623fde3d3c", "email": null, "display_name": "", "account": {"uuid": "5a4dc3d0-6753-11ed-82da-8df0bcd276f9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854346}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7e66cca0-78c1-11ed-a99f-2b0dedf57969", "first_shown_at": "2022-12-10T19:33:16.000000Z", "last_shown_at": "2022-12-10T19:33:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:33:19.000000Z", "last_data_reception_at": "2022-12-10T19:33:19.000000Z", "completed_at": "2022-12-10T19:34:43.000000Z", "received_at": "2022-12-10T19:34:43.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "J'appr\u00e9cie beaucoup Brigad. J'aimerai avoir une notice pour savoir comment fonctionne certains items de l'application"}, "contact": {"uuid": "3c79cc50-67f8-11ed-808e-edc16c9fcfd2", "remote_id": "786f5193-1feb-47ff-b905-98cc8818dc47", "email": null, "display_name": "", "account": {"uuid": "3c7bc300-67f8-11ed-9ebb-c3d1893623fe", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854346}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "52211e60-78c1-11ed-84f3-5b35e37eda69", "first_shown_at": "2022-12-10T19:32:02.000000Z", "last_shown_at": "2022-12-10T19:32:02.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:32:14.000000Z", "last_data_reception_at": "2022-12-10T19:32:14.000000Z", "completed_at": "2022-12-10T19:34:30.000000Z", "received_at": "2022-12-10T19:34:30.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "3", "how_could_we_improve_your_experience_with_brigad": "Les missions sont choisis. Les gens qui ont les m\u00eames profils ne re\u00e7oivent pas les meme missions. \u00c7a doit \u00eatre automatique comme il se doit. Am\u00e9liorer la fa\u00e7on de distribuer les missions"}, "contact": {"uuid": "d3a2b3e0-673d-11ed-b56e-ff98438281ef", "remote_id": "9a5be940-8fd1-4ef7-8a8c-137d46dfd6f6", "email": null, "display_name": "", "account": {"uuid": "d3a5b9b0-673d-11ed-bfb9-612aa589d908", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854346}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1b3b4f10-78c1-11ed-b816-29f98c5a5f33", "first_shown_at": "2022-12-10T19:30:29.000000Z", "last_shown_at": "2022-12-10T19:30:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:30:43.000000Z", "last_data_reception_at": "2022-12-10T19:30:43.000000Z", "completed_at": "2022-12-10T19:34:04.000000Z", "received_at": "2022-12-10T19:34:04.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "\u00c9viter de donner des missions par priorit\u00e9 ( super talent) cela n\u2019a pas de sens \u00e0 mon avis\u2026 laisser les \u00e9tablissements faire leur appr\u00e9ciation.. donner les missions au Talents disponible tout simplement\u2026"}, "contact": {"uuid": "b0ce7180-66f3-11ed-aee8-ef7586c06dd7", "remote_id": "fbd44a93-ad16-496a-99a9-05b1cd5713bf", "email": null, "display_name": "", "account": {"uuid": "b0d0bf40-66f3-11ed-a55d-d78e58ed0d9b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854346}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "06114830-78c1-11ed-af25-3b0c66b0d479", "first_shown_at": "2022-12-10T19:29:54.000000Z", "last_shown_at": "2022-12-10T19:29:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:29:57.000000Z", "last_data_reception_at": "2022-12-10T19:29:57.000000Z", "completed_at": "2022-12-10T19:30:13.000000Z", "received_at": "2022-12-10T19:30:13.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Not sure"}, "contact": {"uuid": "f16c7c80-6839-11ed-b5fc-eb6f663b0f8c", "remote_id": "40d8fed9-3862-4249-b923-054e57ab3e21", "email": null, "display_name": "", "account": {"uuid": "f16e7c80-6839-11ed-bf83-53077c447330", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854347}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "94129080-78c0-11ed-a995-bbcf013acf97", "first_shown_at": "2022-12-10T19:26:43.000000Z", "last_shown_at": "2022-12-10T19:29:33.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T19:27:27.000000Z", "last_data_reception_at": "2022-12-10T19:27:27.000000Z", "completed_at": "2022-12-10T19:29:25.000000Z", "received_at": "2022-12-10T19:29:25.000000Z", "dismissed_at": "2022-12-10T19:29:36.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "A me proposer plus des missions"}, "contact": {"uuid": "a4605320-6726-11ed-a73d-1d6034439aeb", "remote_id": "96b336a6-cb98-469c-a4bc-740b0559eff5", "email": null, "display_name": "", "account": {"uuid": "a461f890-6726-11ed-87c1-b3a20fe6b232", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854347}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4fef0ce0-78c0-11ed-bc17-4fc61fe819c4", "first_shown_at": "2022-12-10T19:24:48.000000Z", "last_shown_at": "2022-12-10T19:25:00.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T19:25:06.000000Z", "last_data_reception_at": "2022-12-10T19:25:06.000000Z", "completed_at": "2022-12-10T19:25:28.000000Z", "received_at": "2022-12-10T19:25:28.000000Z", "dismissed_at": "2022-12-10T19:24:52.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellent"}, "contact": {"uuid": "0afa9940-6b17-11ed-bd17-41fc3c0779e4", "remote_id": "d4c335e8-9694-4df8-b5cf-b625c5a18654", "email": null, "display_name": "", "account": {"uuid": "0afbdca0-6b17-11ed-8a10-656b9dd7e9e6", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854347}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "26187610-78c0-11ed-a198-559e53c6c117", "first_shown_at": "2022-12-10T19:23:38.000000Z", "last_shown_at": "2022-12-10T19:23:38.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:23:41.000000Z", "last_data_reception_at": "2022-12-10T19:23:41.000000Z", "completed_at": "2022-12-10T19:23:58.000000Z", "received_at": "2022-12-10T19:23:58.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "C est top"}, "contact": {"uuid": "5b42b4d0-73b2-11ed-9b7f-ed6e0e0c1d95", "remote_id": "4866e8aa-c6ba-4efb-9287-2d1f441ecccb", "email": null, "display_name": "", "account": {"uuid": "5b44b5d0-73b2-11ed-90cc-9fac6a472725", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854347}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "dbf35ff0-78bf-11ed-a6db-0375d90db4fa", "first_shown_at": "2022-12-10T19:21:34.000000Z", "last_shown_at": "2022-12-10T19:21:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:21:38.000000Z", "last_data_reception_at": "2022-12-10T19:21:38.000000Z", "completed_at": "2022-12-10T19:21:49.000000Z", "received_at": "2022-12-10T19:21:49.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "It\u2019s perfect"}, "contact": {"uuid": "2f2ef6c0-67fa-11ed-bd16-7fc89d8addc9", "remote_id": "a106b5da-8af9-4bd8-ac51-4f8e578db3ef", "email": null, "display_name": "", "account": {"uuid": "2f303600-67fa-11ed-a4a3-73d8c18c0cfb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854347}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b62762f0-78bf-11ed-8f03-2f12d15301e2", "first_shown_at": "2022-12-10T19:20:30.000000Z", "last_shown_at": "2022-12-10T19:20:30.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:20:32.000000Z", "last_data_reception_at": "2022-12-10T19:20:32.000000Z", "completed_at": "2022-12-10T19:20:57.000000Z", "received_at": "2022-12-10T19:20:57.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Une exp\u00e9rience magnifique et une libert\u00e9 incroyable"}, "contact": {"uuid": "10d87680-66c2-11ed-b8a3-91d156fd9145", "remote_id": "329abf4f-13be-4fab-af01-83c116072244", "email": null, "display_name": "", "account": {"uuid": "10da7ef0-66c2-11ed-baa3-93cfe83a9af1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854348}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6dde48e0-78bf-11ed-a549-5fb388d426b8", "first_shown_at": "2022-12-10T19:18:29.000000Z", "last_shown_at": "2022-12-10T19:18:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:18:34.000000Z", "last_data_reception_at": "2022-12-10T19:18:34.000000Z", "completed_at": "2022-12-10T19:18:55.000000Z", "received_at": "2022-12-10T19:18:55.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "INCROYABLE , mon application favorite"}, "contact": {"uuid": "34affe70-6723-11ed-9878-8f9f718bac78", "remote_id": "6c9b3911-9aa1-43ec-a035-786ca2beeb4e", "email": null, "display_name": "", "account": {"uuid": "34b23c30-6723-11ed-91cd-d963e687c2ae", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854348}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "40687220-78bf-11ed-85a3-458fadd42eda", "first_shown_at": "2022-12-10T19:17:13.000000Z", "last_shown_at": "2022-12-10T19:17:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:17:17.000000Z", "last_data_reception_at": "2022-12-10T19:17:17.000000Z", "completed_at": "2022-12-10T19:18:46.000000Z", "received_at": "2022-12-10T19:18:46.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Plus de missions d\u2019aide soignante \nEt moins de ssiad"}, "contact": {"uuid": "cdb6c0e0-6725-11ed-9943-3587be90bf23", "remote_id": "2b915626-e7a1-419d-9621-bb80a4e792d0", "email": null, "display_name": "", "account": {"uuid": "cdb8b860-6725-11ed-8dae-bf2b15bdae41", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854348}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ec6a2120-78be-11ed-84d6-a5d618cd5bff", "first_shown_at": "2022-12-10T19:14:52.000000Z", "last_shown_at": "2022-12-10T19:14:52.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:14:54.000000Z", "last_data_reception_at": "2022-12-10T19:14:54.000000Z", "completed_at": "2022-12-10T19:15:14.000000Z", "received_at": "2022-12-10T19:15:14.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Plus de ville plus de m\u00e9tiers \nPlus de contr\u00f4le au structure et au brigadier"}, "contact": {"uuid": "17c3a350-67f2-11ed-9b85-9d526c68c1aa", "remote_id": "dcb229f8-2b7d-4e80-8bf6-50e4e15855c8", "email": null, "display_name": "", "account": {"uuid": "17c5a4c0-67f2-11ed-a5bf-63e145fee89b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854348}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "bbb94bc0-78bd-11ed-a4f8-497da0308c91", "first_shown_at": "2022-12-10T19:06:21.000000Z", "last_shown_at": "2022-12-10T19:06:21.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:06:27.000000Z", "last_data_reception_at": "2022-12-10T19:06:27.000000Z", "completed_at": "2022-12-10T19:06:45.000000Z", "received_at": "2022-12-10T19:06:45.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pourquoi \u00e7a va pas ?"}, "contact": {"uuid": "d0431570-66c3-11ed-94f0-e38781a3af44", "remote_id": "980bb944-626c-4d99-9b98-4efdf11d7dd2", "email": null, "display_name": "", "account": {"uuid": "d0444510-66c3-11ed-883f-f7588302956e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854348}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d3ba0350-78a1-11ed-b211-dfff83eb92c2", "first_shown_at": "2022-12-10T15:46:35.000000Z", "last_shown_at": "2022-12-10T15:46:35.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:02:23.000000Z", "last_data_reception_at": "2022-12-10T19:02:23.000000Z", "completed_at": "2022-12-10T19:02:32.000000Z", "received_at": "2022-12-10T19:02:32.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellent"}, "contact": {"uuid": "ebba4820-66c0-11ed-8e14-915c2d924985", "remote_id": "62664ea9-3580-4009-a299-2fb6aa8071e2", "email": null, "display_name": "", "account": {"uuid": "ebbc3da0-66c0-11ed-b3fc-e51428d23114", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854349}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1fdc3320-78bd-11ed-b098-b7232542b0a1", "first_shown_at": "2022-12-10T19:01:59.000000Z", "last_shown_at": "2022-12-10T19:01:59.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T19:02:04.000000Z", "last_data_reception_at": "2022-12-10T19:02:04.000000Z", "completed_at": "2022-12-10T19:02:26.000000Z", "received_at": "2022-12-10T19:02:26.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Encore plus de missions !!\u263a\ufe0f"}, "contact": {"uuid": "329ab340-6732-11ed-8ab6-e3165debe8ca", "remote_id": "9c423e01-42fe-4b5e-8587-8760be3fd792", "email": null, "display_name": "", "account": {"uuid": "329c5ae0-6732-11ed-ba0f-d3ce6ce67c25", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854349}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ac495d30-78bc-11ed-b288-1110b8604452", "first_shown_at": "2022-12-10T18:58:45.000000Z", "last_shown_at": "2022-12-10T18:58:45.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:58:50.000000Z", "last_data_reception_at": "2022-12-10T18:58:50.000000Z", "completed_at": "2022-12-10T18:59:45.000000Z", "received_at": "2022-12-10T18:59:45.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Avoir une ligne direct pour pouvoir communiquer plus facilement"}, "contact": {"uuid": "1a56fc30-68d1-11ed-85b3-0f58ad9e3ffc", "remote_id": "895f18ac-7e95-4af0-8d27-07264b709f3a", "email": null, "display_name": "", "account": {"uuid": "1a588ba0-68d1-11ed-9869-7b81154842e8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854349}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9e4d1160-78bc-11ed-a732-154281d100f5", "first_shown_at": "2022-12-10T18:58:22.000000Z", "last_shown_at": "2022-12-10T18:58:22.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:58:36.000000Z", "last_data_reception_at": "2022-12-10T18:58:36.000000Z", "completed_at": "2022-12-10T18:59:00.000000Z", "received_at": "2022-12-10T18:59:00.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Longer contacts"}, "contact": {"uuid": "05092650-6754-11ed-bab9-232e75ec33c5", "remote_id": "9344ee00-9d1a-408a-b2b7-13151fafe9a2", "email": null, "display_name": "", "account": {"uuid": "050b3e80-6754-11ed-bd59-8d16ffc8abed", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854349}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8e8b46a0-78bc-11ed-aee7-8fcf7f050446", "first_shown_at": "2022-12-10T18:57:55.000000Z", "last_shown_at": "2022-12-10T18:57:55.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:58:02.000000Z", "last_data_reception_at": "2022-12-10T18:58:02.000000Z", "completed_at": "2022-12-10T18:58:25.000000Z", "received_at": "2022-12-10T18:58:25.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Rien \u00e0 dire"}, "contact": {"uuid": "33bcc570-66ec-11ed-af99-d71edc3a4703", "remote_id": "5c8da700-b646-47d3-ad7b-c85e831c978c", "email": null, "display_name": "", "account": {"uuid": "33be0600-66ec-11ed-a843-2b6aa327fd24", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854349}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ecb7b7b0-78bb-11ed-87d3-d903a1d1ee03", "first_shown_at": "2022-12-10T18:53:24.000000Z", "last_shown_at": "2022-12-10T18:53:50.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T18:53:28.000000Z", "last_data_reception_at": "2022-12-10T18:53:28.000000Z", "completed_at": "2022-12-10T18:53:40.000000Z", "received_at": "2022-12-10T18:53:40.000000Z", "dismissed_at": "2022-12-10T18:53:52.000000Z", "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "The service is perfect"}, "contact": {"uuid": "27cfc280-6743-11ed-ab2a-2dcc2d481f87", "remote_id": "8e9e3246-de37-4420-9060-e2c46606ba41", "email": null, "display_name": "", "account": {"uuid": "27d1e150-6743-11ed-ac83-474857855fec", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854349}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8a3281e0-78bb-11ed-8f5f-f34c64a102f8", "first_shown_at": "2022-12-10T18:50:39.000000Z", "last_shown_at": "2022-12-10T18:50:39.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:50:41.000000Z", "last_data_reception_at": "2022-12-10T18:50:41.000000Z", "completed_at": "2022-12-10T18:50:58.000000Z", "received_at": "2022-12-10T18:50:58.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Super bien"}, "contact": {"uuid": "7c210220-6759-11ed-92d6-49244dda7179", "remote_id": "0fe5e64d-8e6d-453b-9c14-030eebe84100", "email": null, "display_name": "", "account": {"uuid": "7c2306e0-6759-11ed-8323-938e99b4e2b3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854350}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "28652470-78bb-11ed-9295-012cf40f37d6", "first_shown_at": "2022-12-10T18:47:55.000000Z", "last_shown_at": "2022-12-10T18:47:55.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:47:58.000000Z", "last_data_reception_at": "2022-12-10T18:47:58.000000Z", "completed_at": "2022-12-10T18:48:15.000000Z", "received_at": "2022-12-10T18:48:15.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Des mission plus precise"}, "contact": {"uuid": "a84e0940-66b9-11ed-af34-4d4b9e5f8752", "remote_id": "b9161291-0147-4b20-92c0-b988f0e9ea94", "email": null, "display_name": "", "account": {"uuid": "a84ff1e0-66b9-11ed-b9f5-8d76e1627dd9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854350}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "be69c370-78ba-11ed-a881-1f3ae77abaf4", "first_shown_at": "2022-12-10T18:44:57.000000Z", "last_shown_at": "2022-12-10T18:44:57.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:44:59.000000Z", "last_data_reception_at": "2022-12-10T18:45:08.000000Z", "completed_at": "2022-12-10T18:45:21.000000Z", "received_at": "2022-12-10T18:45:21.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Il faudrait plus de mission"}, "contact": {"uuid": "ddb0d7a0-6720-11ed-a4ab-ed9d7fc84930", "remote_id": "3f908ac5-3f53-4aea-9d13-cb22330499c5", "email": null, "display_name": "", "account": {"uuid": "ddb30200-6720-11ed-b05b-ab3b90a55e10", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854350}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5effa600-78ba-11ed-977d-9bf3a0408f9c", "first_shown_at": "2022-12-10T18:42:17.000000Z", "last_shown_at": "2022-12-10T18:42:17.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:42:27.000000Z", "last_data_reception_at": "2022-12-10T18:42:27.000000Z", "completed_at": "2022-12-10T18:43:08.000000Z", "received_at": "2022-12-10T18:43:08.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s satisfait"}, "contact": {"uuid": "d58c0f60-66c8-11ed-9979-95d80bf8efe6", "remote_id": "22093ce3-66a8-4c79-b495-904201a28918", "email": null, "display_name": "", "account": {"uuid": "d58dc090-66c8-11ed-9f26-259d0213491a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854350}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3c8351f0-78ba-11ed-8fbe-6717ad7587a6", "first_shown_at": "2022-12-10T18:41:19.000000Z", "last_shown_at": "2022-12-10T18:41:19.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:41:23.000000Z", "last_data_reception_at": "2022-12-10T18:41:23.000000Z", "completed_at": "2022-12-10T18:42:05.000000Z", "received_at": "2022-12-10T18:42:05.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Trouv\u00e9 plus de partenariat et avoir une aide pour l'essence"}, "contact": {"uuid": "cc660da0-66c5-11ed-9b07-dbed31a6791e", "remote_id": "e156cad2-6884-4243-a776-cd742f87327c", "email": null, "display_name": "", "account": {"uuid": "cc674d40-66c5-11ed-9f7e-9900f303631f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854350}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d13c60b0-78b9-11ed-9a13-e3a1e85e0427", "first_shown_at": "2022-12-10T18:38:19.000000Z", "last_shown_at": "2022-12-10T18:38:19.000000Z", "show_counter": 5, "first_data_reception_at": "2022-12-10T18:38:27.000000Z", "last_data_reception_at": "2022-12-10T18:38:33.000000Z", "completed_at": "2022-12-10T18:38:55.000000Z", "received_at": "2022-12-10T18:38:55.000000Z", "dismissed_at": "2022-12-10T18:38:58.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Exellent"}, "contact": {"uuid": "4c4530d0-6811-11ed-8311-b36860b1a175", "remote_id": "a2dcc6cb-7390-456c-955e-5af4a1827668", "email": null, "display_name": "", "account": {"uuid": "4c46e5a0-6811-11ed-bfd1-b1f5202c8995", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854350}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e3f770a0-78b8-11ed-ad9e-5dba6ab8a971", "first_shown_at": "2022-12-10T18:31:41.000000Z", "last_shown_at": "2022-12-10T18:31:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:31:46.000000Z", "last_data_reception_at": "2022-12-10T18:31:46.000000Z", "completed_at": "2022-12-10T18:31:56.000000Z", "received_at": "2022-12-10T18:31:56.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Parfaite"}, "contact": {"uuid": "efc0bd00-66bd-11ed-a169-256eb72f8c0c", "remote_id": "e5f5e4ea-1171-4774-8265-18e2e1e507c3", "email": null, "display_name": "", "account": {"uuid": "efc235e0-66bd-11ed-bb90-d7239a7ab5c8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854351}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b93568d0-78b8-11ed-be6f-b15f3d57d686", "first_shown_at": "2022-12-10T18:30:29.000000Z", "last_shown_at": "2022-12-10T18:30:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:30:37.000000Z", "last_data_reception_at": "2022-12-10T18:30:37.000000Z", "completed_at": "2022-12-10T18:30:57.000000Z", "received_at": "2022-12-10T18:30:57.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Tout depends des missions"}, "contact": {"uuid": "a5b7a640-6736-11ed-b97a-4d0cd6b65b6f", "remote_id": "126af91a-398a-409c-be8e-cd86ac93bc9a", "email": null, "display_name": "", "account": {"uuid": "a5b9bec0-6736-11ed-bc4a-7b28e9270ffe", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854351}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9c5e2930-78b8-11ed-a79e-b5d27c0eaf5d", "first_shown_at": "2022-12-10T18:29:41.000000Z", "last_shown_at": "2022-12-10T18:29:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:29:45.000000Z", "last_data_reception_at": "2022-12-10T18:29:45.000000Z", "completed_at": "2022-12-10T18:29:54.000000Z", "received_at": "2022-12-10T18:29:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "4", "how_could_we_improve_your_experience_with_brigad": "Pas beaucoup de mission"}, "contact": {"uuid": "80ca9720-6714-11ed-96cc-6350c581a605", "remote_id": "07caaa05-025f-40bb-9046-a18b5f2b00da", "email": null, "display_name": "", "account": {"uuid": "80cccdb0-6714-11ed-aace-dd7f2d678710", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854351}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "376920f0-78b8-11ed-8a0d-d151c89da130", "first_shown_at": "2022-12-10T18:26:51.000000Z", "last_shown_at": "2022-12-10T18:26:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:26:54.000000Z", "last_data_reception_at": "2022-12-10T18:26:54.000000Z", "completed_at": "2022-12-10T18:27:08.000000Z", "received_at": "2022-12-10T18:27:08.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Super ! Ne changez rien"}, "contact": {"uuid": "63ffa2f0-671a-11ed-8704-218bc829eeed", "remote_id": "7a1303c8-264b-42d7-bf9e-2e788e850895", "email": null, "display_name": "", "account": {"uuid": "64015ac0-671a-11ed-89c6-937f162b95d5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854351}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1aa6e350-78b8-11ed-af55-67ac91ed6847", "first_shown_at": "2022-12-10T18:26:03.000000Z", "last_shown_at": "2022-12-10T18:26:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:26:06.000000Z", "last_data_reception_at": "2022-12-10T18:26:06.000000Z", "completed_at": "2022-12-10T18:26:24.000000Z", "received_at": "2022-12-10T18:26:24.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Avoir un service relationnel par t\u00e9l\u00e9phone avec Brigad"}, "contact": {"uuid": "113c8120-66d2-11ed-8c8d-b5c21104e029", "remote_id": "f5cc96fd-b882-47ed-ac22-52d973a4d67e", "email": null, "display_name": "", "account": {"uuid": "113e3180-66d2-11ed-b14b-094c05027678", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854352}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ec2f46e0-78b6-11ed-a396-b93bd383f720", "first_shown_at": "2022-12-10T18:17:36.000000Z", "last_shown_at": "2022-12-10T18:17:38.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T18:17:39.000000Z", "last_data_reception_at": "2022-12-10T18:17:39.000000Z", "completed_at": "2022-12-10T18:18:02.000000Z", "received_at": "2022-12-10T18:18:02.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En laissant un peu plus de temps au personne pour accepter des missions :)"}, "contact": {"uuid": "b40c6af0-674a-11ed-9b98-d9ac4fed71cd", "remote_id": "66e0613c-c22b-460b-9b54-05dbde071a66", "email": null, "display_name": "", "account": {"uuid": "b40eeac0-674a-11ed-957d-a39ec4a03a8a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854352}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e84af030-78b6-11ed-80e6-7735c3f553c1", "first_shown_at": "2022-12-10T18:17:29.000000Z", "last_shown_at": "2022-12-10T18:17:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:17:34.000000Z", "last_data_reception_at": "2022-12-10T18:17:34.000000Z", "completed_at": "2022-12-10T18:19:05.000000Z", "received_at": "2022-12-10T18:19:05.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Ability to individually manage shifts booked together in a block"}, "contact": {"uuid": "d43cbd60-66cc-11ed-9c51-1dde07bba03f", "remote_id": "f5bdbee1-a6ef-4ffd-9c9d-8542c7e635c9", "email": null, "display_name": "", "account": {"uuid": "d43e2650-66cc-11ed-861f-6dc7048403ba", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854352}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b0bf4800-78b6-11ed-8c99-f3aeec6e62c3", "first_shown_at": "2022-12-10T18:15:56.000000Z", "last_shown_at": "2022-12-10T18:16:15.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T18:15:58.000000Z", "last_data_reception_at": "2022-12-10T18:15:58.000000Z", "completed_at": "2022-12-10T18:16:11.000000Z", "received_at": "2022-12-10T18:16:11.000000Z", "dismissed_at": "2022-12-10T18:16:17.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s belle exp\u00e9rience !"}, "contact": {"uuid": "42aeb6a0-66c9-11ed-ba8b-610fc3becbcd", "remote_id": "4d108219-91ec-4e19-a4d3-f354b3b7cf3f", "email": null, "display_name": "", "account": {"uuid": "42b0ee20-66c9-11ed-b30a-99683d5ab0d5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854352}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9da13850-78b6-11ed-b8da-7f8235e9fb83", "first_shown_at": "2022-12-10T18:15:24.000000Z", "last_shown_at": "2022-12-10T18:15:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:15:30.000000Z", "last_data_reception_at": "2022-12-10T18:15:30.000000Z", "completed_at": "2022-12-10T18:16:23.000000Z", "received_at": "2022-12-10T18:16:23.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "3", "how_could_we_improve_your_experience_with_brigad": "Les taux horaire.\nEt l\u00e0 visibilit\u00e9 de ce qui est \u00e0 d\u00e9clarer \u00e0 l'URSSAF r\u00e9ellement."}, "contact": {"uuid": "ea2707c0-6716-11ed-a262-c17710f5381d", "remote_id": "9f9ec625-4dbb-44b7-b428-926ec61d4e51", "email": null, "display_name": "", "account": {"uuid": "ea28fef0-6716-11ed-934e-55676bbbce1b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854352}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "664fc7a0-78b6-11ed-a75f-3d3ae53fb99e", "first_shown_at": "2022-12-10T18:13:51.000000Z", "last_shown_at": "2022-12-10T18:13:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:14:01.000000Z", "last_data_reception_at": "2022-12-10T18:14:01.000000Z", "completed_at": "2022-12-10T18:15:27.000000Z", "received_at": "2022-12-10T18:15:27.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En \u00e9largissant les distances de travail et proposer plus dont les nuits \u00e9galement."}, "contact": {"uuid": "f65a8b60-66c6-11ed-867f-61485f5ca3d6", "remote_id": "298fb668-cadf-4d9f-a1bb-6ba0e893e737", "email": null, "display_name": "", "account": {"uuid": "f65c6260-66c6-11ed-98d9-5fb19f47549d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854353}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "54136560-78b5-11ed-9a50-2924db453b93", "first_shown_at": "2022-12-10T18:06:11.000000Z", "last_shown_at": "2022-12-10T18:06:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:06:32.000000Z", "last_data_reception_at": "2022-12-10T18:07:51.000000Z", "completed_at": "2022-12-10T18:09:32.000000Z", "received_at": "2022-12-10T18:09:32.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Moi je pense que vous pouvez faire plus de publicit\u00e9 \u00e0 la t\u00e9l\u00e9 radio pour que vous en a plus de clients apr\u00e8s \u00e7a va c'est pas mauvais vous \u00eates bien moi je pense que c'est le meilleur int\u00e9rim sur Internet c'est"}, "contact": {"uuid": "17178b70-66e9-11ed-b447-8b082578926a", "remote_id": "c1bfc37e-f4ca-449c-805a-f88c0b6fe372", "email": null, "display_name": "", "account": {"uuid": "1719a370-66e9-11ed-83e8-cf721a148e27", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854353}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f95ff750-78b4-11ed-99d3-59d0463ac2e0", "first_shown_at": "2022-12-10T18:03:39.000000Z", "last_shown_at": "2022-12-10T18:03:39.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:03:48.000000Z", "last_data_reception_at": "2022-12-10T18:03:48.000000Z", "completed_at": "2022-12-10T18:04:06.000000Z", "received_at": "2022-12-10T18:04:06.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pour l'instant tout va bien"}, "contact": {"uuid": "7298b450-674d-11ed-8528-8bb57010bdbc", "remote_id": "9d0e7580-45b1-4dc0-9fdb-b8eb5248b932", "email": null, "display_name": "", "account": {"uuid": "729a4500-674d-11ed-aeac-afa98537450b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854353}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e3bafab0-78b4-11ed-9128-eb0993274dfc", "first_shown_at": "2022-12-10T18:03:02.000000Z", "last_shown_at": "2022-12-10T18:03:02.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:03:08.000000Z", "last_data_reception_at": "2022-12-10T18:03:08.000000Z", "completed_at": "2022-12-10T18:04:16.000000Z", "received_at": "2022-12-10T18:04:16.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Payer plus l'heure de travail"}, "contact": {"uuid": "756847f0-6974-11ed-8672-cd956a46dcbb", "remote_id": "974eb2ae-0b13-4345-b857-b25b18397a4d", "email": null, "display_name": "", "account": {"uuid": "756a4da0-6974-11ed-bd2c-df314652ca1e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854353}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b9bea150-78b4-11ed-85e5-838fc36c7909", "first_shown_at": "2022-12-10T18:01:52.000000Z", "last_shown_at": "2022-12-10T18:01:52.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:01:55.000000Z", "last_data_reception_at": "2022-12-10T18:01:55.000000Z", "completed_at": "2022-12-10T18:03:04.000000Z", "received_at": "2022-12-10T18:03:04.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de disponibilit\u00e9 pour accompagner les talents . Plus de personne accessible"}, "contact": {"uuid": "ff708580-66c6-11ed-9dcf-85cc41d738b1", "remote_id": "e9e0ad0d-6af4-49c0-afd8-29c5ed4f5d6f", "email": null, "display_name": "", "account": {"uuid": "ff72a960-66c6-11ed-8365-6db9f1bb29b6", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854353}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "99c300e0-78b4-11ed-93e2-c31f1a399b2c", "first_shown_at": "2022-12-10T18:00:58.000000Z", "last_shown_at": "2022-12-10T18:00:58.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:01:08.000000Z", "last_data_reception_at": "2022-12-10T18:01:08.000000Z", "completed_at": "2022-12-10T18:02:24.000000Z", "received_at": "2022-12-10T18:02:24.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Demander aux \u00e9tablissements une fiche de poste du service pour les infirmiers qui viennent en renfort, afin de suivre le d\u00e9roulement de la journ\u00e9e"}, "contact": {"uuid": "95b454a0-670a-11ed-b0ae-2354c0d53892", "remote_id": "b0b9b7ee-64f0-42f7-b7c5-6d46ec616ad2", "email": null, "display_name": "", "account": {"uuid": "95b645e0-670a-11ed-aaf3-d155b792cd77", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854353}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "86d242b0-78b4-11ed-81da-ab87a6b30b35", "first_shown_at": "2022-12-10T18:00:26.000000Z", "last_shown_at": "2022-12-10T18:00:26.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T18:00:28.000000Z", "last_data_reception_at": "2022-12-10T18:00:28.000000Z", "completed_at": "2022-12-10T18:00:39.000000Z", "received_at": "2022-12-10T18:00:39.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellente"}, "contact": {"uuid": "53ca4ae0-7154-11ed-aa94-cfd71d77bd3f", "remote_id": "578c0cfc-b95f-416e-b628-d5feefe3439c", "email": null, "display_name": "", "account": {"uuid": "53cd8780-7154-11ed-94b0-f3b767e6d777", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854353}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "29561d20-78a8-11ed-9d27-df341909e03b", "first_shown_at": "2022-12-10T16:31:56.000000Z", "last_shown_at": "2022-12-10T16:31:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:58:38.000000Z", "last_data_reception_at": "2022-12-10T17:58:38.000000Z", "completed_at": "2022-12-10T17:58:48.000000Z", "received_at": "2022-12-10T17:58:48.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Life changing"}, "contact": {"uuid": "7be65fc0-6764-11ed-bd9c-951223245b32", "remote_id": "a1ad32ec-ea80-465a-86ed-124514ead381", "email": null, "display_name": "", "account": {"uuid": "7be87350-6764-11ed-b24e-3de63747ca02", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854354}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "12fa7a80-78b4-11ed-b0e0-e9d1d0dda027", "first_shown_at": "2022-12-10T17:57:12.000000Z", "last_shown_at": "2022-12-10T17:57:12.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:57:17.000000Z", "last_data_reception_at": "2022-12-10T17:57:17.000000Z", "completed_at": "2022-12-10T17:58:13.000000Z", "received_at": "2022-12-10T17:58:13.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Is really good already"}, "contact": {"uuid": "d038d370-6848-11ed-885b-dd56a4d9fc7a", "remote_id": "94a828a2-be12-4482-a5c7-95b1ace93c75", "email": null, "display_name": "", "account": {"uuid": "d03a0b20-6848-11ed-811c-ff0f22509c00", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854354}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f89be410-78b3-11ed-be81-95861b147927", "first_shown_at": "2022-12-10T17:56:28.000000Z", "last_shown_at": "2022-12-10T17:56:28.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T17:56:35.000000Z", "last_data_reception_at": "2022-12-10T17:56:43.000000Z", "completed_at": "2022-12-10T18:00:45.000000Z", "received_at": "2022-12-10T18:00:45.000000Z", "dismissed_at": "2022-12-10T17:56:42.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Prendre un peu moins, \u00e7a serait pas mal.\nSinon nikel"}, "contact": {"uuid": "4e0e1180-66be-11ed-8a7f-ed39069ee26e", "remote_id": "e0b3eab7-fb68-4edf-ab6a-1fbfd0bdd01e", "email": null, "display_name": "", "account": {"uuid": "4e1003e0-66be-11ed-85a1-a577ca312f36", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854354}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7cd53180-78b3-11ed-b6d5-b34330f3860f", "first_shown_at": "2022-12-10T17:53:00.000000Z", "last_shown_at": "2022-12-10T17:53:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:53:13.000000Z", "last_data_reception_at": "2022-12-10T17:53:13.000000Z", "completed_at": "2022-12-10T17:54:00.000000Z", "received_at": "2022-12-10T17:54:00.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "C'est est Une L'honneur de travail \u00e0vec vous cher Brigade"}, "contact": {"uuid": "7998c280-6b59-11ed-a515-3dbeb48f32a1", "remote_id": "ccae2292-a766-488d-86d8-eaaa9c745fab", "email": null, "display_name": "", "account": {"uuid": "7999fd90-6b59-11ed-b48e-69f5df1a3815", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854354}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "62551210-78b3-11ed-83a4-2f68507b601b", "first_shown_at": "2022-12-10T17:52:16.000000Z", "last_shown_at": "2022-12-10T17:52:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:52:19.000000Z", "last_data_reception_at": "2022-12-10T17:52:19.000000Z", "completed_at": "2022-12-10T17:56:31.000000Z", "received_at": "2022-12-10T17:56:31.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Respecter les distances et la qualification du poste recherch\u00e9. Simplifier l application pour qu elle soit plus facile \u00e0 utiliser par exemple int\u00e9grer directement \u00e0 l agenda les missions valid\u00e9es , , veiller \u00e0 ce que l application soit toujours acce"}, "contact": {"uuid": "71dfdca0-66e8-11ed-99cc-af3cabb5543c", "remote_id": "847494fd-b156-4e03-83c8-323d3f7f2c16", "email": null, "display_name": "", "account": {"uuid": "71e1de70-66e8-11ed-a415-3744f526614b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854354}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4d0bbae0-78b3-11ed-9224-65db480cf666", "first_shown_at": "2022-12-10T17:51:40.000000Z", "last_shown_at": "2022-12-10T17:51:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:51:47.000000Z", "last_data_reception_at": "2022-12-10T17:51:47.000000Z", "completed_at": "2022-12-10T17:51:54.000000Z", "received_at": "2022-12-10T17:51:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de mission"}, "contact": {"uuid": "72858eb0-6735-11ed-9df4-d1b887a245ce", "remote_id": "2fc86b1f-a18d-43f7-9804-2df262d5ff01", "email": null, "display_name": "", "account": {"uuid": "7286c7f0-6735-11ed-9239-99dd11a9dd73", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854354}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c9f555a0-78b2-11ed-b458-cf841889bc4b", "first_shown_at": "2022-12-10T17:48:00.000000Z", "last_shown_at": "2022-12-10T17:48:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:48:08.000000Z", "last_data_reception_at": "2022-12-10T17:48:08.000000Z", "completed_at": "2022-12-10T17:49:27.000000Z", "received_at": "2022-12-10T17:49:27.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Je demander combien vous prenez pour chaque mission"}, "contact": {"uuid": "68df2f70-66c8-11ed-9351-d93bdec9285e", "remote_id": "8c89b699-5dbe-42b6-a527-2bcea52bca36", "email": null, "display_name": "", "account": {"uuid": "68e11fd0-66c8-11ed-a272-e36ca9245653", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854355}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b7119d20-78b2-11ed-abcd-a7a039ce492f", "first_shown_at": "2022-12-10T17:47:28.000000Z", "last_shown_at": "2022-12-10T17:47:28.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:47:33.000000Z", "last_data_reception_at": "2022-12-10T17:47:33.000000Z", "completed_at": "2022-12-10T17:56:42.000000Z", "received_at": "2022-12-10T17:56:42.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "You are doing fine"}, "contact": {"uuid": "a50db840-672c-11ed-a8bf-df1e97db9c5c", "remote_id": "985253b6-5443-4ae8-ac1a-7e5ae539202e", "email": null, "display_name": "", "account": {"uuid": "a50ffd20-672c-11ed-a95f-93624d13e7dc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854355}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2ec7a9c0-78b2-11ed-ba06-73776bf5df90", "first_shown_at": "2022-12-10T17:43:40.000000Z", "last_shown_at": "2022-12-10T17:43:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:43:44.000000Z", "last_data_reception_at": "2022-12-10T17:43:44.000000Z", "completed_at": "2022-12-10T17:44:13.000000Z", "received_at": "2022-12-10T17:44:13.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Would be nice to have contact with other local brigaders"}, "contact": {"uuid": "c22bd9a0-6721-11ed-b04c-5d2a57794dd2", "remote_id": "aac25414-c752-457d-a1b9-2751881b8bc3", "email": null, "display_name": "", "account": {"uuid": "c22d8780-6721-11ed-9a50-cd9a4a4633ba", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854355}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1bf9dd10-78b2-11ed-9a7f-edc34a4f1dfd", "first_shown_at": "2022-12-10T17:43:08.000000Z", "last_shown_at": "2022-12-10T17:43:08.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:43:13.000000Z", "last_data_reception_at": "2022-12-10T17:43:13.000000Z", "completed_at": "2022-12-10T17:43:59.000000Z", "received_at": "2022-12-10T17:43:59.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Should get more job in area of the registered person"}, "contact": {"uuid": "3a556db0-6737-11ed-9bc4-b135b66b8e15", "remote_id": "538ed87f-744b-47d9-b40d-213b8d4709c0", "email": null, "display_name": "", "account": {"uuid": "3a573860-6737-11ed-865e-e92084204fc0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854355}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a6d08be0-78b1-11ed-b56c-9be1680bc68c", "first_shown_at": "2022-12-10T17:39:52.000000Z", "last_shown_at": "2022-12-10T17:39:52.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:39:59.000000Z", "last_data_reception_at": "2022-12-10T17:39:59.000000Z", "completed_at": "2022-12-10T17:40:55.000000Z", "received_at": "2022-12-10T17:40:55.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pour le moment il ya rien a comment\u00e9"}, "contact": {"uuid": "392b1a80-698c-11ed-a34f-83f057050ff6", "remote_id": "d9438836-966b-4360-9ff8-f48d165e425a", "email": null, "display_name": "", "account": {"uuid": "392d4390-698c-11ed-81a1-815e51cb15cb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854355}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9b12f060-78b1-11ed-bd4b-bf433cbdeb4b", "first_shown_at": "2022-12-10T17:39:32.000000Z", "last_shown_at": "2022-12-10T17:39:32.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:39:39.000000Z", "last_data_reception_at": "2022-12-10T17:39:39.000000Z", "completed_at": "2022-12-10T17:40:20.000000Z", "received_at": "2022-12-10T17:40:20.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de missions"}, "contact": {"uuid": "ee24e5b0-6701-11ed-9b01-c7f5066dd21d", "remote_id": "f0c6a28d-7874-46b7-96f8-fe00b123eb18", "email": null, "display_name": "", "account": {"uuid": "ee2712a0-6701-11ed-885c-85e467da462a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854355}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f3cfd2a0-78b0-11ed-b3b2-a33bdc7ff1b2", "first_shown_at": "2022-12-10T17:34:51.000000Z", "last_shown_at": "2022-12-10T17:34:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:34:59.000000Z", "last_data_reception_at": "2022-12-10T17:34:59.000000Z", "completed_at": "2022-12-10T17:35:17.000000Z", "received_at": "2022-12-10T17:35:17.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Donnez beaucoup de mission surtout"}, "contact": {"uuid": "ae67f1f0-66dd-11ed-bd3e-258c06fa55c6", "remote_id": "1ecc376b-81aa-47c3-9321-8c0c8c9714bb", "email": null, "display_name": "", "account": {"uuid": "ae6997c0-66dd-11ed-8497-c392604be7e7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854355}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e65a7cd0-78b0-11ed-83ed-4543580b9ab6", "first_shown_at": "2022-12-10T17:34:29.000000Z", "last_shown_at": "2022-12-10T17:34:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:34:33.000000Z", "last_data_reception_at": "2022-12-10T17:34:33.000000Z", "completed_at": "2022-12-10T17:35:01.000000Z", "received_at": "2022-12-10T17:35:01.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "En prenant moins de commission sur notre dos..."}, "contact": {"uuid": "4944bb40-66c3-11ed-bb68-87e981f80c0c", "remote_id": "011367bd-930b-4d4b-bcb0-ddface0ba6bf", "email": null, "display_name": "", "account": {"uuid": "4946a530-66c3-11ed-97e5-05b4bab37412", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854356}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "861da180-78b0-11ed-8a89-e5c6d742e48a", "first_shown_at": "2022-12-10T17:31:47.000000Z", "last_shown_at": "2022-12-10T17:31:47.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:31:59.000000Z", "last_data_reception_at": "2022-12-10T17:34:03.000000Z", "completed_at": "2022-12-10T17:39:40.000000Z", "received_at": "2022-12-10T17:39:40.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je suis un peu d\u00e9\u00e7u , parce que je pensais qu\u2019en \u00e9tant super brigadier je serai en priorit\u00e9 pour les missions."}, "contact": {"uuid": "aebfdf90-67f5-11ed-8bcd-8fba6c86fa15", "remote_id": "a77d284f-aabf-4ced-88a4-87835615320a", "email": null, "display_name": "", "account": {"uuid": "aec1db40-67f5-11ed-9e3f-47300876ef65", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854356}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b65b7a00-78b0-11ed-b3da-e70f673d3938", "first_shown_at": "2022-12-10T17:33:08.000000Z", "last_shown_at": "2022-12-10T17:33:08.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:33:12.000000Z", "last_data_reception_at": "2022-12-10T17:33:12.000000Z", "completed_at": "2022-12-10T17:33:40.000000Z", "received_at": "2022-12-10T17:33:40.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Referral procedure"}, "contact": {"uuid": "02a34220-66be-11ed-ae2a-57c679879797", "remote_id": "110dee29-0f3b-4955-a608-6ecd5ca6433f", "email": null, "display_name": "", "account": {"uuid": "02a51ba0-66be-11ed-8d9e-59c4682fdaef", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854356}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "656b9750-78b0-11ed-9f8f-279ecabbcc48", "first_shown_at": "2022-12-10T17:30:52.000000Z", "last_shown_at": "2022-12-10T17:30:52.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:31:08.000000Z", "last_data_reception_at": "2022-12-10T17:31:08.000000Z", "completed_at": "2022-12-10T17:32:32.000000Z", "received_at": "2022-12-10T17:32:32.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "I'm still new to brigade but with more use of the service/app I will have a more detailed option but so far so good"}, "contact": {"uuid": "f1178ae0-74a6-11ed-8db0-6987358dd00d", "remote_id": "4cddaabb-ebff-4248-b3a4-3d51ff24c7cc", "email": null, "display_name": "", "account": {"uuid": "f1198570-74a6-11ed-bc6a-a34ee8e04b4b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854356}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d1d38b30-78ae-11ed-900d-2fd6be3655db", "first_shown_at": "2022-12-10T17:19:35.000000Z", "last_shown_at": "2022-12-10T17:19:35.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:29:01.000000Z", "last_data_reception_at": "2022-12-10T17:29:01.000000Z", "completed_at": "2022-12-10T17:29:32.000000Z", "received_at": "2022-12-10T17:29:32.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je sais pas c est d\u00e9j\u00e0. Super. Bien"}, "contact": {"uuid": "3370d1c0-6741-11ed-857f-798a0b750927", "remote_id": "f4472ed1-b12a-44a8-9cfb-fb6b362dbe50", "email": null, "display_name": "", "account": {"uuid": "337396c0-6741-11ed-a8b9-d5b2d1b42eab", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854356}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e395f280-78af-11ed-a0ac-49a21f781688", "first_shown_at": "2022-12-10T17:27:15.000000Z", "last_shown_at": "2022-12-10T17:27:15.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T17:27:20.000000Z", "last_data_reception_at": "2022-12-10T17:27:20.000000Z", "completed_at": "2022-12-10T17:27:57.000000Z", "received_at": "2022-12-10T17:27:57.000000Z", "dismissed_at": "2022-12-10T17:28:02.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Franchement pour le moment ne changer rien"}, "contact": {"uuid": "026ad1b0-66bc-11ed-991d-4b0acd18a189", "remote_id": "108d17d3-ecc1-400a-bf6a-9618f0cb5341", "email": null, "display_name": "", "account": {"uuid": "026fec10-66bc-11ed-88c5-91bfb0454296", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854356}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e49f28e0-78af-11ed-ada4-3764a9307116", "first_shown_at": "2022-12-10T17:27:16.000000Z", "last_shown_at": "2022-12-10T17:27:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:27:18.000000Z", "last_data_reception_at": "2022-12-10T17:27:18.000000Z", "completed_at": "2022-12-10T17:27:28.000000Z", "received_at": "2022-12-10T17:27:28.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Donnez des primes"}, "contact": {"uuid": "b780ee00-6715-11ed-8bb4-2d24e89921c3", "remote_id": "0817dea4-d385-4469-bacb-d9f9884ef0f6", "email": null, "display_name": "", "account": {"uuid": "b7831180-6715-11ed-ae95-3fa0b22bc1db", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854357}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a8e810e0-78af-11ed-a839-8b0130ff0529", "first_shown_at": "2022-12-10T17:25:36.000000Z", "last_shown_at": "2022-12-10T17:25:36.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T17:25:54.000000Z", "last_data_reception_at": "2022-12-10T17:25:54.000000Z", "completed_at": "2022-12-10T17:26:54.000000Z", "received_at": "2022-12-10T17:26:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "En faisant Une petite formation"}, "contact": {"uuid": "4b0da660-66b8-11ed-858f-bfe53be464e7", "remote_id": "92f43d5a-d315-4435-83f2-37b05c87869a", "email": null, "display_name": "", "account": {"uuid": "4b106560-66b8-11ed-9acd-31030fd78e75", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854357}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "aaa33ff0-78af-11ed-9949-11fd074f83b7", "first_shown_at": "2022-12-10T17:25:39.000000Z", "last_shown_at": "2022-12-10T17:25:39.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:25:51.000000Z", "last_data_reception_at": "2022-12-10T17:25:51.000000Z", "completed_at": "2022-12-10T17:28:27.000000Z", "received_at": "2022-12-10T17:28:27.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Je trouve que la com r\u00e9alis\u00e9 sur les facture et un peu \u00e9lev\u00e9 ... Surtout que nous devons d\u00e9clar\u00e9 le montant brut hors com.\nOn est plus autonome mais employer par brigade. Cela dis c'est un bon moyen de se faire conna\u00eetre et agrandir notre reseau, m"}, "contact": {"uuid": "e9558480-66f7-11ed-b71c-c5030fa383cd", "remote_id": "ea391ed3-5af0-4527-bdf6-a9dcf98392bb", "email": null, "display_name": "", "account": {"uuid": "e957c670-66f7-11ed-9a5e-9bda80dee719", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854357}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "419189e0-78af-11ed-9fa6-4ddb45020be6", "first_shown_at": "2022-12-10T17:22:43.000000Z", "last_shown_at": "2022-12-10T17:22:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:22:49.000000Z", "last_data_reception_at": "2022-12-10T17:22:49.000000Z", "completed_at": "2022-12-10T17:23:24.000000Z", "received_at": "2022-12-10T17:23:24.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Meilleur application pour travail"}, "contact": {"uuid": "e8c40f60-66d9-11ed-be5e-57d7c3d40536", "remote_id": "60b12d0a-5638-4562-a46d-176f66b04d4c", "email": null, "display_name": "", "account": {"uuid": "e8c594e0-66d9-11ed-9b35-b3e1223b920e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854357}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "26189eb0-78af-11ed-a7c4-75932b15103b", "first_shown_at": "2022-12-10T17:21:57.000000Z", "last_shown_at": "2022-12-10T17:21:57.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:22:00.000000Z", "last_data_reception_at": "2022-12-10T17:22:00.000000Z", "completed_at": "2022-12-10T17:23:25.000000Z", "received_at": "2022-12-10T17:23:25.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de missions car oui il y la quelques missions et se n\u2019ai pas suffit je trouve"}, "contact": {"uuid": "959d4020-6861-11ed-ac5f-5b002d3d29f6", "remote_id": "655f71f6-ea73-4056-b663-087e8c75edfc", "email": null, "display_name": "", "account": {"uuid": "959f3510-6861-11ed-b8fb-b75be65d9511", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854357}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8861bce0-78ae-11ed-8048-b30b6f92e78b", "first_shown_at": "2022-12-10T17:17:32.000000Z", "last_shown_at": "2022-12-10T17:17:32.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:17:37.000000Z", "last_data_reception_at": "2022-12-10T17:17:37.000000Z", "completed_at": "2022-12-10T17:18:27.000000Z", "received_at": "2022-12-10T17:18:27.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Diff\u00e9rencier plusieurs missions sur plusieurs d\u00e9partements"}, "contact": {"uuid": "431d00e0-66c2-11ed-ac69-a587bfd86e7f", "remote_id": "e9057e83-c536-4638-bac6-6fe33a780b50", "email": null, "display_name": "", "account": {"uuid": "431efad0-66c2-11ed-a2dc-356be074b238", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854357}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "72a6cfa0-78ae-11ed-b602-396e866d364e", "first_shown_at": "2022-12-10T17:16:56.000000Z", "last_shown_at": "2022-12-10T17:16:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:17:00.000000Z", "last_data_reception_at": "2022-12-10T17:17:00.000000Z", "completed_at": "2022-12-10T17:19:03.000000Z", "received_at": "2022-12-10T17:19:03.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Maintenant l\u2019application est devenu trop lent. Quand vous recevez une notification pour une mission, vous faites minimum 30 secondes pour pouvoir acc\u00e9der \u00e0 la mission car l\u2019application fait toujours des mises \u00e0 jours et \u00e7a fait que les missions so"}, "contact": {"uuid": "f5a040f0-6766-11ed-9f4b-77ca7fd9cf31", "remote_id": "30ea476c-24f9-41b1-baae-014eb0971ed9", "email": null, "display_name": "", "account": {"uuid": "f5a24bb0-6766-11ed-b93b-290271706e0e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854357}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e9df05f0-78ad-11ed-ab0c-aff208fb8741", "first_shown_at": "2022-12-10T17:13:06.000000Z", "last_shown_at": "2022-12-10T17:13:06.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:13:13.000000Z", "last_data_reception_at": "2022-12-10T17:13:13.000000Z", "completed_at": "2022-12-10T17:13:48.000000Z", "received_at": "2022-12-10T17:13:48.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Je pense que les missions ne sont pas assez bien r\u00e9mun\u00e9r\u00e9"}, "contact": {"uuid": "60d49a20-68ba-11ed-b4c3-df1f9e28fc13", "remote_id": "7334a6bb-e790-47d1-accf-30382135380e", "email": null, "display_name": "", "account": {"uuid": "60d5f280-68ba-11ed-8240-5dcf7e0df3a8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions", "Have accepted propositions"]}, "emitted_at": 1670944854358}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7f1d8250-78ad-11ed-aeb7-a957def6fa1c", "first_shown_at": "2022-12-10T17:10:07.000000Z", "last_shown_at": "2022-12-10T17:10:07.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:10:22.000000Z", "last_data_reception_at": "2022-12-10T17:10:22.000000Z", "completed_at": "2022-12-10T17:15:04.000000Z", "received_at": "2022-12-10T17:15:04.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Have an instant chat messaging and/ or phone service. Increased pay for Sous, Head Chefs and Exectuive Chefs, current remuneration sends a very bad message to veterans. Have a Masterclass every 6 months with a chef. Best, David Mastercheflille@gmail.com"}, "contact": {"uuid": "d8e3a930-68c5-11ed-bf97-ab875a56546b", "remote_id": "f699c223-70e7-4530-8281-3898e9af8684", "email": null, "display_name": "", "account": {"uuid": "d8e54d50-68c5-11ed-bb78-0b2d2c007e17", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854358}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7c30d480-78ad-11ed-9d8f-81177f8bde38", "first_shown_at": "2022-12-10T17:10:02.000000Z", "last_shown_at": "2022-12-10T17:10:02.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:10:05.000000Z", "last_data_reception_at": "2022-12-10T17:10:05.000000Z", "completed_at": "2022-12-10T17:10:34.000000Z", "received_at": "2022-12-10T17:10:34.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pas de commentaire"}, "contact": {"uuid": "aaf7e190-66c0-11ed-acc3-fb2e0a86dc55", "remote_id": "47952ee3-2aa1-4152-9962-ef92f2e7b79c", "email": null, "display_name": "", "account": {"uuid": "aafa1d80-66c0-11ed-a7db-055f2bd26feb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854358}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5c2a58d0-78ad-11ed-bcc7-cba24e9937db", "first_shown_at": "2022-12-10T17:09:08.000000Z", "last_shown_at": "2022-12-10T17:09:09.000000Z", "show_counter": 4, "first_data_reception_at": "2022-12-10T17:09:20.000000Z", "last_data_reception_at": "2022-12-10T17:09:44.000000Z", "completed_at": "2022-12-10T17:09:40.000000Z", "received_at": "2022-12-10T17:09:40.000000Z", "dismissed_at": "2022-12-10T17:09:45.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tout va bien"}, "contact": {"uuid": "9026c2a0-6721-11ed-8c15-6167c00ea4d0", "remote_id": "1d8b513f-a44e-4ed7-aaf0-207c3e626d99", "email": null, "display_name": "", "account": {"uuid": "90286b00-6721-11ed-a6d7-e77e8e2443c5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854358}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "643bd050-78ad-11ed-a030-cd518806abdd", "first_shown_at": "2022-12-10T17:09:22.000000Z", "last_shown_at": "2022-12-10T17:09:22.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:09:29.000000Z", "last_data_reception_at": "2022-12-10T17:09:29.000000Z", "completed_at": "2022-12-10T17:11:03.000000Z", "received_at": "2022-12-10T17:11:03.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "En d\u00e9veloppant l\u2019application avec des fonctionnalit\u00e9s plus fluide comme vous envoyer des pi\u00e8ces jointes via l\u2019application par exemple"}, "contact": {"uuid": "86f61bc0-670b-11ed-b3cb-4f3d411775c2", "remote_id": "2771a808-731b-4a1c-913d-4f576cdb8745", "email": null, "display_name": "", "account": {"uuid": "86f80530-670b-11ed-86f6-9d966862036d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854358}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "59f4f550-78ad-11ed-b52b-9b1db0e47622", "first_shown_at": "2022-12-10T17:09:05.000000Z", "last_shown_at": "2022-12-10T17:09:05.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:09:09.000000Z", "last_data_reception_at": "2022-12-10T17:09:09.000000Z", "completed_at": "2022-12-10T17:09:56.000000Z", "received_at": "2022-12-10T17:09:56.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En m'envoyant des missions haut de gamme"}, "contact": {"uuid": "00d72340-66c9-11ed-92f2-e515edf7c0dc", "remote_id": "a4f8679f-580d-408d-9a5d-7b3ff5b7874a", "email": null, "display_name": "", "account": {"uuid": "00d92ac0-66c9-11ed-b86c-a98431c120be", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854359}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "53d15e90-78ad-11ed-ac47-6fccb65d8449", "first_shown_at": "2022-12-10T17:08:54.000000Z", "last_shown_at": "2022-12-10T17:08:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:09:00.000000Z", "last_data_reception_at": "2022-12-10T17:09:00.000000Z", "completed_at": "2022-12-10T17:09:22.000000Z", "received_at": "2022-12-10T17:09:22.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Brigade c\u2019est bien"}, "contact": {"uuid": "59c65080-6732-11ed-98f2-717ffde7b125", "remote_id": "c028629b-1bc0-4a0b-a5bd-e22016ca46d2", "email": null, "display_name": "", "account": {"uuid": "59c81f80-6732-11ed-8937-9fe321f8ff76", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854359}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "20d0cc10-78ad-11ed-8a83-0f91756b3d68", "first_shown_at": "2022-12-10T17:07:29.000000Z", "last_shown_at": "2022-12-10T17:07:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:07:36.000000Z", "last_data_reception_at": "2022-12-10T17:07:36.000000Z", "completed_at": "2022-12-10T17:09:57.000000Z", "received_at": "2022-12-10T17:09:57.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "very good I have feeling to work for my self I can choose the place and time I would like to work\nreally happy to work with Brigad"}, "contact": {"uuid": "2af90140-7110-11ed-b33e-67be370f1bb4", "remote_id": "b9260639-7c0c-43ba-badf-782145e49b7a", "email": null, "display_name": "", "account": {"uuid": "2afb10a0-7110-11ed-9726-85db610407b8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854359}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1cb1ee20-78ad-11ed-b685-df6b886107c4", "first_shown_at": "2022-12-10T17:07:22.000000Z", "last_shown_at": "2022-12-10T17:07:22.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:07:28.000000Z", "last_data_reception_at": "2022-12-10T17:07:28.000000Z", "completed_at": "2022-12-10T17:07:54.000000Z", "received_at": "2022-12-10T17:07:54.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Am very happy with service thank you"}, "contact": {"uuid": "c48a4ec0-66c0-11ed-bbed-472755bc02a2", "remote_id": "a99244ae-17d8-4a9b-b812-42cce06fe08c", "email": null, "display_name": "", "account": {"uuid": "c48b6fe0-66c0-11ed-9e66-ed40a219060f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854359}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1d3ae770-78ad-11ed-a019-89ee1972e042", "first_shown_at": "2022-12-10T17:07:23.000000Z", "last_shown_at": "2022-12-10T17:07:23.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:07:26.000000Z", "last_data_reception_at": "2022-12-10T17:07:26.000000Z", "completed_at": "2022-12-10T17:07:39.000000Z", "received_at": "2022-12-10T17:07:39.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Avoir plus de mission"}, "contact": {"uuid": "d6f74b00-66ce-11ed-9aab-c30e3eef0f3a", "remote_id": "d9e7154d-da0c-4a44-9fa7-ac88c7cc22bd", "email": null, "display_name": "", "account": {"uuid": "d6f94490-66ce-11ed-b2df-2146d3b74837", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854359}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "15514a70-78ad-11ed-b7d7-e5fa836f8b4c", "first_shown_at": "2022-12-10T17:07:10.000000Z", "last_shown_at": "2022-12-10T17:07:10.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:07:22.000000Z", "last_data_reception_at": "2022-12-10T17:07:22.000000Z", "completed_at": "2022-12-10T17:07:49.000000Z", "received_at": "2022-12-10T17:07:49.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Le probl\u00e8me de l\u2019application parce que des fois l\u2019application elle d\u00e9conne un peu voil\u00e0"}, "contact": {"uuid": "31f6a120-66bd-11ed-8cef-a7f12acc4162", "remote_id": "7596ea76-66f5-4779-b99e-c6ae65dae4cc", "email": null, "display_name": "", "account": {"uuid": "31f8f280-66bd-11ed-9e9e-63b0941c079e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854359}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "17f549c0-78ad-11ed-8783-8b9aa252206f", "first_shown_at": "2022-12-10T17:07:14.000000Z", "last_shown_at": "2022-12-10T17:07:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:07:19.000000Z", "last_data_reception_at": "2022-12-10T17:07:19.000000Z", "completed_at": "2022-12-10T17:07:27.000000Z", "received_at": "2022-12-10T17:07:27.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Very good"}, "contact": {"uuid": "94685400-670c-11ed-a361-a1b4f2a9ec2e", "remote_id": "b5893d3d-c89d-45eb-a0c8-cb430733bc9c", "email": null, "display_name": "", "account": {"uuid": "946a7750-670c-11ed-acd5-31c79f2f6bc9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854359}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d6a17250-78ac-11ed-b408-636a0915c1c3", "first_shown_at": "2022-12-10T17:05:24.000000Z", "last_shown_at": "2022-12-10T17:05:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:05:42.000000Z", "last_data_reception_at": "2022-12-10T17:05:42.000000Z", "completed_at": "2022-12-10T17:06:15.000000Z", "received_at": "2022-12-10T17:06:15.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Toujours avoir des missions"}, "contact": {"uuid": "750aba50-6d64-11ed-8af2-e77dab403c49", "remote_id": "c544c5ab-ba53-4f20-a0f4-19f82361517c", "email": null, "display_name": "", "account": {"uuid": "750cff30-6d64-11ed-bead-89f3bd82f2f6", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854360}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d678fec0-78ac-11ed-8b7c-1748abf4d605", "first_shown_at": "2022-12-10T17:05:24.000000Z", "last_shown_at": "2022-12-10T17:05:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:05:28.000000Z", "last_data_reception_at": "2022-12-10T17:05:28.000000Z", "completed_at": "2022-12-10T17:05:54.000000Z", "received_at": "2022-12-10T17:05:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Proposer des missions avec plus d\u2019heure"}, "contact": {"uuid": "d3736e70-7183-11ed-bcf5-579d4e90bb2d", "remote_id": "a86a90a8-2c0a-4156-aa0f-5cd41b9f36fb", "email": null, "display_name": "", "account": {"uuid": "d3756230-7183-11ed-9c0f-e784ad7b1868", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854360}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "791caf50-78ac-11ed-9172-bd06f8ee96db", "first_shown_at": "2022-12-10T17:02:48.000000Z", "last_shown_at": "2022-12-10T17:04:10.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T17:03:13.000000Z", "last_data_reception_at": "2022-12-10T17:03:13.000000Z", "completed_at": "2022-12-10T17:03:57.000000Z", "received_at": "2022-12-10T17:03:57.000000Z", "dismissed_at": "2022-12-10T17:04:12.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "En envoyant plus de mission pour pouvoir un plus gros salaire"}, "contact": {"uuid": "a339e9a0-677a-11ed-b580-c3f073fd07c0", "remote_id": "19f72257-96bf-45a5-8c00-105f5fcf58f6", "email": null, "display_name": "", "account": {"uuid": "a33b2890-677a-11ed-9e09-211b9c2d1bf3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854360}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7b28e5d0-78ac-11ed-8b32-2bcf823d5082", "first_shown_at": "2022-12-10T17:02:51.000000Z", "last_shown_at": "2022-12-10T17:02:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:02:55.000000Z", "last_data_reception_at": "2022-12-10T17:03:02.000000Z", "completed_at": "2022-12-10T17:03:26.000000Z", "received_at": "2022-12-10T17:03:26.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En me proposant beaucoup de mission"}, "contact": {"uuid": "7cc33170-6999-11ed-a48d-2fa822cabf80", "remote_id": "03a6fcec-3896-4a36-bc9b-4fb59aa667dc", "email": null, "display_name": "", "account": {"uuid": "7cc54510-6999-11ed-b5a5-2deb09b89f2a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854360}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "672743c0-78ac-11ed-bd9f-eb2dbe04990f", "first_shown_at": "2022-12-10T17:02:17.000000Z", "last_shown_at": "2022-12-10T17:02:17.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:02:49.000000Z", "last_data_reception_at": "2022-12-10T17:02:49.000000Z", "completed_at": "2022-12-10T17:10:19.000000Z", "received_at": "2022-12-10T17:10:19.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Je remplirai bient\u00f4t mon profil. J'aime mon m\u00e9tier.\nJe vous r\u00e9pondrai plus tard. Merci"}, "contact": {"uuid": "78d9d550-6717-11ed-9edc-f1fcada6fd5c", "remote_id": "e830656d-9799-44d8-a488-2ffbaccb1c91", "email": null, "display_name": "", "account": {"uuid": "78db4ca0-6717-11ed-af6f-0de3b4d4dc65", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854360}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "63a4d210-78ac-11ed-8d30-dd3c7ee4d7bb", "first_shown_at": "2022-12-10T17:02:11.000000Z", "last_shown_at": "2022-12-10T17:02:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:02:42.000000Z", "last_data_reception_at": "2022-12-10T17:02:42.000000Z", "completed_at": "2022-12-10T17:05:07.000000Z", "received_at": "2022-12-10T17:05:07.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Yes please specially more shifts for sous chef and head chef / better environment pubs and restaurants"}, "contact": {"uuid": "343ecb60-66be-11ed-94e7-475234ac3244", "remote_id": "eb3ea20e-1c24-4fc3-8f3e-3bd7d06a495a", "email": null, "display_name": "", "account": {"uuid": "3440d820-66be-11ed-8877-a5cb95eb05b9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854360}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "68b8e3d0-78ac-11ed-8b24-8f6bcbf81394", "first_shown_at": "2022-12-10T17:02:20.000000Z", "last_shown_at": "2022-12-10T17:02:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:02:40.000000Z", "last_data_reception_at": "2022-12-10T17:02:40.000000Z", "completed_at": "2022-12-10T17:05:45.000000Z", "received_at": "2022-12-10T17:05:45.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "J suis 100% satisfait sur brigade car le travail me pla\u00eet beaucoup j'appr\u00e9cie beaucoup et j souhaite de continuer travail sur brigade surtout ya pas d'arnaque c'est raison la qu'elle je fais tout pour gagner la confiance"}, "contact": {"uuid": "fcace080-66bc-11ed-bdff-05270b89545f", "remote_id": "1882ce5a-ac1a-445a-9c0e-54bfcb09ddf8", "email": null, "display_name": "", "account": {"uuid": "fcaee6a0-66bc-11ed-b801-f16fbe813102", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854361}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6afd6660-78ac-11ed-95f8-9f0b781104fd", "first_shown_at": "2022-12-10T17:02:24.000000Z", "last_shown_at": "2022-12-10T17:02:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:02:28.000000Z", "last_data_reception_at": "2022-12-10T17:02:28.000000Z", "completed_at": "2022-12-10T17:02:38.000000Z", "received_at": "2022-12-10T17:02:38.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "C\u2019est parfait"}, "contact": {"uuid": "b7ccd9b0-6735-11ed-a3e9-e1afda08922e", "remote_id": "897028af-ed0c-4276-8971-aad64f30c383", "email": null, "display_name": "", "account": {"uuid": "b7ceed10-6735-11ed-b7af-5153c169416e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854361}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "620a4270-78ac-11ed-9ac6-c345b79dbc7a", "first_shown_at": "2022-12-10T17:02:09.000000Z", "last_shown_at": "2022-12-10T17:02:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T17:02:19.000000Z", "last_data_reception_at": "2022-12-10T17:02:19.000000Z", "completed_at": "2022-12-10T17:03:10.000000Z", "received_at": "2022-12-10T17:03:10.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En m'envoyant plus de missions de toute la journ\u00e9e"}, "contact": {"uuid": "b6e627c0-66bc-11ed-b3fc-d3c78ac64d07", "remote_id": "5a698ca4-f73f-4a80-811d-2350ada28513", "email": null, "display_name": "", "account": {"uuid": "b6e7bdd0-66bc-11ed-afa2-6904daa33b4d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854361}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f6c72880-78ab-11ed-861f-5bbb9ff08f67", "first_shown_at": "2022-12-10T16:59:09.000000Z", "last_shown_at": "2022-12-10T16:59:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:59:24.000000Z", "last_data_reception_at": "2022-12-10T16:59:24.000000Z", "completed_at": "2022-12-10T17:00:23.000000Z", "received_at": "2022-12-10T17:00:23.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Brigade est excellent.je lui donner un note 10/10"}, "contact": {"uuid": "cd086ed0-6c2f-11ed-860a-9b912ab01413", "remote_id": "649d6fdd-313f-4e1a-be6b-70ed25e48077", "email": null, "display_name": "", "account": {"uuid": "cd0a9c90-6c2f-11ed-a599-f30cf5218f4a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854361}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9c8ab750-78ab-11ed-9fd7-3d3508a1bb44", "first_shown_at": "2022-12-10T16:56:37.000000Z", "last_shown_at": "2022-12-10T16:56:37.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:56:41.000000Z", "last_data_reception_at": "2022-12-10T16:56:41.000000Z", "completed_at": "2022-12-10T16:57:33.000000Z", "received_at": "2022-12-10T16:57:33.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Aide au logement des brigaders serait un plus sinon je recommande fortement merci \ud83d\ude4f"}, "contact": {"uuid": "857d78a0-66ba-11ed-b2f1-d3943bb1cf09", "remote_id": "483a8ba4-8afb-4825-8068-8a4bf68967c7", "email": null, "display_name": "", "account": {"uuid": "857fc3e0-66ba-11ed-914d-558c7f09c141", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854361}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "52dfedd0-78ab-11ed-9f99-ef746644e6a8", "first_shown_at": "2022-12-10T16:54:34.000000Z", "last_shown_at": "2022-12-10T16:54:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:54:37.000000Z", "last_data_reception_at": "2022-12-10T16:54:37.000000Z", "completed_at": "2022-12-10T16:54:53.000000Z", "received_at": "2022-12-10T16:54:53.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pay more"}, "contact": {"uuid": "48a43000-6b91-11ed-8897-59afe9b1ea86", "remote_id": "c9975a94-f35c-4a32-b820-587c0ef482cc", "email": null, "display_name": "", "account": {"uuid": "48a69da0-6b91-11ed-9fc6-13118def187a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854361}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1723c010-78ab-11ed-8b2a-cf4f1f8c4048", "first_shown_at": "2022-12-10T16:52:54.000000Z", "last_shown_at": "2022-12-10T16:52:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:52:57.000000Z", "last_data_reception_at": "2022-12-10T16:52:57.000000Z", "completed_at": "2022-12-10T16:53:34.000000Z", "received_at": "2022-12-10T16:53:34.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "3", "how_could_we_improve_your_experience_with_brigad": "Arr\u00eater de prendre de grosse commission sur les brigadiers !comme Onestaff \u2026"}, "contact": {"uuid": "a826ccd0-6739-11ed-aa79-f3f9df5770a5", "remote_id": "0d8d2069-0235-4fc8-9c32-41130238ef58", "email": null, "display_name": "", "account": {"uuid": "a8290f60-6739-11ed-9060-dfa34231e6a6", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854362}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e6cb8ea0-78aa-11ed-b32c-9392f16e2d10", "first_shown_at": "2022-12-10T16:51:33.000000Z", "last_shown_at": "2022-12-10T16:51:33.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:51:35.000000Z", "last_data_reception_at": "2022-12-10T16:51:35.000000Z", "completed_at": "2022-12-10T16:51:55.000000Z", "received_at": "2022-12-10T16:51:55.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "La dur\u00e9e de trajet"}, "contact": {"uuid": "9d88f8a0-671c-11ed-9aa1-dd48b11b2b3f", "remote_id": "4eb4a063-f316-4952-afe0-8741b4737f51", "email": null, "display_name": "", "account": {"uuid": "9d8b6490-671c-11ed-9bc2-23d16b0c0723", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854362}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a51180f0-78aa-11ed-97da-bf2aa09149b1", "first_shown_at": "2022-12-10T16:49:42.000000Z", "last_shown_at": "2022-12-10T16:49:42.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:49:49.000000Z", "last_data_reception_at": "2022-12-10T16:49:49.000000Z", "completed_at": "2022-12-10T16:50:13.000000Z", "received_at": "2022-12-10T16:50:13.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellent"}, "contact": {"uuid": "c20e9180-670e-11ed-bd4d-85faae5872ec", "remote_id": "fc26dea8-475c-4c27-af3d-2bf8428e25f1", "email": null, "display_name": "", "account": {"uuid": "c2105b80-670e-11ed-9719-2359c8f2f5c7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854362}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9b328c10-78aa-11ed-af0a-05fce6806ed1", "first_shown_at": "2022-12-10T16:49:26.000000Z", "last_shown_at": "2022-12-10T16:49:26.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:49:49.000000Z", "last_data_reception_at": "2022-12-10T16:49:49.000000Z", "completed_at": "2022-12-10T16:51:42.000000Z", "received_at": "2022-12-10T16:51:42.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Augmentation des prix de prestations, prendre compte de la situation d'une mission accept\u00e9e par un talent qui veut annuler parce que le restaurateur en demande trop et des primes de fin d'ann\u00e9e pour les super talent"}, "contact": {"uuid": "aa27f600-674b-11ed-a881-fdf414ce3011", "remote_id": "f0ce13ee-c21d-4d19-8636-9b8a41180faa", "email": null, "display_name": "", "account": {"uuid": "aa29d060-674b-11ed-bcfd-05be335b0ff0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854362}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9c50bec0-78aa-11ed-b977-4929c1b8708d", "first_shown_at": "2022-12-10T16:49:28.000000Z", "last_shown_at": "2022-12-10T16:49:28.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:49:35.000000Z", "last_data_reception_at": "2022-12-10T16:49:44.000000Z", "completed_at": "2022-12-10T16:50:53.000000Z", "received_at": "2022-12-10T16:50:53.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Missions mieux pay\u00e9"}, "contact": {"uuid": "da0b0980-66c5-11ed-ad88-3381b041efdd", "remote_id": "21d8d21e-937a-4752-a21b-2a15d5b62d56", "email": null, "display_name": "", "account": {"uuid": "da0d40a0-66c5-11ed-9967-e1d93ba6d6df", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854363}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "20ea7ce0-78aa-11ed-85aa-b311d5d1fd0a", "first_shown_at": "2022-12-10T16:46:01.000000Z", "last_shown_at": "2022-12-10T16:46:01.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:46:06.000000Z", "last_data_reception_at": "2022-12-10T16:46:06.000000Z", "completed_at": "2022-12-10T16:46:19.000000Z", "received_at": "2022-12-10T16:46:19.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s bien"}, "contact": {"uuid": "a3fe62c0-66bb-11ed-bb15-97af0e500fe9", "remote_id": "fdf99c2d-869b-4a73-9c1d-d4f28778b5fc", "email": null, "display_name": "", "account": {"uuid": "a4004eb0-66bb-11ed-9883-69aba87c91dc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854363}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0023a7c0-78aa-11ed-940b-cd3f4759d3ba", "first_shown_at": "2022-12-10T16:45:06.000000Z", "last_shown_at": "2022-12-10T16:45:06.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:45:08.000000Z", "last_data_reception_at": "2022-12-10T16:45:08.000000Z", "completed_at": "2022-12-10T16:45:28.000000Z", "received_at": "2022-12-10T16:45:28.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Payer un peu plus pour les infirmiers lib\u00e9raux"}, "contact": {"uuid": "e2838630-67f0-11ed-a63e-81edbfd83d41", "remote_id": "65fc8cb2-80ff-427b-8cf4-e3af47489f85", "email": null, "display_name": "", "account": {"uuid": "e284a840-67f0-11ed-8dda-2d04f0769b3f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854363}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d4e84f90-78a9-11ed-a756-775eb1d7a7b6", "first_shown_at": "2022-12-10T16:43:53.000000Z", "last_shown_at": "2022-12-10T16:43:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:44:00.000000Z", "last_data_reception_at": "2022-12-10T16:44:00.000000Z", "completed_at": "2022-12-10T16:44:11.000000Z", "received_at": "2022-12-10T16:44:11.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Superbe"}, "contact": {"uuid": "804f4970-6724-11ed-8b15-a3388bf9e888", "remote_id": "000b291e-a419-47db-8699-4ab443b51569", "email": null, "display_name": "", "account": {"uuid": "80515f50-6724-11ed-9368-3b248d20554b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854363}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d4da4390-78a9-11ed-a986-2b665d5ab9a4", "first_shown_at": "2022-12-10T16:43:53.000000Z", "last_shown_at": "2022-12-10T16:43:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:43:59.000000Z", "last_data_reception_at": "2022-12-10T16:43:59.000000Z", "completed_at": "2022-12-10T16:44:19.000000Z", "received_at": "2022-12-10T16:44:19.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Day time missions"}, "contact": {"uuid": "ce396840-6753-11ed-9a28-7b466fe0004d", "remote_id": "d340e59b-4a5d-47c4-9239-0eba561eb8be", "email": null, "display_name": "", "account": {"uuid": "ce3b15e0-6753-11ed-b1f8-a51b0249769d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854363}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "bf98b960-78a9-11ed-a45e-f935cf366b6e", "first_shown_at": "2022-12-10T16:43:17.000000Z", "last_shown_at": "2022-12-10T16:43:17.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:43:26.000000Z", "last_data_reception_at": "2022-12-10T16:43:26.000000Z", "completed_at": "2022-12-10T16:44:36.000000Z", "received_at": "2022-12-10T16:44:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Juste si vous pouvez svp ne plus m'envoyer les missions cuisine car je n'ai plus mes chaussures de s\u00e9curit\u00e9 sinon c'est tout parfait merci bcp"}, "contact": {"uuid": "e49f2fa0-6721-11ed-9cf4-3164e65f6a4f", "remote_id": "29ffa7e4-a9ca-42fe-b0af-7d7bea1c432e", "email": null, "display_name": "", "account": {"uuid": "e4a12050-6721-11ed-a0bc-f13b3a7c180b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854363}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b4a86440-78a9-11ed-9109-47fd442b8ae0", "first_shown_at": "2022-12-10T16:42:59.000000Z", "last_shown_at": "2022-12-10T16:42:59.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:43:11.000000Z", "last_data_reception_at": "2022-12-10T16:43:11.000000Z", "completed_at": "2022-12-10T16:43:41.000000Z", "received_at": "2022-12-10T16:43:41.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Plus \u00e0 l'\u00e9coute des brigadiers"}, "contact": {"uuid": "ee2761e0-68fa-11ed-904a-cf49221d0ad1", "remote_id": "fe29864f-b131-440b-957c-6163a3e1f4d8", "email": null, "display_name": "", "account": {"uuid": "ee298250-68fa-11ed-8ad2-97c1c158e8dd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854364}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "bc14a890-78a8-11ed-a94b-af3d970f8cdf", "first_shown_at": "2022-12-10T16:36:02.000000Z", "last_shown_at": "2022-12-10T16:36:02.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:36:05.000000Z", "last_data_reception_at": "2022-12-10T16:36:05.000000Z", "completed_at": "2022-12-10T16:36:48.000000Z", "received_at": "2022-12-10T16:36:48.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "C\u2019est d\u00e9j\u00e0 bien fait"}, "contact": {"uuid": "ef75ad40-670b-11ed-91cf-81dcd349c4da", "remote_id": "4e935534-30c6-43cf-80be-d5d2430b78a4", "email": null, "display_name": "", "account": {"uuid": "ef77e320-670b-11ed-beb0-57fe52fff7b2", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854364}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b536c240-78a8-11ed-9b9b-7de7744fdc0b", "first_shown_at": "2022-12-10T16:35:50.000000Z", "last_shown_at": "2022-12-10T16:35:50.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:35:55.000000Z", "last_data_reception_at": "2022-12-10T16:35:55.000000Z", "completed_at": "2022-12-10T16:36:49.000000Z", "received_at": "2022-12-10T16:36:49.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Brigad \u2764\ufe0f"}, "contact": {"uuid": "d9f5c9f0-6b24-11ed-8b7f-7bb8ecac371b", "remote_id": "89623db0-790f-4e41-84ce-075cd85c90b5", "email": null, "display_name": "", "account": {"uuid": "d9f71580-6b24-11ed-876a-fb76a5298cd4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854364}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "57bb0e80-78a8-11ed-8cf3-3d35f1e0de1e", "first_shown_at": "2022-12-10T16:33:14.000000Z", "last_shown_at": "2022-12-10T16:33:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:33:57.000000Z", "last_data_reception_at": "2022-12-10T16:33:57.000000Z", "completed_at": "2022-12-10T16:35:40.000000Z", "received_at": "2022-12-10T16:35:40.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Generally good, but your absence policies should be reconsidered. Being asked to provide evidence of sickness not always makes sense. I would understand if it was when absences are constant"}, "contact": {"uuid": "331ad950-6798-11ed-9393-716c6c82a229", "remote_id": "036d02d5-71b7-487c-b415-8191902b8eb6", "email": null, "display_name": "", "account": {"uuid": "331cca40-6798-11ed-bbd7-71dece92dc31", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854364}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6417c160-78a8-11ed-96be-b92c5dadeffa", "first_shown_at": "2022-12-10T16:33:34.000000Z", "last_shown_at": "2022-12-10T16:33:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:33:36.000000Z", "last_data_reception_at": "2022-12-10T16:33:36.000000Z", "completed_at": "2022-12-10T16:34:03.000000Z", "received_at": "2022-12-10T16:34:03.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Trouve du trvaille plus le soir"}, "contact": {"uuid": "375e8b80-672a-11ed-a134-e3e54296d04d", "remote_id": "35b29b48-09a3-43a7-b614-761c5fd06239", "email": null, "display_name": "", "account": {"uuid": "3761a860-672a-11ed-afbc-e3a616c39efb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854365}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5d7996d0-78a8-11ed-b07b-05c02b80159a", "first_shown_at": "2022-12-10T16:33:23.000000Z", "last_shown_at": "2022-12-10T16:33:23.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:33:27.000000Z", "last_data_reception_at": "2022-12-10T16:33:27.000000Z", "completed_at": "2022-12-10T16:33:34.000000Z", "received_at": "2022-12-10T16:33:34.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellent"}, "contact": {"uuid": "aef83830-6717-11ed-a831-fb08799a3bb4", "remote_id": "c35e406c-73fc-40f7-929d-e7331698e2a8", "email": null, "display_name": "", "account": {"uuid": "aefa22a0-6717-11ed-be48-51cda72d35ae", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854365}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0f261090-78a8-11ed-bb96-81817ec7f5ad", "first_shown_at": "2022-12-10T16:31:12.000000Z", "last_shown_at": "2022-12-10T16:31:12.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T16:31:19.000000Z", "last_data_reception_at": "2022-12-10T16:31:44.000000Z", "completed_at": "2022-12-10T16:31:35.000000Z", "received_at": "2022-12-10T16:31:35.000000Z", "dismissed_at": "2022-12-10T16:31:48.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien \u00e0 dire"}, "contact": {"uuid": "898db3a0-6702-11ed-bc33-a72ba3f74d6f", "remote_id": "8c7f248e-1c52-49cc-94c5-f481f44142f8", "email": null, "display_name": "", "account": {"uuid": "898fdf60-6702-11ed-ae9e-8309c9cb6f7f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854365}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "87fcc9d0-78a7-11ed-bb0c-594b30a81b67", "first_shown_at": "2022-12-10T16:27:25.000000Z", "last_shown_at": "2022-12-10T16:27:25.000000Z", "show_counter": 4, "first_data_reception_at": "2022-12-10T16:27:42.000000Z", "last_data_reception_at": "2022-12-10T16:28:48.000000Z", "completed_at": "2022-12-10T16:29:36.000000Z", "received_at": "2022-12-10T16:29:36.000000Z", "dismissed_at": "2022-12-10T16:29:44.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellente"}, "contact": {"uuid": "51f1d370-66e3-11ed-bcf4-fb143a9900a9", "remote_id": "05b24aba-492f-4af8-aa57-400fa71d968f", "email": null, "display_name": "", "account": {"uuid": "51f37490-66e3-11ed-a436-91aca1978afc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854365}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "427da130-78a7-11ed-913a-5dd71ae8ad41", "first_shown_at": "2022-12-10T16:25:28.000000Z", "last_shown_at": "2022-12-10T16:25:28.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:25:33.000000Z", "last_data_reception_at": "2022-12-10T16:25:33.000000Z", "completed_at": "2022-12-10T16:26:15.000000Z", "received_at": "2022-12-10T16:26:15.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Is top you can t improve"}, "contact": {"uuid": "a0437820-6765-11ed-95cf-d904fa4b17d8", "remote_id": "c3b84a67-5b8e-48ba-8c3f-d35a02591f4b", "email": null, "display_name": "", "account": {"uuid": "a044a210-6765-11ed-991b-194a5df5ca6b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854365}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "21323b80-78a7-11ed-9db4-5571754f65e0", "first_shown_at": "2022-12-10T16:24:33.000000Z", "last_shown_at": "2022-12-10T16:24:33.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:24:39.000000Z", "last_data_reception_at": "2022-12-10T16:24:39.000000Z", "completed_at": "2022-12-10T16:25:19.000000Z", "received_at": "2022-12-10T16:25:19.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Increase the pay rates, e.g \u00a313 p/h +"}, "contact": {"uuid": "73af0710-67d9-11ed-8637-8183817bc5d0", "remote_id": "544b0657-bdd8-462d-8ad4-eaf5072b22d4", "email": null, "display_name": "", "account": {"uuid": "73b11780-67d9-11ed-9b06-9f146a098b16", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854365}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d17db430-78a6-11ed-8754-8baba137fe3c", "first_shown_at": "2022-12-10T16:22:19.000000Z", "last_shown_at": "2022-12-10T16:22:19.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:22:24.000000Z", "last_data_reception_at": "2022-12-10T16:22:24.000000Z", "completed_at": "2022-12-10T16:22:37.000000Z", "received_at": "2022-12-10T16:22:37.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tout es super"}, "contact": {"uuid": "d664b600-6ff7-11ed-a66d-a78b71923bf1", "remote_id": "73f873c8-b5d9-41a6-ab78-96e30a6c8223", "email": null, "display_name": "", "account": {"uuid": "d666d650-6ff7-11ed-80cc-61f7d5e52a8a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854366}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "309d26a0-78a6-11ed-b9d6-65a66dd1ee30", "first_shown_at": "2022-12-10T16:17:49.000000Z", "last_shown_at": "2022-12-10T16:17:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:17:53.000000Z", "last_data_reception_at": "2022-12-10T16:17:57.000000Z", "completed_at": "2022-12-10T16:18:23.000000Z", "received_at": "2022-12-10T16:18:23.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En nous proposant beaucoup plus de missions"}, "contact": {"uuid": "c6524380-6729-11ed-96b2-07086af46697", "remote_id": "2f046fa5-7093-45eb-9156-f4fd8df3fa25", "email": null, "display_name": "", "account": {"uuid": "c6536f40-6729-11ed-81ee-d92015669dbc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854366}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f3303490-78a5-11ed-a110-9b34aeb86c26", "first_shown_at": "2022-12-10T16:16:06.000000Z", "last_shown_at": "2022-12-10T16:16:06.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:16:16.000000Z", "last_data_reception_at": "2022-12-10T16:16:16.000000Z", "completed_at": "2022-12-10T16:16:36.000000Z", "received_at": "2022-12-10T16:16:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Ajouter plus de mission"}, "contact": {"uuid": "e0b16fa0-66c1-11ed-ad9f-1352d16278e5", "remote_id": "0f8903d4-7514-4e0b-ba74-9e91f1c7feee", "email": null, "display_name": "", "account": {"uuid": "e0b29f70-66c1-11ed-a7a4-b980ddb67069", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854366}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b54c2060-78a5-11ed-bc22-696f0a89f1f7", "first_shown_at": "2022-12-10T16:14:22.000000Z", "last_shown_at": "2022-12-10T16:14:22.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:14:27.000000Z", "last_data_reception_at": "2022-12-10T16:14:27.000000Z", "completed_at": "2022-12-10T16:15:05.000000Z", "received_at": "2022-12-10T16:15:05.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien de sp\u00e9cial"}, "contact": {"uuid": "ea0dcd60-66c1-11ed-a32e-d9ce51002a77", "remote_id": "c5b224af-f344-4099-b5e0-b78e02c6c843", "email": null, "display_name": "", "account": {"uuid": "ea109d40-66c1-11ed-adfa-f528d7ea857b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854366}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3aba4500-78a5-11ed-bc88-1971ffa6df1d", "first_shown_at": "2022-12-10T16:10:56.000000Z", "last_shown_at": "2022-12-10T16:10:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:11:07.000000Z", "last_data_reception_at": "2022-12-10T16:11:39.000000Z", "completed_at": "2022-12-10T16:13:46.000000Z", "received_at": "2022-12-10T16:13:46.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "A avoir encore plus de choix de missions de nouveaux \u00e9tablissements"}, "contact": {"uuid": "d8e614b0-66c5-11ed-a68a-297a95991596", "remote_id": "15ce3724-a6cc-4046-9a3c-1b2fe6d0907e", "email": null, "display_name": "", "account": {"uuid": "d8e78b30-66c5-11ed-8f9a-1dac6c2f1fff", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854366}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a44ab950-789b-11ed-9961-57c0d5cbe3a2", "first_shown_at": "2022-12-10T15:02:19.000000Z", "last_shown_at": "2022-12-10T15:02:19.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:11:15.000000Z", "last_data_reception_at": "2022-12-10T16:11:15.000000Z", "completed_at": "2022-12-10T16:11:48.000000Z", "received_at": "2022-12-10T16:11:48.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien du tout franchement bravo !! \ud83d\udc4d"}, "contact": {"uuid": "50213410-6828-11ed-b020-d3e3902d2f92", "remote_id": "343a90c0-c21f-4215-aa8e-0885930f7dd2", "email": null, "display_name": "", "account": {"uuid": "50228e10-6828-11ed-a513-113d75688edc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854367}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b35a0890-78a4-11ed-9fcb-9b6c85564105", "first_shown_at": "2022-12-10T16:07:09.000000Z", "last_shown_at": "2022-12-10T16:07:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:07:15.000000Z", "last_data_reception_at": "2022-12-10T16:07:15.000000Z", "completed_at": "2022-12-10T16:08:24.000000Z", "received_at": "2022-12-10T16:08:24.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Sa serai bien d\u2019avoir des frais kilom\u00e9triques paniers repas"}, "contact": {"uuid": "4331f090-6735-11ed-9608-59d5ad70da3e", "remote_id": "9754713c-c34f-4cc1-84d1-d606df9638f1", "email": null, "display_name": "", "account": {"uuid": "4333d170-6735-11ed-ae14-75416db32206", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854367}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b47f53e0-78a4-11ed-972d-bdd9e0edf851", "first_shown_at": "2022-12-10T16:07:11.000000Z", "last_shown_at": "2022-12-10T16:07:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:07:14.000000Z", "last_data_reception_at": "2022-12-10T16:07:14.000000Z", "completed_at": "2022-12-10T16:07:31.000000Z", "received_at": "2022-12-10T16:07:31.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Becose is smart nice fast"}, "contact": {"uuid": "1c16a930-6753-11ed-86cb-55e75a870bd5", "remote_id": "7ab34ac6-154a-4355-bcd9-8a1ed7d8c530", "email": null, "display_name": "", "account": {"uuid": "1c186f00-6753-11ed-a7b6-994a2cc44066", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854367}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a9938440-78a4-11ed-9867-cd810d57453f", "first_shown_at": "2022-12-10T16:06:53.000000Z", "last_shown_at": "2022-12-10T16:06:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:06:56.000000Z", "last_data_reception_at": "2022-12-10T16:06:56.000000Z", "completed_at": "2022-12-10T16:07:39.000000Z", "received_at": "2022-12-10T16:07:39.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Au travers de plus de missions dans plus de domaines divers et vari\u00e9s"}, "contact": {"uuid": "30714730-6726-11ed-aa87-25e4a3bc5221", "remote_id": "fe1c28f2-c53d-4151-9c90-c35b0bf33895", "email": null, "display_name": "", "account": {"uuid": "30732bb0-6726-11ed-9869-bbb0cde53b08", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854367}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "52e332c0-78a4-11ed-8cee-21be2e8988a2", "first_shown_at": "2022-12-10T16:04:27.000000Z", "last_shown_at": "2022-12-10T16:04:27.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:05:22.000000Z", "last_data_reception_at": "2022-12-10T16:05:22.000000Z", "completed_at": "2022-12-10T16:06:21.000000Z", "received_at": "2022-12-10T16:06:21.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Bonjour excellent accueil et chaleureuse \ud83d\ude0a\u263a\ufe0f\ud83d\ude0a"}, "contact": {"uuid": "f9f13e70-672a-11ed-8e16-bfc25aaa856a", "remote_id": "c862e5e5-4ecd-4cea-9fbf-639305b59d5e", "email": null, "display_name": "", "account": {"uuid": "f9f39a20-672a-11ed-ae8a-f3aa7cfc994d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854367}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4c3d9920-78a4-11ed-a197-93a37c4805e6", "first_shown_at": "2022-12-10T16:04:16.000000Z", "last_shown_at": "2022-12-10T16:04:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:04:23.000000Z", "last_data_reception_at": "2022-12-10T16:04:23.000000Z", "completed_at": "2022-12-10T16:04:34.000000Z", "received_at": "2022-12-10T16:04:34.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Excellent"}, "contact": {"uuid": "ee039200-6fc0-11ed-adb8-253bb4ceb187", "remote_id": "abbd6af1-2d4e-4a8f-95df-e38fb0b56eb4", "email": null, "display_name": "", "account": {"uuid": "ee0584d0-6fc0-11ed-9738-1d98b5a1c30e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854368}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "259e6e90-78a4-11ed-a9c6-4199b5dba1a6", "first_shown_at": "2022-12-10T16:03:11.000000Z", "last_shown_at": "2022-12-10T16:03:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T16:03:17.000000Z", "last_data_reception_at": "2022-12-10T16:03:17.000000Z", "completed_at": "2022-12-10T16:03:28.000000Z", "received_at": "2022-12-10T16:03:28.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "C\u2019est top"}, "contact": {"uuid": "08cde890-671a-11ed-9659-91aa542517a1", "remote_id": "5fde730d-0b25-464d-b52b-2517bf61cf67", "email": null, "display_name": "", "account": {"uuid": "08cf4e10-671a-11ed-aac5-2593ae2db6fd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854368}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "cd45abf0-78a3-11ed-98b5-c31b6311b803", "first_shown_at": "2022-12-10T16:00:43.000000Z", "last_shown_at": "2022-12-10T16:00:43.000000Z", "show_counter": 0, "first_data_reception_at": "2022-12-10T16:00:43.000000Z", "last_data_reception_at": "2022-12-10T16:00:43.000000Z", "completed_at": "2022-12-10T16:00:57.000000Z", "received_at": "2022-12-10T16:00:57.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Trop contente"}, "contact": {"uuid": "b0db3a20-6738-11ed-9486-7de0d381b7ee", "remote_id": "86976df3-5a06-49a2-ac9f-84057d3e2e59", "email": null, "display_name": "", "account": {"uuid": "b0de1fd0-6738-11ed-b5db-9b59b6a45fda", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854368}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a35793f0-78a3-11ed-a628-5df6cab01062", "first_shown_at": "2022-12-10T15:59:33.000000Z", "last_shown_at": "2022-12-10T15:59:33.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:59:42.000000Z", "last_data_reception_at": "2022-12-10T15:59:42.000000Z", "completed_at": "2022-12-10T16:01:48.000000Z", "received_at": "2022-12-10T16:01:48.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Je suis un AutoEntrepreneur j\u2019ai fait la formation de cuisine en et j\u2019ai travaill\u00e9 dans plain de restaurant \nJ\u2019aimerais partager ma petite exp\u00e9rience sur Brigad"}, "contact": {"uuid": "d60b5570-6b11-11ed-b6a8-0f8d7c0f7590", "remote_id": "1b82e2a8-9b4e-4854-9ad4-551686964594", "email": null, "display_name": "", "account": {"uuid": "d60d5940-6b11-11ed-b52e-c5fed9cc41de", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854368}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "95363880-78a3-11ed-a4f1-bd16cb76b9e0", "first_shown_at": "2022-12-10T15:59:09.000000Z", "last_shown_at": "2022-12-10T15:59:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:59:12.000000Z", "last_data_reception_at": "2022-12-10T15:59:12.000000Z", "completed_at": "2022-12-10T15:59:41.000000Z", "received_at": "2022-12-10T15:59:41.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "you don't need it"}, "contact": {"uuid": "b20da490-6745-11ed-9467-f3323dbecfba", "remote_id": "cb232627-155c-465a-bf27-e32f33a6bf62", "email": null, "display_name": "", "account": {"uuid": "b20f0150-6745-11ed-9c19-f3b1722b05b0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854369}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f5ae66a0-78a2-11ed-8d40-57306fdc1891", "first_shown_at": "2022-12-10T15:54:42.000000Z", "last_shown_at": "2022-12-10T15:54:42.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:54:57.000000Z", "last_data_reception_at": "2022-12-10T15:54:57.000000Z", "completed_at": "2022-12-10T15:56:20.000000Z", "received_at": "2022-12-10T15:56:20.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Vraiment vous \u00eates meilleurs applications en France surtout votre exp\u00e9rience c'est nickel"}, "contact": {"uuid": "4b49ec10-6719-11ed-a837-6d59948c9369", "remote_id": "b9659f55-217c-4d69-94a3-5811cc12d6cb", "email": null, "display_name": "", "account": {"uuid": "4b4bc490-6719-11ed-94a8-d941c758c872", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854369}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "eeeeec80-78a2-11ed-b337-bf9bbe1dc6b5", "first_shown_at": "2022-12-10T15:54:30.000000Z", "last_shown_at": "2022-12-10T15:54:30.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:54:41.000000Z", "last_data_reception_at": "2022-12-10T15:54:41.000000Z", "completed_at": "2022-12-10T15:55:22.000000Z", "received_at": "2022-12-10T15:55:22.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "En me donnant des missions plus cibles aux chaud"}, "contact": {"uuid": "52a9fec0-6725-11ed-b53c-9108a4dfb5bb", "remote_id": "24d50403-c1a6-4fb5-8ef3-867eae1af346", "email": null, "display_name": "", "account": {"uuid": "52ac73c0-6725-11ed-b253-e39490c28b86", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854369}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "bddb4d90-78a2-11ed-8fc9-cf277799a555", "first_shown_at": "2022-12-10T15:53:08.000000Z", "last_shown_at": "2022-12-10T15:53:08.000000Z", "show_counter": 5, "first_data_reception_at": "2022-12-10T15:53:12.000000Z", "last_data_reception_at": "2022-12-10T15:53:45.000000Z", "completed_at": "2022-12-10T15:54:28.000000Z", "received_at": "2022-12-10T15:54:28.000000Z", "dismissed_at": "2022-12-10T15:54:31.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Propos\u00e9 des propositions adapt\u00e9es"}, "contact": {"uuid": "4756ddc0-675c-11ed-b606-a13f36b0004d", "remote_id": "9296fc20-e4a7-46e4-aa93-a24cd7aa10da", "email": null, "display_name": "", "account": {"uuid": "4758f280-675c-11ed-9c35-a75e1b30a36a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854369}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "caa7f640-78a2-11ed-a2f5-0fef854291ce", "first_shown_at": "2022-12-10T15:53:29.000000Z", "last_shown_at": "2022-12-10T15:53:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:53:33.000000Z", "last_data_reception_at": "2022-12-10T15:53:33.000000Z", "completed_at": "2022-12-10T15:54:15.000000Z", "received_at": "2022-12-10T15:54:15.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Faire en sorte de diminuer les charges des ind\u00e9pendants"}, "contact": {"uuid": "fb766480-67e9-11ed-a70d-8d1157d54ac4", "remote_id": "96360c4c-6cc8-4b2a-a23c-07784e3a7bc0", "email": null, "display_name": "", "account": {"uuid": "fb77a2d0-67e9-11ed-a859-1f5ee56f249d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854369}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "bcba2120-78a2-11ed-a506-7dc27dd09163", "first_shown_at": "2022-12-10T15:53:06.000000Z", "last_shown_at": "2022-12-10T15:53:06.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:53:09.000000Z", "last_data_reception_at": "2022-12-10T15:53:09.000000Z", "completed_at": "2022-12-10T15:53:15.000000Z", "received_at": "2022-12-10T15:53:15.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Top exp\u00e9rience !"}, "contact": {"uuid": "de076060-671b-11ed-ae3b-47bfd124cb62", "remote_id": "413fac1d-4ea8-4ccf-aa6c-8d77d240cab3", "email": null, "display_name": "", "account": {"uuid": "de097a80-671b-11ed-96aa-05f28183195b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854369}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8612d070-78a2-11ed-8904-2741ff63fe7f", "first_shown_at": "2022-12-10T15:51:34.000000Z", "last_shown_at": "2022-12-10T15:51:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:51:41.000000Z", "last_data_reception_at": "2022-12-10T15:51:41.000000Z", "completed_at": "2022-12-10T15:51:56.000000Z", "received_at": "2022-12-10T15:51:56.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Bien organis\u00e9"}, "contact": {"uuid": "fc262550-66cc-11ed-ab78-6bb6f391447d", "remote_id": "05b2f67c-ed81-4baa-ac0a-b1f37c78586f", "email": null, "display_name": "", "account": {"uuid": "fc277d20-66cc-11ed-b5ba-b1690018c32c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854369}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2603e720-78a2-11ed-92cf-733d4581ad66", "first_shown_at": "2022-12-10T15:48:53.000000Z", "last_shown_at": "2022-12-10T15:48:55.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T15:49:01.000000Z", "last_data_reception_at": "2022-12-10T15:49:01.000000Z", "completed_at": "2022-12-10T15:49:45.000000Z", "received_at": "2022-12-10T15:49:45.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "with not give opportunity to the companies to cancel shifts when people apply and actually willing to work them"}, "contact": {"uuid": "89a93730-68cc-11ed-9772-83c5907296d2", "remote_id": "529b8eca-8a40-418f-a59c-923f898ac2ed", "email": null, "display_name": "", "account": {"uuid": "89aaddc0-68cc-11ed-bf03-510e48cec148", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854370}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ffe68950-78a1-11ed-b1f9-578f1f752f7e", "first_shown_at": "2022-12-10T15:47:49.000000Z", "last_shown_at": "2022-12-10T15:47:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:47:53.000000Z", "last_data_reception_at": "2022-12-10T15:47:53.000000Z", "completed_at": "2022-12-10T15:48:06.000000Z", "received_at": "2022-12-10T15:48:06.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Super service"}, "contact": {"uuid": "cbfb9f20-6979-11ed-b633-670974ce2cc2", "remote_id": "1ce1d3a7-b879-405b-b272-992bce2610c1", "email": null, "display_name": "", "account": {"uuid": "cc000b60-6979-11ed-b39a-19e3f3f4f8d3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854370}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ddd51660-78a1-11ed-a9b8-57b590ca72c6", "first_shown_at": "2022-12-10T15:46:52.000000Z", "last_shown_at": "2022-12-10T15:46:52.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:47:05.000000Z", "last_data_reception_at": "2022-12-10T15:47:05.000000Z", "completed_at": "2022-12-10T15:47:54.000000Z", "received_at": "2022-12-10T15:47:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Je sais pas trop \ud83d\ude09"}, "contact": {"uuid": "0683bd60-674e-11ed-999a-0b7ccc3c8c86", "remote_id": "ff058353-2a75-4e8a-8761-b9b8b2ba70e0", "email": null, "display_name": "", "account": {"uuid": "068599a0-674e-11ed-af3e-9f5e2abcc148", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854370}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b28ed780-78a1-11ed-844f-f58c198ea292", "first_shown_at": "2022-12-10T15:45:39.000000Z", "last_shown_at": "2022-12-10T15:45:39.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:45:51.000000Z", "last_data_reception_at": "2022-12-10T15:45:51.000000Z", "completed_at": "2022-12-10T15:46:12.000000Z", "received_at": "2022-12-10T15:46:12.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "RAS PARFAIT"}, "contact": {"uuid": "51ae5520-66bd-11ed-8e56-cf07a2a59345", "remote_id": "295f7e81-0fee-4b32-8170-750644dba6c3", "email": null, "display_name": "", "account": {"uuid": "51b029e0-66bd-11ed-bc32-e957fab1637b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854370}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8db94020-78a1-11ed-8116-15ea8eb3f11d", "first_shown_at": "2022-12-10T15:44:38.000000Z", "last_shown_at": "2022-12-10T15:44:38.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:44:40.000000Z", "last_data_reception_at": "2022-12-10T15:44:40.000000Z", "completed_at": "2022-12-10T15:44:46.000000Z", "received_at": "2022-12-10T15:44:46.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Parfait"}, "contact": {"uuid": "bbbba600-6728-11ed-82f9-fb0b9c6292c6", "remote_id": "e8f273bd-2dcd-48d8-816d-05a552c08fcc", "email": null, "display_name": "", "account": {"uuid": "bbbd65c0-6728-11ed-8a65-bd3d80c667e6", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854370}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "809191d0-78a1-11ed-9021-a7ba0fc19bd7", "first_shown_at": "2022-12-10T15:44:16.000000Z", "last_shown_at": "2022-12-10T15:44:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:44:21.000000Z", "last_data_reception_at": "2022-12-10T15:44:21.000000Z", "completed_at": "2022-12-10T15:44:43.000000Z", "received_at": "2022-12-10T15:44:43.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pas de commentaire, tout est g\u00e9nial"}, "contact": {"uuid": "7e914380-66bb-11ed-b9fd-af2ba94a1555", "remote_id": "6020a473-7c77-4a48-99f9-70bfe22990bf", "email": null, "display_name": "", "account": {"uuid": "7e93ad60-66bb-11ed-9fb5-d54d6f1fbe19", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854370}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3639b000-78a1-11ed-a533-ff781d603f63", "first_shown_at": "2022-12-10T15:42:11.000000Z", "last_shown_at": "2022-12-10T15:42:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:43:05.000000Z", "last_data_reception_at": "2022-12-10T15:43:05.000000Z", "completed_at": "2022-12-10T15:47:07.000000Z", "received_at": "2022-12-10T15:47:07.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "you could adapt the way to recover strikes after 8 consecutive shifts like coople or other similar applications."}, "contact": {"uuid": "f4436380-66d1-11ed-ab51-074f403f972e", "remote_id": "b02bd50d-f0a7-4180-93cc-d73d9b5ce10b", "email": null, "display_name": "", "account": {"uuid": "f44590f0-66d1-11ed-876d-a5238c9d9a94", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854371}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3beaaa20-78a1-11ed-8ce0-b7d6f592199f", "first_shown_at": "2022-12-10T15:42:20.000000Z", "last_shown_at": "2022-12-10T15:42:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:42:30.000000Z", "last_data_reception_at": "2022-12-10T15:42:30.000000Z", "completed_at": "2022-12-10T15:47:58.000000Z", "received_at": "2022-12-10T15:47:58.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En variant les missions. Je souhaiterais certainement travailler dans des cliniques et h\u00f4pitaux qui me permettront d'affiner mes comp\u00e9tences. Des services d'urgence, d'oncologie ou de m\u00e9decine g\u00e9n\u00e9rale me conviendraient dans le futur."}, "contact": {"uuid": "f44c2bf0-66be-11ed-91aa-919da8dcbf6a", "remote_id": "16d1b0ce-3fcc-4183-adfa-463c781de1f4", "email": null, "display_name": "", "account": {"uuid": "f44dcc90-66be-11ed-b47b-493d328535fc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854371}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "08b0de40-78a1-11ed-b1df-97728461f5d0", "first_shown_at": "2022-12-10T15:40:54.000000Z", "last_shown_at": "2022-12-10T15:40:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:41:00.000000Z", "last_data_reception_at": "2022-12-10T15:41:00.000000Z", "completed_at": "2022-12-10T15:41:16.000000Z", "received_at": "2022-12-10T15:41:16.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "The best"}, "contact": {"uuid": "aa102b10-6a2d-11ed-baf1-196f24a42b71", "remote_id": "12f47302-4b32-460a-83c3-a17a0f743bfd", "email": null, "display_name": "", "account": {"uuid": "aa113f80-6a2d-11ed-9f3b-8de846826f9d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854371}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "03580d40-78a1-11ed-84e5-1106bc626ca0", "first_shown_at": "2022-12-10T15:40:45.000000Z", "last_shown_at": "2022-12-10T15:40:45.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T15:40:54.000000Z", "last_data_reception_at": "2022-12-10T15:40:54.000000Z", "completed_at": "2022-12-10T15:41:18.000000Z", "received_at": "2022-12-10T15:41:18.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Plus de missions"}, "contact": {"uuid": "6933fef0-6707-11ed-b3e2-39e524e43ebd", "remote_id": "e02f7fde-f2df-4382-9a5f-b5a1ff55efec", "email": null, "display_name": "", "account": {"uuid": "69362050-6707-11ed-8c81-4f156fb7961a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854371}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d6c716c0-78a0-11ed-aaf6-5d62d3c448b3", "first_shown_at": "2022-12-10T15:39:31.000000Z", "last_shown_at": "2022-12-10T15:39:31.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:39:32.000000Z", "last_data_reception_at": "2022-12-10T15:39:39.000000Z", "completed_at": "2022-12-10T15:39:44.000000Z", "received_at": "2022-12-10T15:39:44.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien du tout"}, "contact": {"uuid": "caa27e00-6976-11ed-8834-51a56b85c8d8", "remote_id": "b82170f9-f503-425d-a198-2edd330a3625", "email": null, "display_name": "", "account": {"uuid": "caa42410-6976-11ed-bc48-55810e0f4190", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854371}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9a9a7540-78a0-11ed-a124-010f7455dd06", "first_shown_at": "2022-12-10T15:37:50.000000Z", "last_shown_at": "2022-12-10T15:37:50.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:38:01.000000Z", "last_data_reception_at": "2022-12-10T15:38:01.000000Z", "completed_at": "2022-12-10T15:38:40.000000Z", "received_at": "2022-12-10T15:38:40.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Super super"}, "contact": {"uuid": "9e8b6280-66d1-11ed-9672-2d0a13b5fff4", "remote_id": "a2f583fa-b4bb-4ce6-8213-186453707f17", "email": null, "display_name": "", "account": {"uuid": "9e8d6820-66d1-11ed-a0a1-c308a7c124d7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854371}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "935d6c20-78a0-11ed-8e32-718f365f4220", "first_shown_at": "2022-12-10T15:37:38.000000Z", "last_shown_at": "2022-12-10T15:37:38.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:37:53.000000Z", "last_data_reception_at": "2022-12-10T15:37:53.000000Z", "completed_at": "2022-12-10T15:39:07.000000Z", "received_at": "2022-12-10T15:39:07.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Good app nothing to improve"}, "contact": {"uuid": "76ad6250-66d7-11ed-b3d1-a3c56ad3addf", "remote_id": "e80bde2a-0645-4892-80ae-cd4c37c56979", "email": null, "display_name": "", "account": {"uuid": "76af2f00-66d7-11ed-9397-093a1efe00ba", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854372}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "890a3200-78a0-11ed-92cf-1f4ed5546032", "first_shown_at": "2022-12-10T15:37:20.000000Z", "last_shown_at": "2022-12-10T15:37:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:37:29.000000Z", "last_data_reception_at": "2022-12-10T15:37:29.000000Z", "completed_at": "2022-12-10T15:37:55.000000Z", "received_at": "2022-12-10T15:37:55.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "J aime travail avec Brigad"}, "contact": {"uuid": "061c5bc0-6709-11ed-a489-edef52c4fc05", "remote_id": "7b01b24f-c627-4dfc-8405-c76d2d1a66d5", "email": null, "display_name": "", "account": {"uuid": "061e5560-6709-11ed-be2d-2935d53a6f4e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854372}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7c0ed9f0-78a0-11ed-998f-cfea11dce728", "first_shown_at": "2022-12-10T15:36:59.000000Z", "last_shown_at": "2022-12-10T15:36:59.000000Z", "show_counter": 0, "first_data_reception_at": "2022-12-10T15:36:59.000000Z", "last_data_reception_at": "2022-12-10T15:36:59.000000Z", "completed_at": "2022-12-10T15:36:59.000000Z", "received_at": "2022-12-10T15:36:59.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "5", "how_could_we_improve_your_experience_with_brigad": "Beaucoup de missions annul\u00e9"}, "contact": {"uuid": "48e1b210-67db-11ed-8278-91c7241b0772", "remote_id": "06272ce1-7f6f-435d-89e6-80676a0615aa", "email": null, "display_name": "", "account": {"uuid": "48e40650-67db-11ed-9570-4d8fdec80292", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854372}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "627c2370-78a0-11ed-8948-23daccb3881d", "first_shown_at": "2022-12-10T15:36:16.000000Z", "last_shown_at": "2022-12-10T15:36:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:36:25.000000Z", "last_data_reception_at": "2022-12-10T15:36:25.000000Z", "completed_at": "2022-12-10T15:36:39.000000Z", "received_at": "2022-12-10T15:36:39.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Plus de missions"}, "contact": {"uuid": "9210cd20-680c-11ed-9987-9deced48ce94", "remote_id": "6045f9d8-b16f-454d-b984-39cf201b032b", "email": null, "display_name": "", "account": {"uuid": "9212c060-680c-11ed-869d-adf1ed6330c8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854372}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2b7a0ea0-78a0-11ed-9e87-2fd4ea4ff3e8", "first_shown_at": "2022-12-10T15:34:43.000000Z", "last_shown_at": "2022-12-10T15:34:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:34:50.000000Z", "last_data_reception_at": "2022-12-10T15:34:50.000000Z", "completed_at": "2022-12-10T15:35:01.000000Z", "received_at": "2022-12-10T15:35:01.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Better onboarding and transport cover"}, "contact": {"uuid": "20036ad0-719f-11ed-b3ae-73fda383df13", "remote_id": "106b519e-353d-4bc2-a17f-b4801aace454", "email": null, "display_name": "", "account": {"uuid": "2005a5b0-719f-11ed-a148-07f70f5ca25d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854372}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2709bb20-78a0-11ed-bf7a-279ed1818dfb", "first_shown_at": "2022-12-10T15:34:36.000000Z", "last_shown_at": "2022-12-10T15:34:36.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:34:43.000000Z", "last_data_reception_at": "2022-12-10T15:34:43.000000Z", "completed_at": "2022-12-10T15:37:50.000000Z", "received_at": "2022-12-10T15:37:50.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "D'envoyer plus de missions en tenant compte du permettre des candidats."}, "contact": {"uuid": "e8041ff0-6702-11ed-9b93-e144a9495c76", "remote_id": "94412439-2309-43b7-b715-62a22e5d32dd", "email": null, "display_name": "", "account": {"uuid": "e805ed50-6702-11ed-bdfa-6fb84b402a3a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854373}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0d88f210-78a0-11ed-8ae6-f3cdde0613fd", "first_shown_at": "2022-12-10T15:33:53.000000Z", "last_shown_at": "2022-12-10T15:33:55.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T15:34:08.000000Z", "last_data_reception_at": "2022-12-10T15:34:08.000000Z", "completed_at": "2022-12-10T15:34:21.000000Z", "received_at": "2022-12-10T15:34:21.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Superbe"}, "contact": {"uuid": "b7e4b0e0-6939-11ed-b9e2-854b6334a47d", "remote_id": "77e7b05b-b81d-4204-afd4-ef2d17148290", "email": null, "display_name": "", "account": {"uuid": "b7e68880-6939-11ed-b50c-05aad4865f9d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854373}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e1d02a20-789f-11ed-a982-bf945f85fce3", "first_shown_at": "2022-12-10T15:32:40.000000Z", "last_shown_at": "2022-12-10T15:32:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:32:44.000000Z", "last_data_reception_at": "2022-12-10T15:32:44.000000Z", "completed_at": "2022-12-10T15:33:15.000000Z", "received_at": "2022-12-10T15:33:15.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Everything is excellent."}, "contact": {"uuid": "0188a8a0-66bb-11ed-8aec-dd1994d1cd23", "remote_id": "4319259b-3ebe-46fb-915b-d83f7c2540c7", "email": null, "display_name": "", "account": {"uuid": "018ad540-66bb-11ed-b353-316f40b032eb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854373}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c2c2f2e0-789f-11ed-8fc3-2f49bd51501d", "first_shown_at": "2022-12-10T15:31:48.000000Z", "last_shown_at": "2022-12-10T15:31:48.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:32:01.000000Z", "last_data_reception_at": "2022-12-10T15:32:01.000000Z", "completed_at": "2022-12-10T15:33:44.000000Z", "received_at": "2022-12-10T15:33:44.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Plus de missions et surtout plus avoir le choix"}, "contact": {"uuid": "95a4b650-673c-11ed-a02a-b795d10f89da", "remote_id": "0abd9e64-12f1-4226-b201-3d5f25350640", "email": null, "display_name": "", "account": {"uuid": "95a6d2d0-673c-11ed-9f6c-41c1a624690e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854373}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9c2e44c0-789d-11ed-8a14-5105d9a9c7b8", "first_shown_at": "2022-12-10T15:16:24.000000Z", "last_shown_at": "2022-12-10T15:16:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:31:06.000000Z", "last_data_reception_at": "2022-12-10T15:31:06.000000Z", "completed_at": "2022-12-10T15:32:34.000000Z", "received_at": "2022-12-10T15:32:34.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Donn\u00e9 \u00e0 tout le monde les m\u00eames missions pour que tout les talents aient les m\u00eames opportunit\u00e9s"}, "contact": {"uuid": "395dc120-6700-11ed-aadb-35fdcf45425c", "remote_id": "84a92f56-ee19-4761-b354-8e57d65ca1cd", "email": null, "display_name": "", "account": {"uuid": "395eed70-6700-11ed-992c-71b1b6e93e14", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854373}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "72fa9fb0-789f-11ed-b1df-d5921840375f", "first_shown_at": "2022-12-10T15:29:34.000000Z", "last_shown_at": "2022-12-10T15:29:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:30:13.000000Z", "last_data_reception_at": "2022-12-10T15:30:13.000000Z", "completed_at": "2022-12-10T15:30:41.000000Z", "received_at": "2022-12-10T15:30:41.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "\u00catre disponible lors des missions"}, "contact": {"uuid": "735c4b20-68e2-11ed-85c3-6f3e7ca21b39", "remote_id": "efb7f4e0-4760-4678-a625-7326df5790f1", "email": null, "display_name": "", "account": {"uuid": "735d9230-68e2-11ed-a179-49c3b979fc7f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854373}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "76d29610-789f-11ed-82a9-51d9cfe5a6c2", "first_shown_at": "2022-12-10T15:29:40.000000Z", "last_shown_at": "2022-12-10T15:29:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:29:43.000000Z", "last_data_reception_at": "2022-12-10T15:29:43.000000Z", "completed_at": "2022-12-10T15:30:04.000000Z", "received_at": "2022-12-10T15:30:04.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En donnant plus de mission"}, "contact": {"uuid": "33fc50e0-6966-11ed-b773-4fb188704728", "remote_id": "b06c0957-2f24-4a23-be46-ffd63e0908b1", "email": null, "display_name": "", "account": {"uuid": "33fdf5a0-6966-11ed-a1f4-5d6d51a6e282", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854374}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4f61a5d0-789f-11ed-89d8-4d9dbfa9b7aa", "first_shown_at": "2022-12-10T15:28:34.000000Z", "last_shown_at": "2022-12-10T15:28:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:28:36.000000Z", "last_data_reception_at": "2022-12-10T15:28:36.000000Z", "completed_at": "2022-12-10T15:28:46.000000Z", "received_at": "2022-12-10T15:28:46.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tout est bien"}, "contact": {"uuid": "927902a0-66c6-11ed-b15d-913bf76e2d70", "remote_id": "afa2c2b1-0ff4-47c5-9632-976bdc485394", "email": null, "display_name": "", "account": {"uuid": "927b1b60-66c6-11ed-8adb-f926b4376195", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854374}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3143cc60-789f-11ed-956d-ad3d3d96bcd7", "first_shown_at": "2022-12-10T15:27:44.000000Z", "last_shown_at": "2022-12-10T15:27:44.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:27:49.000000Z", "last_data_reception_at": "2022-12-10T15:27:49.000000Z", "completed_at": "2022-12-10T15:28:24.000000Z", "received_at": "2022-12-10T15:28:24.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Rien n'a rajouter"}, "contact": {"uuid": "c9ef0e70-6722-11ed-bb44-932bfd5e0c53", "remote_id": "c6fbc48d-166b-4679-bdf3-68c54c35961a", "email": null, "display_name": "", "account": {"uuid": "c9f22620-6722-11ed-9289-cbcc6ff60627", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854374}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "eb235a70-789e-11ed-8990-bd70722d6cd9", "first_shown_at": "2022-12-10T15:25:46.000000Z", "last_shown_at": "2022-12-10T15:25:46.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:25:54.000000Z", "last_data_reception_at": "2022-12-10T15:25:54.000000Z", "completed_at": "2022-12-10T15:32:36.000000Z", "received_at": "2022-12-10T15:32:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Am\u00e9lioration est d\u00e9j\u00e0 au rdv juste pourvoir joindre l \u00e9quipe de brigade par t\u00e9l\u00e9phone si n\u00e9cessaire parce que moi j ai un probl\u00e8me il y'a mon virement duv02/12/2022 qui n est pas encore affich\u00e9 sur mon compte moi j ai appel\u00e9 la banque il ons ont"}, "contact": {"uuid": "62848230-66bd-11ed-847f-1df212ad57c6", "remote_id": "cb2d9cdd-f756-4be4-bb41-52338980c211", "email": null, "display_name": "", "account": {"uuid": "6285f310-66bd-11ed-b3b6-1b6d5db0985c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854374}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e387c810-789e-11ed-bfba-5d5077286f75", "first_shown_at": "2022-12-10T15:25:33.000000Z", "last_shown_at": "2022-12-10T15:25:33.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:25:35.000000Z", "last_data_reception_at": "2022-12-10T15:25:35.000000Z", "completed_at": "2022-12-10T15:26:28.000000Z", "received_at": "2022-12-10T15:26:28.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "I am extremely happy with Brigad. Nothing to improve, it is an excellent company!"}, "contact": {"uuid": "fbe5d520-6a89-11ed-86cc-c7d9add065f5", "remote_id": "10972668-e798-43e5-9c32-087bb42b7b38", "email": null, "display_name": "", "account": {"uuid": "fbe87af0-6a89-11ed-ab68-c9f9700fcc61", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854374}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "bf7f4dd0-789e-11ed-91df-8974ea1cc346", "first_shown_at": "2022-12-10T15:24:33.000000Z", "last_shown_at": "2022-12-10T15:24:33.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:24:47.000000Z", "last_data_reception_at": "2022-12-10T15:24:47.000000Z", "completed_at": "2022-12-10T15:25:36.000000Z", "received_at": "2022-12-10T15:25:36.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Stop banning people if they get sick and can\u2019t show up for work change the policy"}, "contact": {"uuid": "b978f7c0-66bc-11ed-a063-79f66e05f165", "remote_id": "e6495251-4dca-4571-8c13-d5109252886b", "email": null, "display_name": "", "account": {"uuid": "b97acb50-66bc-11ed-a43f-3525e6369d6a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854374}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8f812b90-789e-11ed-b3ab-018a93039d2f", "first_shown_at": "2022-12-10T15:23:12.000000Z", "last_shown_at": "2022-12-10T15:23:12.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:23:14.000000Z", "last_data_reception_at": "2022-12-10T15:23:14.000000Z", "completed_at": "2022-12-10T15:23:31.000000Z", "received_at": "2022-12-10T15:23:31.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Good and better"}, "contact": {"uuid": "dc447a20-66d8-11ed-9525-95b921040435", "remote_id": "c6ef62fc-9ce2-4f5a-bced-2ad363c75bed", "email": null, "display_name": "", "account": {"uuid": "dc467eb0-66d8-11ed-b58c-af058c9b21e5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854375}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "78993610-789e-11ed-a74f-1dfe3b611d7c", "first_shown_at": "2022-12-10T15:22:34.000000Z", "last_shown_at": "2022-12-10T15:22:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:22:38.000000Z", "last_data_reception_at": "2022-12-10T15:22:38.000000Z", "completed_at": "2022-12-10T15:24:17.000000Z", "received_at": "2022-12-10T15:24:17.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En incitant les employeurs \u00e0 \u00e9mettre un feed-back afin de conna\u00eetre leur avis sur la prestation fournie"}, "contact": {"uuid": "26021380-69ab-11ed-be5d-1993d3cf4204", "remote_id": "493afd7f-0773-4fc7-a53a-5bd81c760a4a", "email": null, "display_name": "", "account": {"uuid": "26062e70-69ab-11ed-a359-3be8d86b347a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854375}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6a011d60-789e-11ed-9917-2f92f4550ab6", "first_shown_at": "2022-12-10T15:22:09.000000Z", "last_shown_at": "2022-12-10T15:22:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:22:13.000000Z", "last_data_reception_at": "2022-12-10T15:22:13.000000Z", "completed_at": "2022-12-10T15:22:54.000000Z", "received_at": "2022-12-10T15:22:54.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Avoir plus de missions propos\u00e9e \nEt mission superbrigadier pour du service"}, "contact": {"uuid": "0a2d7b20-6717-11ed-be9e-49d467acd096", "remote_id": "c67fd0ae-ccb6-4442-bbf2-16dc626d30a3", "email": null, "display_name": "", "account": {"uuid": "0a3046e0-6717-11ed-8ad3-8d0edb062310", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854375}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4c575910-789e-11ed-9df7-9b763242108b", "first_shown_at": "2022-12-10T15:21:19.000000Z", "last_shown_at": "2022-12-10T15:21:19.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:21:29.000000Z", "last_data_reception_at": "2022-12-10T15:21:29.000000Z", "completed_at": "2022-12-10T15:23:46.000000Z", "received_at": "2022-12-10T15:23:46.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Top\ud83e\udef6\ud83e\udef6\ud83e\udef6"}, "contact": {"uuid": "4e948a60-66c3-11ed-a5c3-2dc548a02c75", "remote_id": "c8d64827-57b9-4087-8c89-d6051d183871", "email": null, "display_name": "", "account": {"uuid": "4e964f40-66c3-11ed-831e-672c82a0414a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854375}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2ea5b400-789e-11ed-b3e7-eb15e171fb4f", "first_shown_at": "2022-12-10T15:20:30.000000Z", "last_shown_at": "2022-12-10T15:20:30.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:20:33.000000Z", "last_data_reception_at": "2022-12-10T15:20:33.000000Z", "completed_at": "2022-12-10T15:21:15.000000Z", "received_at": "2022-12-10T15:21:15.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Apporter des r\u00e9ponses plus compl\u00e8tes que des r\u00e9ponses automatis\u00e9es. Mettre plus de missions en avance plut\u00f4t que de la derni\u00e8re minute."}, "contact": {"uuid": "c5f81bb0-66f0-11ed-9d2c-edbec6b98e92", "remote_id": "30e46bc1-ceaa-4f07-8cb4-4b005d11872f", "email": null, "display_name": "", "account": {"uuid": "c5f9a990-66f0-11ed-90f9-0946347820f3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854375}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d0edebc0-789d-11ed-80e8-55740f6250c7", "first_shown_at": "2022-12-10T15:17:52.000000Z", "last_shown_at": "2022-12-10T15:17:52.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:18:39.000000Z", "last_data_reception_at": "2022-12-10T15:18:39.000000Z", "completed_at": "2022-12-10T15:20:44.000000Z", "received_at": "2022-12-10T15:20:44.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Me proposer plus de missions merci bcp"}, "contact": {"uuid": "b9e268c0-6717-11ed-b703-11a0d24e19f2", "remote_id": "36bc2187-3f5e-44b9-9404-14b155ce9cd8", "email": null, "display_name": "", "account": {"uuid": "b9e41240-6717-11ed-bd06-e77e88fa50bf", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854375}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b357af60-789d-11ed-a222-63b6345d7a83", "first_shown_at": "2022-12-10T15:17:03.000000Z", "last_shown_at": "2022-12-10T15:17:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:17:06.000000Z", "last_data_reception_at": "2022-12-10T15:17:06.000000Z", "completed_at": "2022-12-10T15:17:19.000000Z", "received_at": "2022-12-10T15:17:19.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "C\u2019est bien"}, "contact": {"uuid": "0a7d3460-66c4-11ed-961b-7ff046147bb3", "remote_id": "7c59e8dd-2446-4c9c-932e-54ca612da8bb", "email": null, "display_name": "", "account": {"uuid": "0a7efe20-66c4-11ed-aa3b-617f544e6822", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854376}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9f338630-789d-11ed-8338-9b35af6830b0", "first_shown_at": "2022-12-10T15:16:29.000000Z", "last_shown_at": "2022-12-10T15:16:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:16:32.000000Z", "last_data_reception_at": "2022-12-10T15:16:32.000000Z", "completed_at": "2022-12-10T15:17:22.000000Z", "received_at": "2022-12-10T15:17:22.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "2", "how_could_we_improve_your_experience_with_brigad": "More jobs matching my experience as described during my phone interview. And also better paid jobs most other apps pay better"}, "contact": {"uuid": "78eb6560-66c5-11ed-97c0-e5914d3a7996", "remote_id": "75341c16-51e8-489c-9222-e80e06d18b89", "email": null, "display_name": "", "account": {"uuid": "78ecb180-66c5-11ed-b60b-7533f585f10e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854376}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "501a7b20-789d-11ed-9b62-f50bc1346979", "first_shown_at": "2022-12-10T15:14:16.000000Z", "last_shown_at": "2022-12-10T15:14:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:14:18.000000Z", "last_data_reception_at": "2022-12-10T15:14:18.000000Z", "completed_at": "2022-12-10T15:14:34.000000Z", "received_at": "2022-12-10T15:14:34.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "I don\u2019t often get good mission"}, "contact": {"uuid": "7ffcabb0-67ec-11ed-bc94-336d3f4a8674", "remote_id": "bf6fa4af-53c0-4eea-bc16-1378c7bc41e4", "email": null, "display_name": "", "account": {"uuid": "7ffec5d0-67ec-11ed-b109-ab8ed5e859c3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854376}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "12f22680-789d-11ed-9268-2fc53866a0cd", "first_shown_at": "2022-12-10T15:12:34.000000Z", "last_shown_at": "2022-12-10T15:12:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:12:37.000000Z", "last_data_reception_at": "2022-12-10T15:12:37.000000Z", "completed_at": "2022-12-10T15:12:57.000000Z", "received_at": "2022-12-10T15:12:57.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tout est correct pour moi"}, "contact": {"uuid": "15f348e0-672a-11ed-8df5-a7b09da5e9de", "remote_id": "b1e88748-b557-4bf1-9999-83746d3e2059", "email": null, "display_name": "", "account": {"uuid": "15f4b320-672a-11ed-9985-c31b425c861f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854376}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "fe2c40f0-789c-11ed-b259-5b7166e5f8da", "first_shown_at": "2022-12-10T15:11:59.000000Z", "last_shown_at": "2022-12-10T15:11:59.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:12:02.000000Z", "last_data_reception_at": "2022-12-10T15:12:02.000000Z", "completed_at": "2022-12-10T15:12:19.000000Z", "received_at": "2022-12-10T15:12:19.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Plus de missions"}, "contact": {"uuid": "816e0f60-670a-11ed-9746-89615f6d0fc7", "remote_id": "a0c41e72-3f92-4b4a-800c-5537eabf62dc", "email": null, "display_name": "", "account": {"uuid": "816fa370-670a-11ed-9835-b55aebee373a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854376}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c423f820-789c-11ed-9d36-576a0da36083", "first_shown_at": "2022-12-10T15:10:21.000000Z", "last_shown_at": "2022-12-10T15:10:21.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:10:29.000000Z", "last_data_reception_at": "2022-12-10T15:10:29.000000Z", "completed_at": "2022-12-10T15:15:21.000000Z", "received_at": "2022-12-10T15:15:21.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "S il vous pla\u00eet donner moi la majorit\u00e9 des missions autour de chez moi par exemple, bagneux, montrouge ,denfert raucherau, et d'autres. \nMerci"}, "contact": {"uuid": "f61db970-673f-11ed-874e-8d46918607a2", "remote_id": "26f43763-fcf4-461d-a035-f934830027ef", "email": null, "display_name": "", "account": {"uuid": "f6210200-673f-11ed-a78e-53e09cc0f2cc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854376}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a6bdf2b0-789c-11ed-8662-ad13abe7b129", "first_shown_at": "2022-12-10T15:09:32.000000Z", "last_shown_at": "2022-12-10T15:09:32.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:09:36.000000Z", "last_data_reception_at": "2022-12-10T15:09:36.000000Z", "completed_at": "2022-12-10T15:09:49.000000Z", "received_at": "2022-12-10T15:09:49.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "---------"}, "contact": {"uuid": "2685a780-71dc-11ed-b98f-2fc414caf1e8", "remote_id": "95249ac8-e858-45c8-b03a-ac94e097206e", "email": null, "display_name": "", "account": {"uuid": "268742d0-71dc-11ed-9285-a5bd26ea7f63", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854376}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "86734400-789c-11ed-ba54-33789ed116e4", "first_shown_at": "2022-12-10T15:08:38.000000Z", "last_shown_at": "2022-12-10T15:08:38.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:09:03.000000Z", "last_data_reception_at": "2022-12-10T15:09:03.000000Z", "completed_at": "2022-12-10T15:10:10.000000Z", "received_at": "2022-12-10T15:10:10.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Pas assez de missions de nuit"}, "contact": {"uuid": "5baf8e20-6721-11ed-bec9-1568c9358404", "remote_id": "bbddd0b3-2905-425e-98e5-b168bc1783cd", "email": null, "display_name": "", "account": {"uuid": "5bb1a1e0-6721-11ed-a681-e583cb698e1e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854377}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "72c260c0-789c-11ed-b58c-3b887c37f295", "first_shown_at": "2022-12-10T15:08:05.000000Z", "last_shown_at": "2022-12-10T15:08:05.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:08:12.000000Z", "last_data_reception_at": "2022-12-10T15:08:12.000000Z", "completed_at": "2022-12-10T15:08:57.000000Z", "received_at": "2022-12-10T15:08:57.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Ne change rien"}, "contact": {"uuid": "055e3920-6731-11ed-b0cc-b9f202917085", "remote_id": "6890864a-edb8-4e2a-9f8f-9169748cfef4", "email": null, "display_name": "", "account": {"uuid": "05603760-6731-11ed-a912-c15e4afc0e27", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854377}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "41637380-789c-11ed-8fb3-af8df5419032", "first_shown_at": "2022-12-10T15:06:42.000000Z", "last_shown_at": "2022-12-10T15:06:42.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:06:57.000000Z", "last_data_reception_at": "2022-12-10T15:06:57.000000Z", "completed_at": "2022-12-10T15:07:15.000000Z", "received_at": "2022-12-10T15:07:15.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Vous \u00eates les meilleurs"}, "contact": {"uuid": "1c37c250-6d66-11ed-968e-85f6e91fc001", "remote_id": "db00d0c5-faad-442f-8baf-40bd78606b2f", "email": null, "display_name": "", "account": {"uuid": "1c39f190-6d66-11ed-974e-5782a1e8109f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854377}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "21910530-789c-11ed-aed6-a7d9b268c52a", "first_shown_at": "2022-12-10T15:05:49.000000Z", "last_shown_at": "2022-12-10T15:05:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:05:57.000000Z", "last_data_reception_at": "2022-12-10T15:05:57.000000Z", "completed_at": "2022-12-10T15:09:48.000000Z", "received_at": "2022-12-10T15:09:48.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Brigad is all right but stop blocking accounts no big problems I like Brigad and will recommend it anytime"}, "contact": {"uuid": "d0fa0be0-6725-11ed-9db4-c747ad49ae40", "remote_id": "ea07caf0-b65c-4e71-b224-7c4372cfa8cf", "email": null, "display_name": "", "account": {"uuid": "d0fc0a50-6725-11ed-847e-3ff142259725", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854377}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "18508d00-789c-11ed-9ef9-f1e3d3b39cb5", "first_shown_at": "2022-12-10T15:05:33.000000Z", "last_shown_at": "2022-12-10T15:05:33.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:05:39.000000Z", "last_data_reception_at": "2022-12-10T15:05:39.000000Z", "completed_at": "2022-12-10T15:05:50.000000Z", "received_at": "2022-12-10T15:05:50.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s bien vraiment"}, "contact": {"uuid": "5c042d50-672c-11ed-b881-436981fb9ac8", "remote_id": "b0f02e66-e019-46d8-b02a-b05e23b72770", "email": null, "display_name": "", "account": {"uuid": "5c066bc0-672c-11ed-8a7b-1792a801987a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854377}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0033f090-789c-11ed-94eb-6594d1b725df", "first_shown_at": "2022-12-10T15:04:53.000000Z", "last_shown_at": "2022-12-10T15:04:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:05:20.000000Z", "last_data_reception_at": "2022-12-10T15:05:20.000000Z", "completed_at": "2022-12-10T15:05:58.000000Z", "received_at": "2022-12-10T15:05:58.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Je veux avoir des missions merci"}, "contact": {"uuid": "f188a6a0-672f-11ed-890d-dfe47abcdb80", "remote_id": "63876955-8e8a-4df1-ad20-65c18663e50c", "email": null, "display_name": "", "account": {"uuid": "f18a9a20-672f-11ed-a34a-676fb42d9180", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854377}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "fcbe77e0-789b-11ed-92a2-f10e8eebfca2", "first_shown_at": "2022-12-10T15:04:47.000000Z", "last_shown_at": "2022-12-10T15:04:47.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:04:53.000000Z", "last_data_reception_at": "2022-12-10T15:04:53.000000Z", "completed_at": "2022-12-10T15:05:00.000000Z", "received_at": "2022-12-10T15:05:00.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Parfait"}, "contact": {"uuid": "3ec78050-66d3-11ed-bb93-73a2e6446bc5", "remote_id": "332cc32b-5817-4759-8e54-9a98bb1e9719", "email": null, "display_name": "", "account": {"uuid": "3ec9c650-66d3-11ed-9071-a363d9e6b792", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854378}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f65e9430-789b-11ed-8fbf-a19b35762d8a", "first_shown_at": "2022-12-10T15:04:36.000000Z", "last_shown_at": "2022-12-10T15:04:36.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:04:42.000000Z", "last_data_reception_at": "2022-12-10T15:04:42.000000Z", "completed_at": "2022-12-10T15:05:30.000000Z", "received_at": "2022-12-10T15:05:30.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Everithing looks good for me"}, "contact": {"uuid": "d2481bd0-66d6-11ed-81f6-a1e97c3e886c", "remote_id": "ec9694c9-d7d7-4736-ba08-6de1a9e4a370", "email": null, "display_name": "", "account": {"uuid": "d24a1360-66d6-11ed-9a16-0747bed55a54", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854378}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e93c3e50-789b-11ed-aa75-4996614b3c8b", "first_shown_at": "2022-12-10T15:04:14.000000Z", "last_shown_at": "2022-12-10T15:04:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:04:21.000000Z", "last_data_reception_at": "2022-12-10T15:04:24.000000Z", "completed_at": "2022-12-10T15:04:36.000000Z", "received_at": "2022-12-10T15:04:36.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": ".hhjjgg y"}, "contact": {"uuid": "9e3a7080-675a-11ed-a12b-ebeef3f93c96", "remote_id": "b8e569e0-9a55-4f5e-ae1e-2da223f7e549", "email": null, "display_name": "", "account": {"uuid": "9e3d1530-675a-11ed-88c5-5f564f623583", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854378}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c412bc10-789b-11ed-8041-3fb7b7a194d0", "first_shown_at": "2022-12-10T15:03:12.000000Z", "last_shown_at": "2022-12-10T15:03:12.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:03:17.000000Z", "last_data_reception_at": "2022-12-10T15:03:17.000000Z", "completed_at": "2022-12-10T15:04:07.000000Z", "received_at": "2022-12-10T15:04:07.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "Plus de proposition j\u2019en ai une toutes les 5semaine parfois 2mois sans rien ou alors ont me propose une mission \u00e0 10h30 pour 11h j\u2019ai juste envie de travailler"}, "contact": {"uuid": "84b73160-6850-11ed-822c-d1754923a982", "remote_id": "b42a36d3-a8ae-47a6-9a64-cb79de431e4e", "email": null, "display_name": "", "account": {"uuid": "84b85fe0-6850-11ed-a085-ff38d39d9d36", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854378}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b71a64c0-789b-11ed-bb7d-791425c5ef57", "first_shown_at": "2022-12-10T15:02:50.000000Z", "last_shown_at": "2022-12-10T15:02:50.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T15:03:01.000000Z", "last_data_reception_at": "2022-12-10T15:03:01.000000Z", "completed_at": "2022-12-10T15:03:16.000000Z", "received_at": "2022-12-10T15:03:16.000000Z", "dismissed_at": "2022-12-10T15:03:20.000000Z", "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Very good"}, "contact": {"uuid": "93266680-66c2-11ed-8cf5-1d4556cdc592", "remote_id": "4e33eef1-f9f5-41d0-9bde-3d91cedbb578", "email": null, "display_name": "", "account": {"uuid": "9327fe60-66c2-11ed-9cc4-9bbebb7f0388", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854378}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7dd6db70-789b-11ed-9f69-b36879f565e0", "first_shown_at": "2022-12-10T15:01:14.000000Z", "last_shown_at": "2022-12-10T15:01:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:01:22.000000Z", "last_data_reception_at": "2022-12-10T15:01:44.000000Z", "completed_at": "2022-12-10T15:04:52.000000Z", "received_at": "2022-12-10T15:04:52.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Trouver des travail depuis chez toi comme tu veux et quand tu veux"}, "contact": {"uuid": "08507f40-66f7-11ed-bf85-df8898ccb4ff", "remote_id": "a44b8e6c-9698-498e-82ba-c7cfaaa664ec", "email": null, "display_name": "", "account": {"uuid": "0851e4a0-66f7-11ed-994d-331c9c997b85", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854378}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7cf5e9c0-789b-11ed-abe0-2197fa774d77", "first_shown_at": "2022-12-10T15:01:13.000000Z", "last_shown_at": "2022-12-10T15:01:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:01:17.000000Z", "last_data_reception_at": "2022-12-10T15:01:17.000000Z", "completed_at": "2022-12-10T15:01:48.000000Z", "received_at": "2022-12-10T15:01:48.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "C super brigad!"}, "contact": {"uuid": "f3a14620-6eaf-11ed-ade7-39aa928e5f7b", "remote_id": "a091c9ae-c019-46a2-844c-32c04a216ab4", "email": null, "display_name": "", "account": {"uuid": "f3a389e0-6eaf-11ed-b866-5d327fb49877", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854378}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7c981ac0-789b-11ed-9252-3b34d403e052", "first_shown_at": "2022-12-10T15:01:12.000000Z", "last_shown_at": "2022-12-10T15:01:12.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:01:15.000000Z", "last_data_reception_at": "2022-12-10T15:01:15.000000Z", "completed_at": "2022-12-10T15:02:30.000000Z", "received_at": "2022-12-10T15:02:30.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Le planning indisponibilit\u00e9 devrait \u00eatre \u00e9tabli sur un planning mensuel et non pas hebdomadaire"}, "contact": {"uuid": "7f708960-67e7-11ed-a7e9-5f7f79636cc3", "remote_id": "98cc3282-7f76-419d-b020-77b9cc2a817f", "email": null, "display_name": "", "account": {"uuid": "7f727910-67e7-11ed-b1e3-a39489c74b44", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854379}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "69eae590-789b-11ed-8c04-65f08a74487a", "first_shown_at": "2022-12-10T15:00:41.000000Z", "last_shown_at": "2022-12-10T15:00:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:00:44.000000Z", "last_data_reception_at": "2022-12-10T15:00:44.000000Z", "completed_at": "2022-12-10T15:01:19.000000Z", "received_at": "2022-12-10T15:01:19.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pouvoir mettre ses disponibilit\u00e9 au mois et non \u00e0 la semaine !"}, "contact": {"uuid": "7c335590-6b49-11ed-b269-adbd23fd6b17", "remote_id": "292d8ce8-73cb-44ab-bec6-3eb72d637e19", "email": null, "display_name": "", "account": {"uuid": "7c3565e0-6b49-11ed-9b35-abf0a71e41e3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854379}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5a1b68e0-789b-11ed-b5c5-378998dcedb5", "first_shown_at": "2022-12-10T15:00:14.000000Z", "last_shown_at": "2022-12-10T15:00:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:00:31.000000Z", "last_data_reception_at": "2022-12-10T15:00:31.000000Z", "completed_at": "2022-12-10T15:00:42.000000Z", "received_at": "2022-12-10T15:00:42.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "More work"}, "contact": {"uuid": "89733ca0-76ea-11ed-8810-6d084cabead0", "remote_id": "6890af19-fadc-4c22-8fbf-9506ec1059c7", "email": null, "display_name": "", "account": {"uuid": "89752750-76ea-11ed-b159-c75c571da4cc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854379}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "54c2a5d0-789b-11ed-9155-8598623bd672", "first_shown_at": "2022-12-10T15:00:05.000000Z", "last_shown_at": "2022-12-10T15:00:05.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T15:00:09.000000Z", "last_data_reception_at": "2022-12-10T15:00:09.000000Z", "completed_at": "2022-12-10T15:01:22.000000Z", "received_at": "2022-12-10T15:01:22.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je n ai juste des fois les avis m\u00e9diocre"}, "contact": {"uuid": "224ae7d0-670a-11ed-a4ff-c3f53229cab6", "remote_id": "f5e9e126-b914-4b18-8f7c-2ceb1dbd1bde", "email": null, "display_name": "", "account": {"uuid": "224cc440-670a-11ed-8b8a-23fd2b4c0fc3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854379}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "29f2f5c0-789b-11ed-9ebe-25994f863dc0", "first_shown_at": "2022-12-10T14:58:53.000000Z", "last_shown_at": "2022-12-10T14:58:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:58:58.000000Z", "last_data_reception_at": "2022-12-10T14:59:06.000000Z", "completed_at": "2022-12-10T14:59:16.000000Z", "received_at": "2022-12-10T14:59:16.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pas assez de mission"}, "contact": {"uuid": "1e27e5e0-66d3-11ed-ae2a-b7b7b82e1590", "remote_id": "8db5f7e0-2e48-43ea-b9c8-878c00b85e81", "email": null, "display_name": "", "account": {"uuid": "1e297960-66d3-11ed-8b0e-6b9b0dc25a7c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854379}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "206f3030-789b-11ed-9119-f7d9f0c442dd", "first_shown_at": "2022-12-10T14:58:37.000000Z", "last_shown_at": "2022-12-10T14:58:37.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:58:49.000000Z", "last_data_reception_at": "2022-12-10T14:58:49.000000Z", "completed_at": "2022-12-10T15:01:03.000000Z", "received_at": "2022-12-10T15:01:03.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Vraiment l'application brigad \u00e0 des bonnes missions que pr\u00e9f\u00e8re"}, "contact": {"uuid": "d65c1100-66d5-11ed-a473-f7e1aec5912a", "remote_id": "7c9c548b-1fa7-4837-943b-2df1228568db", "email": null, "display_name": "", "account": {"uuid": "d65e22f0-66d5-11ed-b134-1d8067eca4ee", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854379}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "22663150-789b-11ed-91a9-47743e4efbe5", "first_shown_at": "2022-12-10T14:58:41.000000Z", "last_shown_at": "2022-12-10T14:58:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:58:47.000000Z", "last_data_reception_at": "2022-12-10T14:58:47.000000Z", "completed_at": "2022-12-10T14:59:10.000000Z", "received_at": "2022-12-10T14:59:10.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Sur les note mettre des vrai note que des Smiley"}, "contact": {"uuid": "6cd49740-6765-11ed-8350-3792aa018e48", "remote_id": "8d41cfd0-7cc4-44e9-9368-ab9a6be3cdfd", "email": null, "display_name": "", "account": {"uuid": "6cd736f0-6765-11ed-87ca-7d55e71ee618", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854380}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "07477b30-789b-11ed-a07b-639fb09fc1eb", "first_shown_at": "2022-12-10T14:57:55.000000Z", "last_shown_at": "2022-12-10T14:57:55.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:57:58.000000Z", "last_data_reception_at": "2022-12-10T14:57:58.000000Z", "completed_at": "2022-12-10T14:58:16.000000Z", "received_at": "2022-12-10T14:58:16.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "\u00c9vitez les bugs sur l'application"}, "contact": {"uuid": "cddf06a0-66be-11ed-8965-c7e5d231bfb8", "remote_id": "36a4e507-ffdd-431d-921e-e8606ee86020", "email": null, "display_name": "", "account": {"uuid": "cde11130-66be-11ed-80dc-3bffbc84eb8e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854380}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "02f07ff0-789b-11ed-8961-fdcb987d8dee", "first_shown_at": "2022-12-10T14:57:48.000000Z", "last_shown_at": "2022-12-10T14:57:48.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:57:55.000000Z", "last_data_reception_at": "2022-12-10T14:57:55.000000Z", "completed_at": "2022-12-10T14:59:55.000000Z", "received_at": "2022-12-10T14:59:55.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je pense, \u00e0 titre personnel, que laisser le temps de joindre l\u2019employeur, avant la validation d\u00e9finitive de la missions (pour s\u2019assurer que l\u2019on correspond bien au crit\u00e8re recherch\u00e9) serait int\u00e9ressant pour tout le monde."}, "contact": {"uuid": "39dcf2d0-66cd-11ed-b77f-41c8f57ac185", "remote_id": "0567afaa-eee4-4c1f-b59c-0efe1cbab67a", "email": null, "display_name": "", "account": {"uuid": "39dee370-66cd-11ed-a020-d3435d3608df", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854380}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ee578810-789a-11ed-ac9c-67340dcc0d74", "first_shown_at": "2022-12-10T14:57:13.000000Z", "last_shown_at": "2022-12-10T14:57:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:57:31.000000Z", "last_data_reception_at": "2022-12-10T14:57:31.000000Z", "completed_at": "2022-12-10T14:57:59.000000Z", "received_at": "2022-12-10T14:57:59.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Plus de missions"}, "contact": {"uuid": "f4cf9640-66fb-11ed-b14a-4768853b8306", "remote_id": "de794c72-05b5-4ee7-842e-f3ba905f2a1f", "email": null, "display_name": "", "account": {"uuid": "f4d16120-66fb-11ed-bf4b-ffd8f5c93f90", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854380}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ab186170-789a-11ed-8e78-a77a88712a78", "first_shown_at": "2022-12-10T14:55:20.000000Z", "last_shown_at": "2022-12-10T14:55:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:55:23.000000Z", "last_data_reception_at": "2022-12-10T14:55:23.000000Z", "completed_at": "2022-12-10T14:55:49.000000Z", "received_at": "2022-12-10T14:55:49.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Accepter les applications sur l\u2019Apple Watch r\u00e9duire le p\u00e9rim\u00e8tre de recherche que \u00e0 Lyon m\u00eame et pas sa p\u00e9riph\u00e9rie"}, "contact": {"uuid": "cdc334b0-66cd-11ed-970a-45632b322e7e", "remote_id": "6018d66b-abbf-467f-b984-3844159e6f20", "email": null, "display_name": "", "account": {"uuid": "cdc551e0-66cd-11ed-9409-e5b62385b110", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854380}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5cb19bd0-789a-11ed-afcb-efd2decc69c5", "first_shown_at": "2022-12-10T14:53:09.000000Z", "last_shown_at": "2022-12-10T14:53:09.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T14:53:16.000000Z", "last_data_reception_at": "2022-12-10T14:54:28.000000Z", "completed_at": "2022-12-10T14:54:20.000000Z", "received_at": "2022-12-10T14:54:20.000000Z", "dismissed_at": "2022-12-10T14:54:30.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "En acqu\u00e9rant plus de mission"}, "contact": {"uuid": "a700be20-6fc2-11ed-8a55-c991a29dde1d", "remote_id": "23357f10-259d-44e2-8538-5a66c39d911a", "email": null, "display_name": "", "account": {"uuid": "a70275b0-6fc2-11ed-893e-475f6eb3955a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854380}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "82f7c840-789a-11ed-8cd0-39478b2d9f34", "first_shown_at": "2022-12-10T14:54:13.000000Z", "last_shown_at": "2022-12-10T14:54:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:54:24.000000Z", "last_data_reception_at": "2022-12-10T14:54:24.000000Z", "completed_at": "2022-12-10T14:54:49.000000Z", "received_at": "2022-12-10T14:54:49.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Par mon travail et mon courage"}, "contact": {"uuid": "ac8e1160-6706-11ed-bc1e-19e684747aab", "remote_id": "6ae2ba24-2668-4835-a00f-93f4fa07b380", "email": null, "display_name": "", "account": {"uuid": "ac90e3c0-6706-11ed-b5de-9fd9f5c3060f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854380}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7b2a4f30-789a-11ed-9c77-85f5d0ac3aec", "first_shown_at": "2022-12-10T14:54:00.000000Z", "last_shown_at": "2022-12-10T14:54:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:54:04.000000Z", "last_data_reception_at": "2022-12-10T14:54:04.000000Z", "completed_at": "2022-12-10T14:54:37.000000Z", "received_at": "2022-12-10T14:54:37.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Bien, avoir plus d'offre le week-end"}, "contact": {"uuid": "12ee95c0-66bd-11ed-84e0-bb0a5a724b6a", "remote_id": "0080fd19-1c0c-48ec-b6c5-c544a43a58a4", "email": null, "display_name": "", "account": {"uuid": "12f06540-66bd-11ed-900f-45998c5bdffa", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854381}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "655ee7e0-789a-11ed-a3ba-b58f03f56ad1", "first_shown_at": "2022-12-10T14:53:23.000000Z", "last_shown_at": "2022-12-10T14:53:24.000000Z", "show_counter": 3, "first_data_reception_at": "2022-12-10T14:53:32.000000Z", "last_data_reception_at": "2022-12-10T14:53:32.000000Z", "completed_at": "2022-12-10T14:53:43.000000Z", "received_at": "2022-12-10T14:53:43.000000Z", "dismissed_at": "2022-12-10T14:53:48.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rien \u00e0 dire parfait"}, "contact": {"uuid": "09e4ee50-6702-11ed-9fea-07c139fbd088", "remote_id": "966f02e1-0c2b-4a3d-a3c5-b2af4096c5c6", "email": null, "display_name": "", "account": {"uuid": "09e67f00-6702-11ed-9889-fd34bfb70a8c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854381}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3b1b98c0-789a-11ed-b5c0-516a2e591c7e", "first_shown_at": "2022-12-10T14:52:13.000000Z", "last_shown_at": "2022-12-10T14:52:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:52:17.000000Z", "last_data_reception_at": "2022-12-10T14:52:17.000000Z", "completed_at": "2022-12-10T14:52:28.000000Z", "received_at": "2022-12-10T14:52:28.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Very goood"}, "contact": {"uuid": "a077f930-66d1-11ed-b914-a5902cc92a38", "remote_id": "d194346b-1503-4088-a988-2be0df42ea45", "email": null, "display_name": "", "account": {"uuid": "a0793b20-66d1-11ed-a07d-73868558d8eb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854381}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2ff06510-789a-11ed-88da-df1b8cdd2c00", "first_shown_at": "2022-12-10T14:51:54.000000Z", "last_shown_at": "2022-12-10T14:51:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:51:57.000000Z", "last_data_reception_at": "2022-12-10T14:51:57.000000Z", "completed_at": "2022-12-10T14:52:12.000000Z", "received_at": "2022-12-10T14:52:12.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellente"}, "contact": {"uuid": "a4df7280-66bd-11ed-bc23-bb43b269752d", "remote_id": "a32fbb20-e93c-4794-956b-21fd0b5cbfd6", "email": null, "display_name": "", "account": {"uuid": "a4e11870-66bd-11ed-8524-f7e74f54388d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854381}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "295198f0-789a-11ed-a85b-c13ae39aea05", "first_shown_at": "2022-12-10T14:51:43.000000Z", "last_shown_at": "2022-12-10T14:51:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:51:45.000000Z", "last_data_reception_at": "2022-12-10T14:51:45.000000Z", "completed_at": "2022-12-10T14:51:57.000000Z", "received_at": "2022-12-10T14:51:57.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "un peu plus de missions"}, "contact": {"uuid": "920fb2d0-66ca-11ed-acae-a1cba8c10c40", "remote_id": "2c308919-c25f-4f0e-8112-7d5e46a89e90", "email": null, "display_name": "", "account": {"uuid": "9211c560-66ca-11ed-8133-11fef3981689", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854381}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1eb488d0-789a-11ed-bf34-310ac1cc5b63", "first_shown_at": "2022-12-10T14:51:25.000000Z", "last_shown_at": "2022-12-10T14:51:25.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:51:36.000000Z", "last_data_reception_at": "2022-12-10T14:51:36.000000Z", "completed_at": "2022-12-10T14:52:33.000000Z", "received_at": "2022-12-10T14:52:33.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Envoy\u00e9 suivant la mission"}, "contact": {"uuid": "bc947e00-6708-11ed-8030-3167686c0df9", "remote_id": "7805f8f8-d2b6-4620-aa00-523f3e59478e", "email": null, "display_name": "", "account": {"uuid": "bc966380-6708-11ed-9c93-f99c69d1f20e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854381}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e4de60f0-7899-11ed-8efd-47f7f6eff5cd", "first_shown_at": "2022-12-10T14:49:48.000000Z", "last_shown_at": "2022-12-10T14:49:48.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:50:00.000000Z", "last_data_reception_at": "2022-12-10T14:50:00.000000Z", "completed_at": "2022-12-10T14:50:29.000000Z", "received_at": "2022-12-10T14:50:29.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Tr\u00e8s bien"}, "contact": {"uuid": "96972810-69d6-11ed-882d-5fab4cf25659", "remote_id": "fd86ed30-9888-4a30-83a5-fb7295506912", "email": null, "display_name": "", "account": {"uuid": "96988ef0-69d6-11ed-b9e2-fd8c33b6628a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854382}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d192afc0-7897-11ed-826c-5ff3950e9a76", "first_shown_at": "2022-12-10T14:34:56.000000Z", "last_shown_at": "2022-12-10T14:34:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:49:26.000000Z", "last_data_reception_at": "2022-12-10T14:49:26.000000Z", "completed_at": "2022-12-10T14:49:40.000000Z", "received_at": "2022-12-10T14:49:40.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Plus de missions \ud83d\ude0a"}, "contact": {"uuid": "a0cb4e20-66c2-11ed-9a0c-5d3e9f300009", "remote_id": "b87afb69-1319-4a1e-a0fd-cecf65d9cbde", "email": null, "display_name": "", "account": {"uuid": "a0cc9310-66c2-11ed-941b-bde0598d62a4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854382}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "cb87a680-7899-11ed-b034-63722aa34562", "first_shown_at": "2022-12-10T14:49:05.000000Z", "last_shown_at": "2022-12-10T14:49:05.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:49:20.000000Z", "last_data_reception_at": "2022-12-10T14:49:20.000000Z", "completed_at": "2022-12-10T14:50:18.000000Z", "received_at": "2022-12-10T14:50:18.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "better payment"}, "contact": {"uuid": "47ce4f80-66d2-11ed-beed-c3b996b71b86", "remote_id": "4edfe533-4ea7-42fe-8cf9-f1a1f79b0040", "email": null, "display_name": "", "account": {"uuid": "47cff250-66d2-11ed-aad8-399b5f927851", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854382}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b9ca2aa0-7899-11ed-8322-a957f256f447", "first_shown_at": "2022-12-10T14:48:36.000000Z", "last_shown_at": "2022-12-10T14:48:36.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:48:36.000000Z", "last_data_reception_at": "2022-12-10T14:48:42.000000Z", "completed_at": "2022-12-10T14:49:06.000000Z", "received_at": "2022-12-10T14:49:06.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "6", "how_could_we_improve_your_experience_with_brigad": "Reduce charges"}, "contact": {"uuid": "36c6e920-6854-11ed-8f2a-47ee5330625d", "remote_id": "5f256e5c-6dee-4a8a-8fd4-2b3fdfb87217", "email": null, "display_name": "", "account": {"uuid": "36c83da0-6854-11ed-8ede-35b47f410fdb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854382}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a0220540-7899-11ed-92e8-7f33602eb6b4", "first_shown_at": "2022-12-10T14:47:53.000000Z", "last_shown_at": "2022-12-10T14:47:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:48:15.000000Z", "last_data_reception_at": "2022-12-10T14:48:15.000000Z", "completed_at": "2022-12-10T14:48:50.000000Z", "received_at": "2022-12-10T14:48:50.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En me donnant plus de mission"}, "contact": {"uuid": "373925d0-6701-11ed-a37c-47e66da1cad7", "remote_id": "8c4a1504-aff5-49fa-aaba-1a975e1d574c", "email": null, "display_name": "", "account": {"uuid": "373b0e40-6701-11ed-ae9f-4b0e21ad3a04", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854382}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "817921b0-7899-11ed-8d87-c7eb64ffacba", "first_shown_at": "2022-12-10T14:47:01.000000Z", "last_shown_at": "2022-12-10T14:47:01.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:47:08.000000Z", "last_data_reception_at": "2022-12-10T14:47:08.000000Z", "completed_at": "2022-12-10T14:47:50.000000Z", "received_at": "2022-12-10T14:47:50.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "A wonderful experience"}, "contact": {"uuid": "dbe0bea0-66e0-11ed-a85a-2dcae99be4d1", "remote_id": "e3352bd2-e1a1-45c7-8909-2d473015b16f", "email": null, "display_name": "", "account": {"uuid": "dbe20020-66e0-11ed-a1c6-5f445abd8b81", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854382}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "65929500-7899-11ed-99a8-733238ba3d91", "first_shown_at": "2022-12-10T14:46:14.000000Z", "last_shown_at": "2022-12-10T14:46:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:46:19.000000Z", "last_data_reception_at": "2022-12-10T14:46:26.000000Z", "completed_at": "2022-12-10T14:47:25.000000Z", "received_at": "2022-12-10T14:47:25.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "G\u00e9rer les rapports de force entre les auto-entrepreneurs et les restaurateurs de mani\u00e8re \u00e0 ce qils soient \u00e9quilibr\u00e9s."}, "contact": {"uuid": "c96cb5e0-6759-11ed-83e4-7d549cb64088", "remote_id": "2d9241f1-676d-4c73-9636-2a79178f5e73", "email": null, "display_name": "", "account": {"uuid": "c96f0230-6759-11ed-901e-6fd679ad69bb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854383}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "391b0f80-7899-11ed-a2e3-c30d62c5a551", "first_shown_at": "2022-12-10T14:45:00.000000Z", "last_shown_at": "2022-12-10T14:45:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:45:06.000000Z", "last_data_reception_at": "2022-12-10T14:45:15.000000Z", "completed_at": "2022-12-10T14:45:58.000000Z", "received_at": "2022-12-10T14:45:58.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "7", "how_could_we_improve_your_experience_with_brigad": "Baisser les commissions des Brigad sur les missions ce serais cool :)"}, "contact": {"uuid": "b8418bd0-6720-11ed-b6cd-873f1d446ac3", "remote_id": "ea5a4273-9f3c-40c4-9208-8ec1dce6a10c", "email": null, "display_name": "", "account": {"uuid": "b8431650-6720-11ed-8400-2db2d96a528b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854383}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "263b3a00-7899-11ed-940e-17e3bffb68d3", "first_shown_at": "2022-12-10T14:44:28.000000Z", "last_shown_at": "2022-12-10T14:44:28.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:44:54.000000Z", "last_data_reception_at": "2022-12-10T14:44:54.000000Z", "completed_at": "2022-12-10T14:46:26.000000Z", "received_at": "2022-12-10T14:46:26.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En donnant plus de mission \ud83d\ude0e"}, "contact": {"uuid": "8e7f3330-672a-11ed-a5b6-191567faecd6", "remote_id": "dcff93d3-3a43-4fa0-8f8f-bd62d7e0fb33", "email": null, "display_name": "", "account": {"uuid": "8e80fbc0-672a-11ed-b636-7fbc2225230a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854383}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "23ee8870-7899-11ed-b033-53a3d35cd9d1", "first_shown_at": "2022-12-10T14:44:24.000000Z", "last_shown_at": "2022-12-10T14:44:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:44:37.000000Z", "last_data_reception_at": "2022-12-10T14:44:37.000000Z", "completed_at": "2022-12-10T14:44:53.000000Z", "received_at": "2022-12-10T14:44:53.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Plus des missions"}, "contact": {"uuid": "5f550bd0-66b8-11ed-a0d0-8395e0fb7333", "remote_id": "6f7a88ea-865b-4879-96eb-b203b8da1e0a", "email": null, "display_name": "", "account": {"uuid": "5f570220-66b8-11ed-9972-576d293d5938", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854383}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0f7a4dd0-7899-11ed-b7cb-1d827bec10c8", "first_shown_at": "2022-12-10T14:43:50.000000Z", "last_shown_at": "2022-12-10T14:43:50.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:43:53.000000Z", "last_data_reception_at": "2022-12-10T14:43:53.000000Z", "completed_at": "2022-12-10T14:45:33.000000Z", "received_at": "2022-12-10T14:45:33.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Faire en sorte d\u2019\u00eatre plus \u00e0 l\u2019\u00e9coute concernant les abus de certains employeurs qui savent qu\u2019il y\u2019a des note attribu\u00e9 aux talents et en profite l\u00e0-dessus."}, "contact": {"uuid": "d5e8af90-670b-11ed-beb2-5512cb857338", "remote_id": "016479f9-c6cc-462e-b9fd-c8de5f0c5a44", "email": null, "display_name": "", "account": {"uuid": "d5ea96c0-670b-11ed-aafb-79c0095ebf05", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854384}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "fcb81700-7898-11ed-8dc0-93ff8b3bef68", "first_shown_at": "2022-12-10T14:43:18.000000Z", "last_shown_at": "2022-12-10T14:43:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:43:26.000000Z", "last_data_reception_at": "2022-12-10T14:43:26.000000Z", "completed_at": "2022-12-10T14:45:05.000000Z", "received_at": "2022-12-10T14:45:05.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Mieux consid\u00e9r\u00e9 ce que subissent les brigadiers sur les missions, ils nous arrive de tomber sur des manager toxicomanes"}, "contact": {"uuid": "a1e35190-6710-11ed-b6f9-377bfc433ae1", "remote_id": "8be394ab-ed94-4389-b984-5a5992137e39", "email": null, "display_name": "", "account": {"uuid": "a1e56fe0-6710-11ed-a1c9-ad9707e1c462", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854384}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e5606110-7898-11ed-9525-4f2ce3aa195a", "first_shown_at": "2022-12-10T14:42:39.000000Z", "last_shown_at": "2022-12-10T14:42:39.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:42:48.000000Z", "last_data_reception_at": "2022-12-10T14:42:48.000000Z", "completed_at": "2022-12-10T14:44:18.000000Z", "received_at": "2022-12-10T14:44:18.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Brigad is the an agency \nI really love working for Brigad\ud83d\ude01\ud83d\ude01"}, "contact": {"uuid": "61405270-6723-11ed-a5c1-c3a23c23ef0f", "remote_id": "dfdf5d79-6e53-43bb-b7bb-2d4ccaaa7535", "email": null, "display_name": "", "account": {"uuid": "6141d960-6723-11ed-bc3a-f17f0124f3a1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854384}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e0861340-7898-11ed-a4c1-9f19df84e341", "first_shown_at": "2022-12-10T14:42:31.000000Z", "last_shown_at": "2022-12-10T14:42:31.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:42:42.000000Z", "last_data_reception_at": "2022-12-10T14:42:42.000000Z", "completed_at": "2022-12-10T14:46:51.000000Z", "received_at": "2022-12-10T14:46:51.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Sur l\u2019annulation de missions parfois on accepte des missions qui doivent d\u00e9marrer \u00e0 2h pas 24h si on voit que c\u2019est pas facile d\u2019arriver \u00e0 temps peut nous pousser \u00e0 renoncer mais brigad doit prendre en compte que de mettre en cause notre fiabili"}, "contact": {"uuid": "92cbfb70-6715-11ed-a0c7-317974998f1b", "remote_id": "4e3eab13-829e-4f2e-966c-3259bf5057f9", "email": null, "display_name": "", "account": {"uuid": "92cda280-6715-11ed-bdf3-2b5a9f76ba2f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854384}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "920e5370-7898-11ed-b5c5-e9a5f5bee785", "first_shown_at": "2022-12-10T14:40:19.000000Z", "last_shown_at": "2022-12-10T14:40:19.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T14:40:23.000000Z", "last_data_reception_at": "2022-12-10T14:40:23.000000Z", "completed_at": "2022-12-10T14:41:36.000000Z", "received_at": "2022-12-10T14:41:36.000000Z", "dismissed_at": "2022-12-10T14:41:53.000000Z", "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Possibilit\u00e9 de se former pour ajouter une nouvelle comp\u00e9tence"}, "contact": {"uuid": "e6bf5140-66cc-11ed-bab0-e7a8878b4000", "remote_id": "e33b5358-7304-4f53-b26b-80992383a7fc", "email": null, "display_name": "", "account": {"uuid": "e6c1ad60-66cc-11ed-ad9c-dddc6a3fb6e8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854384}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8fcd3bd0-7898-11ed-a5f3-9dbb4a3074e7", "first_shown_at": "2022-12-10T14:40:16.000000Z", "last_shown_at": "2022-12-10T14:40:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:40:21.000000Z", "last_data_reception_at": "2022-12-10T14:40:21.000000Z", "completed_at": "2022-12-10T14:40:55.000000Z", "received_at": "2022-12-10T14:40:55.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En proposant les missions \u00e0 tout le monde en m\u00eame temps pour donner la chance \u00e0 tous"}, "contact": {"uuid": "4e205930-66bb-11ed-a04a-eb7c7d5b8fba", "remote_id": "1faae3bf-7396-4654-9d9a-737a4148e3c1", "email": null, "display_name": "", "account": {"uuid": "4e2353b0-66bb-11ed-bf09-9d488bd97f94", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854385}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8ed45a70-7898-11ed-b9a8-afd09d823cb6", "first_shown_at": "2022-12-10T14:40:14.000000Z", "last_shown_at": "2022-12-10T14:40:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:40:18.000000Z", "last_data_reception_at": "2022-12-10T14:40:18.000000Z", "completed_at": "2022-12-10T14:40:35.000000Z", "received_at": "2022-12-10T14:40:35.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Super cool"}, "contact": {"uuid": "7943c8a0-6726-11ed-be31-119d82f48fc0", "remote_id": "96060b17-80c6-4f5e-84b0-dee34e5179dd", "email": null, "display_name": "", "account": {"uuid": "79457c40-6726-11ed-b085-450bc13465f8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854385}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "610d6760-7898-11ed-9848-6717635c8c06", "first_shown_at": "2022-12-10T14:38:57.000000Z", "last_shown_at": "2022-12-10T14:38:57.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:39:01.000000Z", "last_data_reception_at": "2022-12-10T14:39:01.000000Z", "completed_at": "2022-12-10T14:39:14.000000Z", "received_at": "2022-12-10T14:39:14.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Meilleur application , efficace et bien fait"}, "contact": {"uuid": "6fb76800-66bd-11ed-be53-b1170900ed64", "remote_id": "5e23b38f-99be-4567-a105-d0eabda14a17", "email": null, "display_name": "", "account": {"uuid": "6fb8d170-66bd-11ed-98f5-910d5dfd3b9e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854385}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4a6ca0c0-7898-11ed-a978-2969b5836f37", "first_shown_at": "2022-12-10T14:38:19.000000Z", "last_shown_at": "2022-12-10T14:38:19.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:38:22.000000Z", "last_data_reception_at": "2022-12-10T14:38:22.000000Z", "completed_at": "2022-12-10T14:39:24.000000Z", "received_at": "2022-12-10T14:39:24.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je leur remercie de m\u2019aider m\u00eame si en se moment c\u2019est plus compliqu\u00e9 pour moi de l\u2019ordre du personnel. Brigade continuez vous assurez"}, "contact": {"uuid": "5de2ba50-6700-11ed-98e5-6719ee65cb60", "remote_id": "241614ce-bc8b-41f3-bd95-c5790ed33010", "email": null, "display_name": "", "account": {"uuid": "5de4aa00-6700-11ed-a63f-f96eae761e60", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854385}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "48c68d00-7898-11ed-896c-8761632543af", "first_shown_at": "2022-12-10T14:38:16.000000Z", "last_shown_at": "2022-12-10T14:38:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:38:20.000000Z", "last_data_reception_at": "2022-12-10T14:38:20.000000Z", "completed_at": "2022-12-10T14:38:33.000000Z", "received_at": "2022-12-10T14:38:33.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Pouvoir vous appeler"}, "contact": {"uuid": "9d7e19b0-66be-11ed-8eeb-6926936b324c", "remote_id": "88f72b47-bb4f-47ea-ac67-aa0f9bf325d6", "email": null, "display_name": "", "account": {"uuid": "9d809550-66be-11ed-b192-6b715da67db8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854385}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "44957ac0-7898-11ed-bdac-8d903ca8644e", "first_shown_at": "2022-12-10T14:38:09.000000Z", "last_shown_at": "2022-12-10T14:38:09.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:38:13.000000Z", "last_data_reception_at": "2022-12-10T14:38:13.000000Z", "completed_at": "2022-12-10T14:40:01.000000Z", "received_at": "2022-12-10T14:40:01.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En imposant aux entreprises de mettre a la disposition des plongeurs les mat\u00e9riaux obligatoires et ad\u00e9quates par exemple des gants de protection pour les produits chimiques."}, "contact": {"uuid": "0d98f640-6725-11ed-b353-9177e82ea97a", "remote_id": "a5ba8443-486b-4d17-8e31-45787cdcda3d", "email": null, "display_name": "", "account": {"uuid": "0d9b3550-6725-11ed-a4af-c713da9b0fb1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854385}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4377e550-7898-11ed-b15b-cb59bb53496f", "first_shown_at": "2022-12-10T14:38:08.000000Z", "last_shown_at": "2022-12-10T14:38:08.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:38:12.000000Z", "last_data_reception_at": "2022-12-10T14:38:12.000000Z", "completed_at": "2022-12-10T14:39:19.000000Z", "received_at": "2022-12-10T14:39:19.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "La possibilit\u00e9 de r\u00e9cup\u00e9rer les factures sur un PC via un navigateur internet"}, "contact": {"uuid": "2b8590c0-66c7-11ed-b0ff-0d47ddda7b99", "remote_id": "6cf46c1a-6ec6-4d35-8f1f-16f73803474e", "email": null, "display_name": "", "account": {"uuid": "2b878b40-66c7-11ed-b052-7da20c6166b5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854386}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3a4077c0-7898-11ed-846a-af4c7351335d", "first_shown_at": "2022-12-10T14:37:52.000000Z", "last_shown_at": "2022-12-10T14:37:52.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:38:08.000000Z", "last_data_reception_at": "2022-12-10T14:38:08.000000Z", "completed_at": "2022-12-10T14:38:40.000000Z", "received_at": "2022-12-10T14:38:40.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Non, il y a rien \u00e0 am\u00e9liorer vous \u00eates au top!!"}, "contact": {"uuid": "b4727970-66c2-11ed-afbf-1f2aa454c37d", "remote_id": "e7530255-31f7-4200-ae1f-56577e9f8642", "email": null, "display_name": "", "account": {"uuid": "b474a270-66c2-11ed-8d6e-dfd1d0e2b83f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854386}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "41770860-7898-11ed-acde-b5e82ae89e84", "first_shown_at": "2022-12-10T14:38:04.000000Z", "last_shown_at": "2022-12-10T14:38:04.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:38:06.000000Z", "last_data_reception_at": "2022-12-10T14:38:06.000000Z", "completed_at": "2022-12-10T14:38:46.000000Z", "received_at": "2022-12-10T14:38:46.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En ayant plus de missions et pas que pour le lendemain afin de pouvoir organiser mon planning au moins une semaine \u00e0 l\u2019avance"}, "contact": {"uuid": "0f099280-672d-11ed-8dab-3b9d8fcfd2ee", "remote_id": "08edab47-d7c1-4ac6-a093-b62eb5b89472", "email": null, "display_name": "", "account": {"uuid": "0f0ab3e0-672d-11ed-b175-1908820d26ee", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854386}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "29553190-7898-11ed-8f9c-511b7c5b6c79", "first_shown_at": "2022-12-10T14:37:24.000000Z", "last_shown_at": "2022-12-10T14:37:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:37:32.000000Z", "last_data_reception_at": "2022-12-10T14:37:32.000000Z", "completed_at": "2022-12-10T14:38:14.000000Z", "received_at": "2022-12-10T14:38:14.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Pour le moment je suis tr\u00e8s satisfait"}, "contact": {"uuid": "2defb180-68fb-11ed-afe3-01ff9002b284", "remote_id": "318c53cc-0381-4420-96b6-5a5f28747e5d", "email": null, "display_name": "", "account": {"uuid": "2df1a8f0-68fb-11ed-b486-655c05e48fb6", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854386}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "114b44d0-7898-11ed-8be4-d7b2634c153a", "first_shown_at": "2022-12-10T14:36:43.000000Z", "last_shown_at": "2022-12-10T14:36:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:37:01.000000Z", "last_data_reception_at": "2022-12-10T14:37:01.000000Z", "completed_at": "2022-12-10T14:37:32.000000Z", "received_at": "2022-12-10T14:37:32.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Augmentation de salaire, prise en charge transports"}, "contact": {"uuid": "cb5bff60-66cb-11ed-b55b-db072a3ec091", "remote_id": "ffb6a512-1789-4df3-a834-61ce8a3fa625", "email": null, "display_name": "", "account": {"uuid": "cb5d85a0-66cb-11ed-a369-7ff1934a1453", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854386}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "066e0d60-7898-11ed-8057-350a554956e4", "first_shown_at": "2022-12-10T14:36:25.000000Z", "last_shown_at": "2022-12-10T14:36:25.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:36:48.000000Z", "last_data_reception_at": "2022-12-10T14:36:48.000000Z", "completed_at": "2022-12-10T14:37:10.000000Z", "received_at": "2022-12-10T14:37:10.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "All good"}, "contact": {"uuid": "87ab4170-66b9-11ed-9c54-613d9279d16d", "remote_id": "1c5a83f6-8620-4e99-8472-c2c8727aa525", "email": null, "display_name": "", "account": {"uuid": "87ad2240-66b9-11ed-9bc8-b7a939cbc6cb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854386}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "007981b0-7898-11ed-8ff2-7397cee9ad7b", "first_shown_at": "2022-12-10T14:36:15.000000Z", "last_shown_at": "2022-12-10T14:36:15.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:36:18.000000Z", "last_data_reception_at": "2022-12-10T14:36:18.000000Z", "completed_at": "2022-12-10T14:36:25.000000Z", "received_at": "2022-12-10T14:36:25.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Brigad is perfect"}, "contact": {"uuid": "3881cdb0-68e4-11ed-a8c3-65f2a13f5c3c", "remote_id": "171aaffe-1069-4bc1-bc5f-00887a0e514b", "email": null, "display_name": "", "account": {"uuid": "38831290-68e4-11ed-af23-fb41a8b39620", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854387}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "fb14fc70-7897-11ed-8ef5-f186fc1e63a3", "first_shown_at": "2022-12-10T14:36:06.000000Z", "last_shown_at": "2022-12-10T14:36:06.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:36:16.000000Z", "last_data_reception_at": "2022-12-10T14:36:16.000000Z", "completed_at": "2022-12-10T14:37:30.000000Z", "received_at": "2022-12-10T14:37:30.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Too long pay process for someone who is new in London and needs cash right away!"}, "contact": {"uuid": "14e25a70-68d0-11ed-a10b-9f37508a07a1", "remote_id": "7560287c-1b3e-468e-b97a-3f98a7ecab32", "email": null, "display_name": "", "account": {"uuid": "14e44810-68d0-11ed-a94f-31e39a2a2528", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854387}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f9082fd0-7897-11ed-af9b-35967288d702", "first_shown_at": "2022-12-10T14:36:03.000000Z", "last_shown_at": "2022-12-10T14:36:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:36:14.000000Z", "last_data_reception_at": "2022-12-10T14:36:14.000000Z", "completed_at": "2022-12-10T14:37:21.000000Z", "received_at": "2022-12-10T14:37:21.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "You could provide more options to attract more people"}, "contact": {"uuid": "1db176a0-6819-11ed-89dc-ef3a96846fe2", "remote_id": "cdbab917-8dd5-48ec-858c-41b55a9bcd41", "email": null, "display_name": "", "account": {"uuid": "1db31850-6819-11ed-83e8-3154d14c201b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854387}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9f6f6520-7897-11ed-9665-3f8a302ee7fe", "first_shown_at": "2022-12-10T14:33:32.000000Z", "last_shown_at": "2022-12-10T14:33:32.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:33:46.000000Z", "last_data_reception_at": "2022-12-10T14:33:46.000000Z", "completed_at": "2022-12-10T14:34:33.000000Z", "received_at": "2022-12-10T14:34:33.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "More bonuses at busy times like December and summer time!!"}, "contact": {"uuid": "ff10cd00-66c5-11ed-b5ac-3d17efbb5470", "remote_id": "0ddcd793-a45d-4e83-bfb0-54c9e574669a", "email": null, "display_name": "", "account": {"uuid": "ff12bbb0-66c5-11ed-825b-893d4218fc0a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854387}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "56bf7fb0-7897-11ed-a82a-53f40754c4a1", "first_shown_at": "2022-12-10T14:31:30.000000Z", "last_shown_at": "2022-12-10T14:31:30.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:33:38.000000Z", "last_data_reception_at": "2022-12-10T14:33:38.000000Z", "completed_at": "2022-12-10T14:33:38.000000Z", "received_at": "2022-12-10T14:33:38.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En m\u2019ajoutant d autres m\u00e9tiers sur mon compte"}, "contact": {"uuid": "aea2fb90-66b9-11ed-a7ad-1574d32a9940", "remote_id": "d8e00bb0-1ef2-4c6b-a0eb-644071014b2f", "email": null, "display_name": "", "account": {"uuid": "aea4ff70-66b9-11ed-8653-e775292f7126", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854387}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "83e5a5f0-7897-11ed-9b8d-3d4a15b64e1e", "first_shown_at": "2022-12-10T14:32:46.000000Z", "last_shown_at": "2022-12-10T14:32:46.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:32:57.000000Z", "last_data_reception_at": "2022-12-10T14:32:57.000000Z", "completed_at": "2022-12-10T14:37:38.000000Z", "received_at": "2022-12-10T14:37:38.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "8", "how_could_we_improve_your_experience_with_brigad": "Merci de me poser cette question, vous pourriez m'envoyer une alerte lors de l'envoi des missions car je n'arrive pas \u00e0 attraper les missions ou vous pouvez m'avertir ou je ne sais pas moi. D\u00e9sol\u00e9e je suis vraiment d\u00e9pass\u00e9e. Merci de m'appeler"}, "contact": {"uuid": "f410dec0-6855-11ed-8007-dfd017a017d4", "remote_id": "499ba54f-cb20-4f4a-ac1e-3b8c62835da9", "email": null, "display_name": "", "account": {"uuid": "f412f590-6855-11ed-a2de-d9cd944fd843", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854388}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "85646f30-7897-11ed-ba85-c7184061abfc", "first_shown_at": "2022-12-10T14:32:49.000000Z", "last_shown_at": "2022-12-10T14:32:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:32:57.000000Z", "last_data_reception_at": "2022-12-10T14:32:57.000000Z", "completed_at": "2022-12-10T14:34:23.000000Z", "received_at": "2022-12-10T14:34:23.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Description about work must be more informative."}, "contact": {"uuid": "19ac6b10-67e5-11ed-b727-c99be7812a05", "remote_id": "2d8c9968-0ad2-4902-8753-c1f94626cc67", "email": null, "display_name": "", "account": {"uuid": "19ae8dd0-67e5-11ed-8d7a-a77fa2c9eed0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854388}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7eba4980-7897-11ed-862f-717af214c5f4", "first_shown_at": "2022-12-10T14:32:37.000000Z", "last_shown_at": "2022-12-10T14:32:37.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:32:42.000000Z", "last_data_reception_at": "2022-12-10T14:32:42.000000Z", "completed_at": "2022-12-10T14:32:50.000000Z", "received_at": "2022-12-10T14:32:50.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Amazing"}, "contact": {"uuid": "775d9860-66c4-11ed-a80d-d3ddd466b695", "remote_id": "d86044ec-6ea4-42bc-82f3-017dfe0f1a78", "email": null, "display_name": "", "account": {"uuid": "775fa3e0-66c4-11ed-858a-79b8b1de5a23", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854388}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4a844ac0-7897-11ed-9225-031eddc17c15", "first_shown_at": "2022-12-10T14:31:10.000000Z", "last_shown_at": "2022-12-10T14:31:10.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:31:14.000000Z", "last_data_reception_at": "2022-12-10T14:31:14.000000Z", "completed_at": "2022-12-10T14:31:43.000000Z", "received_at": "2022-12-10T14:31:43.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Statut,"}, "contact": {"uuid": "afa41ed0-66b8-11ed-81bb-658e0339733e", "remote_id": "6f0769e2-cbc4-4173-9dcb-03f49fc5e284", "email": null, "display_name": "", "account": {"uuid": "afa62070-66b8-11ed-8ec6-950045fdbacd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854389}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3eff2210-7897-11ed-9490-9580458bca83", "first_shown_at": "2022-12-10T14:30:51.000000Z", "last_shown_at": "2022-12-10T14:30:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:30:57.000000Z", "last_data_reception_at": "2022-12-10T14:30:57.000000Z", "completed_at": "2022-12-10T14:32:50.000000Z", "received_at": "2022-12-10T14:32:50.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "J\u2019ai ranplace le chef de cuisine j\u2019ai t\u2019ai chef de cuisine a restaurant Auchan"}, "contact": {"uuid": "1df5a1a0-6726-11ed-93e8-7736da5f0b93", "remote_id": "37bac04f-6648-40ac-a80c-c2b8ef5db6b0", "email": null, "display_name": "", "account": {"uuid": "1df7dc80-6726-11ed-83c2-054c256403e7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854389}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "36e2d0a0-7897-11ed-acb1-afd70f62708e", "first_shown_at": "2022-12-10T14:30:37.000000Z", "last_shown_at": "2022-12-10T14:30:37.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:30:39.000000Z", "last_data_reception_at": "2022-12-10T14:30:39.000000Z", "completed_at": "2022-12-10T14:31:27.000000Z", "received_at": "2022-12-10T14:31:27.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "En pouvant choisir notre taux horaire."}, "contact": {"uuid": "4d77d9a0-6b31-11ed-9266-832f458641fb", "remote_id": "57046426-aa5e-44cf-8acd-89c885247c27", "email": null, "display_name": "", "account": {"uuid": "4d7a23c0-6b31-11ed-b8d3-73398e5e612b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854389}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "28c0ad70-7897-11ed-a1a4-8de637406747", "first_shown_at": "2022-12-10T14:30:13.000000Z", "last_shown_at": "2022-12-10T14:30:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:30:16.000000Z", "last_data_reception_at": "2022-12-10T14:30:16.000000Z", "completed_at": "2022-12-10T14:30:40.000000Z", "received_at": "2022-12-10T14:30:40.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "More shifts"}, "contact": {"uuid": "97ecf980-66ea-11ed-af42-e50ef2d567fd", "remote_id": "54e61665-e864-4644-9a63-4bd460879b52", "email": null, "display_name": "", "account": {"uuid": "97eebea0-66ea-11ed-b2e7-838ef12dce72", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854389}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "fec27ce0-7896-11ed-818d-bbca24a16d1e", "first_shown_at": "2022-12-10T14:29:03.000000Z", "last_shown_at": "2022-12-10T14:29:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:29:06.000000Z", "last_data_reception_at": "2022-12-10T14:29:06.000000Z", "completed_at": "2022-12-10T14:29:13.000000Z", "received_at": "2022-12-10T14:29:13.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "0", "how_could_we_improve_your_experience_with_brigad": "Everything"}, "contact": {"uuid": "f9ada000-66c5-11ed-85f5-0b4e3d7edeaf", "remote_id": "2b10f161-385a-4e97-9a7f-2742bacf56a7", "email": null, "display_name": "", "account": {"uuid": "f9afc320-66c5-11ed-8a27-ed2119c62543", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "English speaking", "English speaking", "English speaking", "English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854389}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f72b3be0-7896-11ed-997a-e5db1c11d102", "first_shown_at": "2022-12-10T14:28:50.000000Z", "last_shown_at": "2022-12-10T14:28:50.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:28:55.000000Z", "last_data_reception_at": "2022-12-10T14:28:55.000000Z", "completed_at": "2022-12-10T14:29:15.000000Z", "received_at": "2022-12-10T14:29:15.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Excellent"}, "contact": {"uuid": "f9978c80-66d2-11ed-9e07-a3c9a2bc6a61", "remote_id": "f524539d-597b-4bae-9c64-f95ae47d2cc5", "email": null, "display_name": "", "account": {"uuid": "f99a01d0-66d2-11ed-b718-fd619669c123", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854390}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e1976400-7896-11ed-97ef-19a7c9efd938", "first_shown_at": "2022-12-10T14:28:14.000000Z", "last_shown_at": "2022-12-10T14:28:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:28:17.000000Z", "last_data_reception_at": "2022-12-10T14:28:17.000000Z", "completed_at": "2022-12-10T14:28:41.000000Z", "received_at": "2022-12-10T14:28:41.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "RAS."}, "contact": {"uuid": "c5f63950-6725-11ed-927e-f3c1d23d30db", "remote_id": "ed35fb28-1bc4-437e-b1e8-bf5055b90828", "email": null, "display_name": "", "account": {"uuid": "c5f76bf0-6725-11ed-a498-c9ae7d38ef26", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854390}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d8e4b150-7896-11ed-9161-170440fdbefd", "first_shown_at": "2022-12-10T14:27:59.000000Z", "last_shown_at": "2022-12-10T14:27:59.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:28:06.000000Z", "last_data_reception_at": "2022-12-10T14:28:06.000000Z", "completed_at": "2022-12-10T14:28:21.000000Z", "received_at": "2022-12-10T14:28:21.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "9", "how_could_we_improve_your_experience_with_brigad": "Pay quicker."}, "contact": {"uuid": "48871cb0-66df-11ed-bc1e-ebc16544860a", "remote_id": "3d77041f-6613-4808-b78f-b701244ef222", "email": null, "display_name": "", "account": {"uuid": "48891640-66df-11ed-b272-f32e55ddbaa7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854390}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d9f0a4c0-7896-11ed-aff4-af91f757880f", "first_shown_at": "2022-12-10T14:28:01.000000Z", "last_shown_at": "2022-12-10T14:28:01.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:28:05.000000Z", "last_data_reception_at": "2022-12-10T14:28:05.000000Z", "completed_at": "2022-12-10T14:29:16.000000Z", "received_at": "2022-12-10T14:29:16.000000Z", "dismissed_at": null, "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Is perfect how it is"}, "contact": {"uuid": "f34ad490-671d-11ed-85ce-399a35ad032d", "remote_id": "74ef6f6c-ac98-44fd-acd3-a9b4e658e4ca", "email": null, "display_name": "", "account": {"uuid": "f34c8310-671d-11ed-8e0a-5da74e19b682", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854390}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d6ae5620-7896-11ed-a6b2-410695fe2b6f", "first_shown_at": "2022-12-10T14:27:56.000000Z", "last_shown_at": "2022-12-10T14:27:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:28:00.000000Z", "last_data_reception_at": "2022-12-10T14:28:00.000000Z", "completed_at": "2022-12-10T14:28:37.000000Z", "received_at": "2022-12-10T14:28:37.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "\u00c9largissant les missions aux non super talents"}, "contact": {"uuid": "6b9f6e90-6926-11ed-a88b-75f5799e9c6f", "remote_id": "d405e4e3-2424-4a65-bab1-6bb5090f3028", "email": null, "display_name": "", "account": {"uuid": "6ba0b220-6926-11ed-95b8-955b7e60f4fb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854390}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d308b250-7896-11ed-9695-3ba7a5f2298f", "first_shown_at": "2022-12-10T14:27:49.000000Z", "last_shown_at": "2022-12-10T14:27:49.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:27:54.000000Z", "last_data_reception_at": "2022-12-10T14:27:54.000000Z", "completed_at": "2022-12-10T14:28:07.000000Z", "received_at": "2022-12-10T14:28:07.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Impeccable et fiable"}, "contact": {"uuid": "ef1fde50-6a36-11ed-92ac-3ddcb2cabf8c", "remote_id": "e67cb639-6bfb-4c38-b2bf-eba9d1f34dc3", "email": null, "display_name": "", "account": {"uuid": "ef2146a0-6a36-11ed-82c5-6d46e56a3d93", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854390}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b5bdd9b0-7896-11ed-8248-e7061e78e029", "first_shown_at": "2022-12-10T14:27:00.000000Z", "last_shown_at": "2022-12-10T14:27:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:27:15.000000Z", "last_data_reception_at": "2022-12-10T14:27:15.000000Z", "completed_at": "2022-12-10T14:28:51.000000Z", "received_at": "2022-12-10T14:28:51.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Je souhaiterais recevoir plus de missions pour r\u00e9compenser mon professionnalisme ainsi que mon assiduit\u00e9 \u00e0 amin travail sur Brigad \u00e0 temps plein.\nMerci par avance de votre compr\u00e9hension."}, "contact": {"uuid": "fb793130-6711-11ed-a462-571480d99dc2", "remote_id": "9468ad6f-7777-4bd6-8dad-a5ef22d377b9", "email": null, "display_name": "", "account": {"uuid": "fb7b1b20-6711-11ed-8b47-0bf57b9a3274", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "French speaking", "French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854390}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b1f4c870-7896-11ed-9c2c-372a41254127", "first_shown_at": "2022-12-10T14:26:54.000000Z", "last_shown_at": "2022-12-10T14:26:54.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-10T14:27:10.000000Z", "last_data_reception_at": "2022-12-10T14:27:10.000000Z", "completed_at": "2022-12-10T14:27:49.000000Z", "received_at": "2022-12-10T14:27:49.000000Z", "dismissed_at": "2022-12-10T14:27:59.000000Z", "form": {"uuid": "bcd7b0a0-7703-11ed-b555-77f5804e7ad5", "name": "Talent NPS - EN"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Rate increase to very busy restaurant"}, "contact": {"uuid": "41bbc0e0-6719-11ed-a746-a556c8754935", "remote_id": "dd64e973-c2c5-4ba7-9e4f-cb02cf5188fe", "email": null, "display_name": "", "account": {"uuid": "41bdb710-6719-11ed-ac3a-3faf9177c945", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["English speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854391}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a3235ad0-7896-11ed-abbe-0f74381aa221", "first_shown_at": "2022-12-10T14:26:29.000000Z", "last_shown_at": "2022-12-10T14:26:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:26:36.000000Z", "last_data_reception_at": "2022-12-10T14:26:36.000000Z", "completed_at": "2022-12-10T14:27:29.000000Z", "received_at": "2022-12-10T14:27:29.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "10", "how_could_we_improve_your_experience_with_brigad": "Nous donnez plus de missions et des missions speciaux"}, "contact": {"uuid": "e544cb70-66d1-11ed-ab90-45629fee6e82", "remote_id": "f49e1aa1-5929-4fb4-9a64-c93a2911d538", "email": null, "display_name": "", "account": {"uuid": "e54674c0-66d1-11ed-a770-b30b40152a33", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854391}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "911474a0-7896-11ed-afce-67ef88d02783", "first_shown_at": "2022-12-10T14:25:59.000000Z", "last_shown_at": "2022-12-10T14:25:59.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-10T14:26:19.000000Z", "last_data_reception_at": "2022-12-10T14:26:19.000000Z", "completed_at": "2022-12-10T14:26:56.000000Z", "received_at": "2022-12-10T14:26:56.000000Z", "dismissed_at": null, "form": {"uuid": "c42916c0-7704-11ed-86b4-0fea25b0f6d7", "name": "Talent NPS - FR"}, "data": {"nps": "4", "how_could_we_improve_your_experience_with_brigad": "Je veux travailler"}, "contact": {"uuid": "8b5451c0-6981-11ed-8a1c-5971171e8eab", "remote_id": "f5b517b9-4903-46f4-a8dd-a1dc3847ed65", "email": null, "display_name": "", "account": {"uuid": "8b570140-6981-11ed-bb05-c1a225186d1a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Talents", "Have accepted propositions"]}, "emitted_at": 1670944854391}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9fd0b220-77d1-11ed-a5be-89cd4a612c9a", "first_shown_at": "2022-12-09T14:56:13.000000Z", "last_shown_at": "2022-12-09T14:56:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-09T14:56:16.000000Z", "last_data_reception_at": "2022-12-09T14:56:16.000000Z", "completed_at": "2022-12-09T14:57:08.000000Z", "received_at": "2022-12-09T14:57:08.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "0", "how_can_we_improve_your_experience": "Send me a racist chef who cancelled without any issue"}, "contact": {"uuid": "f9181070-4b3e-11ed-a3af-c9a038fc71de", "remote_id": "a64df49f-f25d-43ca-8b6f-49305c60f7a7", "email": "wolf@wolfysbar.com", "display_name": "", "account": {"uuid": "f91abe00-4b3e-11ed-82ce-ddf9e027696f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854391}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c9ef9df0-779c-11ed-b2fe-b311a323b0bc", "first_shown_at": "2022-12-09T08:38:00.000000Z", "last_shown_at": "2022-12-09T08:38:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-09T08:41:07.000000Z", "last_data_reception_at": "2022-12-09T08:41:07.000000Z", "completed_at": "2022-12-09T08:41:07.000000Z", "received_at": "2022-12-09T08:41:07.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "ea449d50-6210-11ed-b688-455f5a407fec", "remote_id": "52192303-ea74-46af-9050-1d96795f3268", "email": "giovanni@francoslondon.com", "display_name": "", "account": {"uuid": "ea462d70-6210-11ed-a515-3f29019f296e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854391}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "fcefebc0-767f-11ed-8d95-db591bff91e1", "first_shown_at": "2022-12-07T22:39:19.000000Z", "last_shown_at": "2022-12-07T22:39:19.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-07T22:39:24.000000Z", "last_data_reception_at": "2022-12-07T22:39:24.000000Z", "completed_at": "2022-12-07T22:39:27.000000Z", "received_at": "2022-12-07T22:39:27.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "6", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "8a5cc8d0-74b1-11ed-8d21-bfd9fa5c2711", "remote_id": "dba8758f-9a2d-4b14-83d3-08e9892fdb51", "email": "kitchen@bouchonracine.com", "display_name": "", "account": {"uuid": "8a5ef6e0-74b1-11ed-be32-c317a60c651e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854391}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "63ee4900-7105-11ed-b6e8-f3070652e79d", "first_shown_at": "2022-11-30T23:19:08.000000Z", "last_shown_at": "2022-12-07T15:51:20.000000Z", "show_counter": 2, "first_data_reception_at": "2022-12-07T15:52:16.000000Z", "last_data_reception_at": "2022-12-07T15:52:16.000000Z", "completed_at": "2022-12-07T15:52:18.000000Z", "received_at": "2022-12-07T15:52:18.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "dda8e980-5201-11ed-b88d-390957bd175b", "remote_id": "e9c87c0c-cb1a-4d97-917b-7a2e681f1e2c", "email": "info@popoloshoreditch.com", "display_name": "", "account": {"uuid": "ddaa65a0-5201-11ed-8b91-91edd92e0d24", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854392}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b39f3730-71be-11ed-879d-230da1a94a5c", "first_shown_at": "2022-12-01T21:25:38.000000Z", "last_shown_at": "2022-12-01T21:25:38.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-01T21:25:46.000000Z", "last_data_reception_at": "2022-12-01T21:25:46.000000Z", "completed_at": "2022-12-01T21:25:50.000000Z", "received_at": "2022-12-01T21:25:50.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "8", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "4c803d70-6aad-11ed-944e-43af2e879b2b", "remote_id": "79126417-298a-4c82-9f0f-1453c28a2713", "email": "frederic@stswithinswine.com", "display_name": "", "account": {"uuid": "4c823cd0-6aad-11ed-aee3-1d11d955b8f6", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854392}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "01acbd20-71a0-11ed-bd35-41d378367e42", "first_shown_at": "2022-12-01T17:45:55.000000Z", "last_shown_at": "2022-12-01T17:45:55.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-01T17:46:02.000000Z", "last_data_reception_at": "2022-12-01T17:46:02.000000Z", "completed_at": "2022-12-01T17:46:08.000000Z", "received_at": "2022-12-01T17:46:08.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "9", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "d4216420-64f8-11ed-842f-c3c652b28e8c", "remote_id": "6d260ade-5160-4aec-99e1-011b5b3c0370", "email": "felix.richard@mariagefreres.com", "display_name": "", "account": {"uuid": "d4234be0-64f8-11ed-b6c1-47d7f63ecb4a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854392}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ad660d20-7192-11ed-bb17-09cbfa347642", "first_shown_at": "2022-12-01T16:10:30.000000Z", "last_shown_at": "2022-12-01T16:10:30.000000Z", "show_counter": 1, "first_data_reception_at": "2022-12-01T16:10:32.000000Z", "last_data_reception_at": "2022-12-01T16:10:32.000000Z", "completed_at": "2022-12-01T16:10:35.000000Z", "received_at": "2022-12-01T16:10:35.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "14fc7e70-6746-11ed-8ef4-0d0d21a6d334", "remote_id": "0a761a17-4515-4699-aa9c-68c9db8231fb", "email": "manager@thevillagegreen.pub", "display_name": "", "account": {"uuid": "14fe7ed0-6746-11ed-a98e-8392f485356d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Medium Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854393}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8c60c800-70e8-11ed-9f67-9796f916b0b3", "first_shown_at": "2022-11-30T19:52:40.000000Z", "last_shown_at": "2022-11-30T19:52:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-30T19:52:44.000000Z", "last_data_reception_at": "2022-11-30T19:52:44.000000Z", "completed_at": "2022-11-30T19:52:46.000000Z", "received_at": "2022-11-30T19:52:46.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "9", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "96b09700-505a-11ed-b945-57ecd1da7c45", "remote_id": "3a1b2e6f-8dd0-49f6-a6fb-4f250b0abe64", "email": "valeb235@yahoo.it", "display_name": "", "account": {"uuid": "96b2ee00-505a-11ed-a421-efcfd758fd44", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854393}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "27ad0a70-6b52-11ed-8d08-ab0da7e961a9", "first_shown_at": "2022-11-23T17:13:31.000000Z", "last_shown_at": "2022-11-29T15:11:07.000000Z", "show_counter": 2, "first_data_reception_at": "2022-11-29T15:13:29.000000Z", "last_data_reception_at": "2022-11-29T15:13:29.000000Z", "completed_at": "2022-11-29T15:15:49.000000Z", "received_at": "2022-11-29T15:15:49.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "8", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "8c2cbf80-5ab7-11ed-b81b-91ce37f14529", "remote_id": "2c2f851b-543d-4925-8de0-303d8fd2f899", "email": "primrose@restaurant-michaelnadra.co.uk", "display_name": "", "account": {"uuid": "8c2f3c50-5ab7-11ed-9a71-f772ca288030", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854393}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f6bd8c10-6fef-11ed-b4b9-93f477307ca1", "first_shown_at": "2022-11-29T14:13:14.000000Z", "last_shown_at": "2022-11-29T14:13:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-29T14:13:21.000000Z", "last_data_reception_at": "2022-11-29T14:13:21.000000Z", "completed_at": "2022-11-29T14:13:22.000000Z", "received_at": "2022-11-29T14:13:22.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "d321f9e0-6fe3-11ed-a856-8b7a1a715bf2", "remote_id": "2ad1d63b-cd97-4c57-83ea-63ee3ba1ebd6", "email": "bheuls@nobuhotels.com", "display_name": "", "account": {"uuid": "d32376b0-6fe3-11ed-8f74-99e80ae6f7a4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854393}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "751a3e60-6b4d-11ed-a64a-4b41ea606825", "first_shown_at": "2022-11-23T16:39:53.000000Z", "last_shown_at": "2022-11-23T16:39:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-23T16:39:58.000000Z", "last_data_reception_at": "2022-11-23T16:39:58.000000Z", "completed_at": "2022-11-23T16:40:00.000000Z", "received_at": "2022-11-23T16:40:00.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "b92c5fe0-5c65-11ed-879f-039c4832d48a", "remote_id": "f8dd40a7-6dd4-4092-87c0-75428724f724", "email": "brit@britrich.co.uk", "display_name": "", "account": {"uuid": "b92e3a20-5c65-11ed-a02c-b71e0b7fb890", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854393}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5350a2b0-6825-11ed-9925-096b4e785047", "first_shown_at": "2022-11-19T16:15:03.000000Z", "last_shown_at": "2022-11-19T16:15:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-19T16:15:06.000000Z", "last_data_reception_at": "2022-11-19T16:15:06.000000Z", "completed_at": "2022-11-19T16:15:20.000000Z", "received_at": "2022-11-19T16:15:20.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": "j'ai d\u00e9j\u00e0 commenc\u00e9 \u00e0 en parler autour de moi !"}, "contact": {"uuid": "ba6018a0-6135-11ed-ade1-d1de8609f833", "remote_id": "66138e6d-4b16-42c9-a2af-62807c9b0513", "email": "diallo.adamahawa@gmail.com", "display_name": "", "account": {"uuid": "ba626f80-6135-11ed-9830-999d6949765e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854393}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "371fc850-6370-11ed-965d-c3336b80a7dc", "first_shown_at": "2022-11-13T16:28:33.000000Z", "last_shown_at": "2022-11-18T17:22:41.000000Z", "show_counter": 2, "first_data_reception_at": "2022-11-18T17:22:45.000000Z", "last_data_reception_at": "2022-11-18T17:22:47.000000Z", "completed_at": "2022-11-18T17:22:48.000000Z", "received_at": "2022-11-18T17:22:48.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "9", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "dd91d200-5176-11ed-85a9-5d4e59452c9e", "remote_id": "056d16a3-74c7-42de-a63f-2d9ae2764a15", "email": "olly@frgroup.co.uk", "display_name": "", "account": {"uuid": "dd93d530-5176-11ed-bf12-d3b778d91541", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854394}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7557c4e0-6743-11ed-8f51-31ffac4c7fae", "first_shown_at": "2022-11-18T13:18:14.000000Z", "last_shown_at": "2022-11-18T13:18:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-18T13:18:22.000000Z", "last_data_reception_at": "2022-11-18T13:18:22.000000Z", "completed_at": "2022-11-18T13:19:17.000000Z", "received_at": "2022-11-18T13:19:17.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "7", "comment_ameliorer_brigad": "faire plus attention au comp\u00e9tence qui varie \u00e9norm\u00e9ment d un brigadier a l'autre"}, "contact": {"uuid": "4cc25d60-5b6e-11ed-9a8f-13ff0fc46ec3", "remote_id": "7cd7d2a4-7d5a-4c13-a815-d54fa1e07416", "email": "julien.crouzatier@restonis.fr", "display_name": "", "account": {"uuid": "4cc53ee0-5b6e-11ed-9387-81680e2b91c1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854394}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "af88aa50-6722-11ed-b521-f160c7fdc3e3", "first_shown_at": "2022-11-18T09:23:38.000000Z", "last_shown_at": "2022-11-18T09:23:38.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-18T09:23:42.000000Z", "last_data_reception_at": "2022-11-18T09:23:42.000000Z", "completed_at": "2022-11-18T09:24:12.000000Z", "received_at": "2022-11-18T09:24:12.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": "Permettre la modification par l'employeur d'une mission"}, "contact": {"uuid": "a8dcfc80-4cd2-11ed-9469-bf54f00c545f", "remote_id": "16763944-105d-4f35-8f40-f7829ec0e3c3", "email": "stephanie.piard@maisondevangogh.fr", "display_name": "", "account": {"uuid": "a8def520-4cd2-11ed-b53b-93d6571c19ff", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854394}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8631cc40-65db-11ed-ad08-7fdd626dbdc0", "first_shown_at": "2022-11-16T18:21:44.000000Z", "last_shown_at": "2022-11-16T18:21:44.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-16T18:22:00.000000Z", "last_data_reception_at": "2022-11-16T18:22:04.000000Z", "completed_at": "2022-11-16T18:22:06.000000Z", "received_at": "2022-11-16T18:22:06.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "b091a080-5515-11ed-8781-e341c72f25e7", "remote_id": "bdee4808-6a73-48c8-a114-f245510f0cbd", "email": "therubiconlondon@gmail.com", "display_name": "", "account": {"uuid": "b0935de0-5515-11ed-a2f1-cd1450814e65", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854394}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0f6e5210-65db-11ed-8dec-6d74651fc245", "first_shown_at": "2022-11-16T18:18:24.000000Z", "last_shown_at": "2022-11-16T18:18:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-16T18:18:29.000000Z", "last_data_reception_at": "2022-11-16T18:18:29.000000Z", "completed_at": "2022-11-16T18:18:36.000000Z", "received_at": "2022-11-16T18:18:36.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "9", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "69dc8510-61f1-11ed-b53c-4394dbd83104", "remote_id": "0e8ebd1f-ed59-457a-b5d0-c67b8df3f7e6", "email": "steve@joannas.uk.com", "display_name": "", "account": {"uuid": "69deb300-61f1-11ed-9420-d7305f14bee0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854394}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e106cbe0-65cf-11ed-80ab-0d8587e48763", "first_shown_at": "2022-11-16T16:58:22.000000Z", "last_shown_at": "2022-11-16T16:58:22.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-16T16:58:31.000000Z", "last_data_reception_at": "2022-11-16T16:58:31.000000Z", "completed_at": "2022-11-16T16:58:44.000000Z", "received_at": "2022-11-16T16:58:44.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": "Stop callling me all the time."}, "contact": {"uuid": "85f28230-64f5-11ed-93ba-1961c60b9294", "remote_id": "34e49866-c781-40fa-a3a3-19c8fb2ce1fe", "email": "darren@albionandeast.co.uk", "display_name": "", "account": {"uuid": "85f4b4a0-64f5-11ed-aae0-0f8fbd0e94b7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854394}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "209c4710-65af-11ed-b77d-c9c6deffaf25", "first_shown_at": "2022-11-16T13:03:55.000000Z", "last_shown_at": "2022-11-16T13:03:55.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-16T13:04:00.000000Z", "last_data_reception_at": "2022-11-16T13:04:00.000000Z", "completed_at": "2022-11-16T13:04:02.000000Z", "received_at": "2022-11-16T13:04:02.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "9", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "266d7aa0-5d0e-11ed-8acd-73e50c99b819", "remote_id": "3813ff7b-4daf-41b5-929d-fe0996cb4f91", "email": "lyon8@lafabuleusecantine.fr", "display_name": "", "account": {"uuid": "26705110-5d0e-11ed-baa2-dbc0d2e1d913", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854395}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "11e71540-63fa-11ed-8308-37103915ba82", "first_shown_at": "2022-11-14T08:55:21.000000Z", "last_shown_at": "2022-11-14T08:55:21.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-14T08:55:27.000000Z", "last_data_reception_at": "2022-11-14T08:55:27.000000Z", "completed_at": "2022-11-14T08:55:30.000000Z", "received_at": "2022-11-14T08:55:30.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "3", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "bc8ae390-5afb-11ed-a2f7-2970d79136a6", "remote_id": "ac8d60ba-4cd7-4352-b335-f298df709d90", "email": "ashleyc@proud.co.uk", "display_name": "", "account": {"uuid": "bc8ca5c0-5afb-11ed-a5f7-970036cb1038", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854395}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d87efba0-5c42-11ed-b191-f5693e8ae4ed", "first_shown_at": "2022-11-04T13:16:08.000000Z", "last_shown_at": "2022-11-10T16:32:07.000000Z", "show_counter": 2, "first_data_reception_at": "2022-11-10T16:32:11.000000Z", "last_data_reception_at": "2022-11-10T16:32:11.000000Z", "completed_at": "2022-11-10T16:32:31.000000Z", "received_at": "2022-11-10T16:32:31.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": "Make it harder for staff to cancel last minute"}, "contact": {"uuid": "14aa5cf0-515d-11ed-a27f-6ddd1bacc435", "remote_id": "d32d8dd0-98f6-4287-8381-af0be4dcb4d9", "email": "renaud.debosredon@louie-london.com", "display_name": "", "account": {"uuid": "14acae70-515d-11ed-8156-47b42475d1ab", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854395}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4c14eb60-60f7-11ed-a048-71e6b7d3fe82", "first_shown_at": "2022-11-10T12:57:56.000000Z", "last_shown_at": "2022-11-10T12:57:56.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-10T12:57:59.000000Z", "last_data_reception_at": "2022-11-10T12:57:59.000000Z", "completed_at": "2022-11-10T12:58:00.000000Z", "received_at": "2022-11-10T12:58:00.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "a5051860-5939-11ed-8d93-4f8d41266647", "remote_id": "3dab1737-504e-4254-b19f-581086369d6b", "email": "thestaglandlord@londonpubs.com", "display_name": "", "account": {"uuid": "a5076630-5939-11ed-8de7-e91e71f28f63", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854395}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0d7c7340-6016-11ed-b371-2719db58ad9a", "first_shown_at": "2022-11-09T10:05:35.000000Z", "last_shown_at": "2022-11-09T10:05:35.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-09T10:05:37.000000Z", "last_data_reception_at": "2022-11-09T10:05:37.000000Z", "completed_at": "2022-11-09T10:06:33.000000Z", "received_at": "2022-11-09T10:06:33.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": "Afficher les motifs de remplacement et/ou affectation de service (plus facile pour s'y retrouver au niveau des positionnements des intervenants dans les services)"}, "contact": {"uuid": "bfee4170-4a38-11ed-b185-4ddbfdc85f7c", "remote_id": "e43e1c79-4e97-45be-b6d0-5a70cf132486", "email": "assistrh1.cliniquesaintroch@lna-sante.com", "display_name": "", "account": {"uuid": "bff01af0-4a38-11ed-a591-cbbf28f7d10c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Medium Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854395}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2139cf60-55f0-11ed-89ff-716d49c30a28", "first_shown_at": "2022-10-27T12:08:55.000000Z", "last_shown_at": "2022-11-08T19:48:10.000000Z", "show_counter": 3, "first_data_reception_at": "2022-11-08T19:48:25.000000Z", "last_data_reception_at": "2022-11-08T19:48:25.000000Z", "completed_at": "2022-11-08T19:48:28.000000Z", "received_at": "2022-11-08T19:48:28.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "8", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "5421fc00-4bb4-11ed-928f-49ea1e4d02d8", "remote_id": "17494751-463a-41cc-8028-f2e9046b0b77", "email": "keith@chozen.co.uk", "display_name": "", "account": {"uuid": "54237200-4bb4-11ed-bf0c-194d36f6bbaa", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854396}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f1422010-5dc1-11ed-bf2a-c5468973af24", "first_shown_at": "2022-11-06T10:58:27.000000Z", "last_shown_at": "2022-11-06T10:58:27.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-06T10:58:35.000000Z", "last_data_reception_at": "2022-11-06T10:58:35.000000Z", "completed_at": "2022-11-06T10:58:56.000000Z", "received_at": "2022-11-06T10:58:56.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "8", "how_can_we_improve_your_experience": "would be so much better if we could choose the staff we want to hire"}, "contact": {"uuid": "d4dd04b0-4a1e-11ed-a351-977f12448ee3", "remote_id": "0fc63b9b-1288-4785-8542-48c59ba21738", "email": "olivier.secret@morgansoriginals.com", "display_name": "", "account": {"uuid": "d4dea190-4a1e-11ed-93b2-07149de65b7d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854396}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9df89610-5c56-11ed-8db5-6913f34360dc", "first_shown_at": "2022-11-04T15:37:40.000000Z", "last_shown_at": "2022-11-04T15:37:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-04T15:37:45.000000Z", "last_data_reception_at": "2022-11-04T15:37:45.000000Z", "completed_at": "2022-11-04T15:39:48.000000Z", "received_at": "2022-11-04T15:39:48.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "9", "how_can_we_improve_your_experience": "Levels of staff between Commis chef and chef de partie"}, "contact": {"uuid": "19c40a80-4ce2-11ed-8cd6-bdf20867486e", "remote_id": "756a0bba-778c-470b-a000-82a29e6dba5f", "email": "francis@christophersgrill.com", "display_name": "", "account": {"uuid": "19c645d0-4ce2-11ed-95ff-9f9c66aa02b9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854396}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d5b803e0-5c4f-11ed-bfc2-cde1a8650563", "first_shown_at": "2022-11-04T14:49:07.000000Z", "last_shown_at": "2022-11-04T14:49:07.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-04T14:49:11.000000Z", "last_data_reception_at": "2022-11-04T14:49:11.000000Z", "completed_at": "2022-11-04T14:49:12.000000Z", "received_at": "2022-11-04T14:49:12.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "b575c470-579e-11ed-a8cc-1136486d91da", "remote_id": "e7cdc306-a3f6-4962-888b-5c67ca7fb494", "email": "es@folie.london", "display_name": "", "account": {"uuid": "b577e250-579e-11ed-ab9d-6d5b2932af96", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854396}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "05b17690-5c4f-11ed-9164-332d3d8e7ed8", "first_shown_at": "2022-11-04T14:43:18.000000Z", "last_shown_at": "2022-11-04T14:43:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-04T14:43:27.000000Z", "last_data_reception_at": "2022-11-04T14:43:27.000000Z", "completed_at": "2022-11-04T14:43:31.000000Z", "received_at": "2022-11-04T14:43:31.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "8", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "09d70c50-4ae7-11ed-909d-c96d859eb8ca", "remote_id": "07465db0-96c8-49a0-8247-7327e890e61c", "email": "coppershack@mac.com", "display_name": "", "account": {"uuid": "09d93070-4ae7-11ed-84ae-5fb014446482", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854396}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7a00de30-5760-11ed-8355-0b0c03bdf678", "first_shown_at": "2022-10-29T08:05:39.000000Z", "last_shown_at": "2022-11-04T12:23:31.000000Z", "show_counter": 2, "first_data_reception_at": "2022-11-04T12:23:37.000000Z", "last_data_reception_at": "2022-11-04T12:23:37.000000Z", "completed_at": "2022-11-04T12:23:42.000000Z", "received_at": "2022-11-04T12:23:42.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "e85abf60-4acc-11ed-b3dd-cda22454ac02", "remote_id": "174b3fee-7ccf-4f15-9496-f9eca42b72c6", "email": "michael@86stjames.com", "display_name": "", "account": {"uuid": "e85ce940-4acc-11ed-873e-4587875150f8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854396}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6aed7410-567b-11ed-9425-a35fafc54512", "first_shown_at": "2022-10-28T04:45:59.000000Z", "last_shown_at": "2022-11-03T17:53:44.000000Z", "show_counter": 2, "first_data_reception_at": "2022-11-03T17:53:47.000000Z", "last_data_reception_at": "2022-11-03T17:53:47.000000Z", "completed_at": "2022-11-03T17:53:49.000000Z", "received_at": "2022-11-03T17:53:49.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "e1bdead0-4b11-11ed-ae92-ef38c73ff674", "remote_id": "67aee525-daad-42bf-a2e7-eceee4f69fdd", "email": "renato@pianoworks.bar", "display_name": "", "account": {"uuid": "e1c061d0-4b11-11ed-8e14-c54a3e6980ea", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854397}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7dd375e0-5b82-11ed-84e0-874d0e7a38c8", "first_shown_at": "2022-11-03T14:19:13.000000Z", "last_shown_at": "2022-11-03T14:19:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-03T14:19:21.000000Z", "last_data_reception_at": "2022-11-03T14:19:21.000000Z", "completed_at": "2022-11-03T14:19:23.000000Z", "received_at": "2022-11-03T14:19:23.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "9", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "83e23ae0-4a41-11ed-846d-2bef2204d9d7", "remote_id": "3d28e35a-856d-4baa-b015-68761c251f0e", "email": "hhr@canopylondoncity.com", "display_name": "", "account": {"uuid": "83e3db80-4a41-11ed-b441-d9287ac52581", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854397}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "efb605f0-5b79-11ed-a583-25be526b0b35", "first_shown_at": "2022-11-03T13:17:58.000000Z", "last_shown_at": "2022-11-03T13:17:58.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-03T13:18:07.000000Z", "last_data_reception_at": "2022-11-03T13:18:07.000000Z", "completed_at": "2022-11-03T13:18:09.000000Z", "received_at": "2022-11-03T13:18:09.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "319d74d0-5afd-11ed-a529-f94b6bdd6563", "remote_id": "0f2dde13-2562-4782-9afc-c822ab42b5e0", "email": "tobias@proud.co.uk", "display_name": "", "account": {"uuid": "319fdc60-5afd-11ed-97c3-9f724088a1c4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854397}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "920e5cf0-55d6-11ed-8b9a-27b3ceaa6f5d", "first_shown_at": "2022-10-27T09:05:58.000000Z", "last_shown_at": "2022-11-03T07:18:48.000000Z", "show_counter": 2, "first_data_reception_at": "2022-11-03T07:19:03.000000Z", "last_data_reception_at": "2022-11-03T07:19:03.000000Z", "completed_at": "2022-11-03T07:19:08.000000Z", "received_at": "2022-11-03T07:19:08.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "8", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "0d29cce0-4ad1-11ed-98de-cdcd50189215", "remote_id": "41c0e327-1409-4f19-993a-c4c0c8d0fb5e", "email": "americo@secondhome.io", "display_name": "", "account": {"uuid": "0d2b7a40-4ad1-11ed-b7cd-a145e74bc834", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854397}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9cd371a0-5ad7-11ed-80a9-31a38ef35d8b", "first_shown_at": "2022-11-02T17:56:01.000000Z", "last_shown_at": "2022-11-02T17:56:01.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-02T17:56:07.000000Z", "last_data_reception_at": "2022-11-02T17:56:07.000000Z", "completed_at": "2022-11-02T17:56:08.000000Z", "received_at": "2022-11-02T17:56:08.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "36efcaf0-5200-11ed-ba83-55d31b967379", "remote_id": "94b7be4d-0bc5-4dec-92cc-e33c72619fef", "email": "jamesc@londonsteakhousecompany.com", "display_name": "", "account": {"uuid": "36f25170-5200-11ed-bb2b-4b002d158d23", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854397}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "dbc027e0-5ab0-11ed-87dc-933bdb418fea", "first_shown_at": "2022-11-02T13:18:36.000000Z", "last_shown_at": "2022-11-02T13:18:36.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-02T13:18:42.000000Z", "last_data_reception_at": "2022-11-02T13:18:42.000000Z", "completed_at": "2022-11-02T13:18:44.000000Z", "received_at": "2022-11-02T13:18:44.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "1da351d0-4f01-11ed-a647-7fd6c795c71d", "remote_id": "ff563dec-86b3-473c-8902-2fa9c9206894", "email": "cloe@abuelocafe.co.uk", "display_name": "", "account": {"uuid": "1da5ad90-4f01-11ed-82b8-f50852760cb2", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854397}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c45432d0-59e7-11ed-bcfe-53172a32c000", "first_shown_at": "2022-11-01T13:19:08.000000Z", "last_shown_at": "2022-11-01T13:19:08.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-01T13:19:12.000000Z", "last_data_reception_at": "2022-11-01T13:19:12.000000Z", "completed_at": "2022-11-01T13:19:14.000000Z", "received_at": "2022-11-01T13:19:14.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "9", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "fc1901a0-4e20-11ed-9cdc-01c5d58bb028", "remote_id": "ce5b30ff-219c-47b8-94b5-8e7b11d51243", "email": "lucja.mlynarczyk@gmail.com", "display_name": "", "account": {"uuid": "fc1bd6c0-4e20-11ed-beea-d3d6c122af5b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854397}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "84070b80-59d5-11ed-a545-010db44974b9", "first_shown_at": "2022-11-01T11:08:29.000000Z", "last_shown_at": "2022-11-01T11:08:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-01T11:08:32.000000Z", "last_data_reception_at": "2022-11-01T11:08:32.000000Z", "completed_at": "2022-11-01T11:08:34.000000Z", "received_at": "2022-11-01T11:08:34.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "494309f0-4a26-11ed-8b06-05cad3235a05", "remote_id": "8f3618ce-b84d-4a3b-950f-94fc593983dc", "email": "jjones@manorfield.towerhamlets.sch.uk", "display_name": "", "account": {"uuid": "4945b100-4a26-11ed-b41e-4f8ed8d5a0b3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854398}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8cd48a60-59d3-11ed-b5fc-d30316855477", "first_shown_at": "2022-11-01T10:54:25.000000Z", "last_shown_at": "2022-11-01T10:54:25.000000Z", "show_counter": 1, "first_data_reception_at": "2022-11-01T10:54:38.000000Z", "last_data_reception_at": "2022-11-01T10:54:38.000000Z", "completed_at": "2022-11-01T10:54:41.000000Z", "received_at": "2022-11-01T10:54:41.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "733b7200-4c8f-11ed-93e5-69eb57bd05c5", "remote_id": "396ec9db-58e5-4eaf-ada5-a6bd7cf08953", "email": "secretarydudleyhouse@gmail.com", "display_name": "", "account": {"uuid": "733dc0a0-4c8f-11ed-a4b9-1991c2b48387", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854398}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8c878fe0-5931-11ed-b1e1-b3ef83d122e1", "first_shown_at": "2022-10-31T15:34:46.000000Z", "last_shown_at": "2022-10-31T15:34:46.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-31T15:39:38.000000Z", "last_data_reception_at": "2022-10-31T15:39:38.000000Z", "completed_at": "2022-10-31T15:39:39.000000Z", "received_at": "2022-10-31T15:39:39.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "9", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "870acc70-4ae1-11ed-9dd3-35d41984ac54", "remote_id": "3aaca86f-f670-4a2d-9cae-fa70b21b4804", "email": "manager@sydneyarmschelsea.com", "display_name": "", "account": {"uuid": "870d1150-4ae1-11ed-a186-cf9872804127", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854398}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "21d959b0-585a-11ed-9253-b37271c1b93d", "first_shown_at": "2022-10-30T13:52:45.000000Z", "last_shown_at": "2022-10-30T13:52:45.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-30T13:52:49.000000Z", "last_data_reception_at": "2022-10-30T13:52:49.000000Z", "completed_at": "2022-10-30T13:53:09.000000Z", "received_at": "2022-10-30T13:53:09.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": "More about staff experience n advance"}, "contact": {"uuid": "1a715550-4bbc-11ed-968f-f9a5386dbe5b", "remote_id": "d987c1f7-3454-4533-9604-e94e067c05d0", "email": "info@cafebelow.co.uk", "display_name": "", "account": {"uuid": "1a7405a0-4bbc-11ed-8327-1fa10e09ac49", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854398}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "94e950a0-57a3-11ed-821c-051add7b5fd8", "first_shown_at": "2022-10-29T16:06:00.000000Z", "last_shown_at": "2022-10-29T16:06:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-29T16:06:03.000000Z", "last_data_reception_at": "2022-10-29T16:06:03.000000Z", "completed_at": "2022-10-29T16:06:08.000000Z", "received_at": "2022-10-29T16:06:08.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "690238f0-4b84-11ed-ab12-95b7c8a36713", "remote_id": "84add574-2f38-40ef-847b-9dcc4b909b32", "email": "lena@bancone.co.uk", "display_name": "", "account": {"uuid": "6903ee50-4b84-11ed-8bf6-09ac3d949e27", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854398}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "0f81d3c0-57a2-11ed-8ceb-ddffbed39962", "first_shown_at": "2022-10-29T15:55:07.000000Z", "last_shown_at": "2022-10-29T15:55:07.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-29T15:55:13.000000Z", "last_data_reception_at": "2022-10-29T15:55:13.000000Z", "completed_at": "2022-10-29T15:55:16.000000Z", "received_at": "2022-10-29T15:55:16.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "9", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "9cff2b70-57a0-11ed-b850-5b61744b7cea", "remote_id": "0c298384-2b84-4efe-ab96-e3b5e174c5e9", "email": "pkoppa@londoncityfinancial.com", "display_name": "", "account": {"uuid": "9d017d90-57a0-11ed-a69e-5f3971783166", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854398}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b8b51980-579a-11ed-8bc2-419e25247bea", "first_shown_at": "2022-10-29T15:02:35.000000Z", "last_shown_at": "2022-10-29T15:02:35.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-29T15:02:37.000000Z", "last_data_reception_at": "2022-10-29T15:02:37.000000Z", "completed_at": "2022-10-29T15:02:39.000000Z", "received_at": "2022-10-29T15:02:39.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "73c3a6a0-579a-11ed-8710-91502d59f06e", "remote_id": "2c150e86-5eac-4284-85f6-525e71c8766d", "email": "esmiraldaorlovskaja94@gmail.com", "display_name": "", "account": {"uuid": "73c5ec00-579a-11ed-aa40-2d1053e4f480", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854399}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9f627a50-56f1-11ed-9356-790ed9c9528e", "first_shown_at": "2022-10-28T18:52:07.000000Z", "last_shown_at": "2022-10-28T18:52:07.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-28T18:52:11.000000Z", "last_data_reception_at": "2022-10-28T18:52:11.000000Z", "completed_at": "2022-10-28T18:52:13.000000Z", "received_at": "2022-10-28T18:52:13.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "f49540c0-4af2-11ed-801b-eb089e42223a", "remote_id": "77cf6caa-3b42-4379-92a7-2e535b2d3a4d", "email": "sun@anticlondon.com", "display_name": "", "account": {"uuid": "f4988310-4af2-11ed-b30e-1b05b3a0aa5e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854399}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d9348660-56b7-11ed-915a-33fe9b073ba5", "first_shown_at": "2022-10-28T11:58:34.000000Z", "last_shown_at": "2022-10-28T11:58:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-28T11:58:45.000000Z", "last_data_reception_at": "2022-10-28T11:58:45.000000Z", "completed_at": "2022-10-28T11:58:48.000000Z", "received_at": "2022-10-28T11:58:48.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "19013180-4d2f-11ed-a700-b7036e1add58", "remote_id": "07667493-8a14-46ed-b5be-786cd78b844a", "email": "amohamed@laduree.com", "display_name": "", "account": {"uuid": "19034680-4d2f-11ed-aa5d-3f2bf32d02d2", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854399}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ea027a40-568a-11ed-b1d8-bde808e53bb4", "first_shown_at": "2022-10-28T06:36:54.000000Z", "last_shown_at": "2022-10-28T06:36:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-28T06:37:04.000000Z", "last_data_reception_at": "2022-10-28T06:37:04.000000Z", "completed_at": "2022-10-28T06:37:05.000000Z", "received_at": "2022-10-28T06:37:05.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "f0442e00-4a1f-11ed-94e4-194e2f8a5e7b", "remote_id": "1589097f-3be7-4129-a9b1-fca72bf55d1c", "email": "jay@thealbertprimrosehill.co.uk", "display_name": "", "account": {"uuid": "f0467d90-4a1f-11ed-a150-7144b85f3193", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Have created multiple missions", "Small Accounts", "English speaking"]}, "emitted_at": 1670944854399}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ae65b650-560c-11ed-9649-877c239bd453", "first_shown_at": "2022-10-27T15:33:18.000000Z", "last_shown_at": "2022-10-27T15:33:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-27T15:33:25.000000Z", "last_data_reception_at": "2022-10-27T15:33:25.000000Z", "completed_at": "2022-10-27T15:33:26.000000Z", "received_at": "2022-10-27T15:33:26.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "6", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "a65a4820-4b1f-11ed-beea-9fb628285e77", "remote_id": "55ad752e-3d67-4a62-aa70-0e1a366ecb07", "email": "jim.lintorn@hotmail.com", "display_name": "", "account": {"uuid": "a65cdac0-4b1f-11ed-ab6e-956a7067fffd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854399}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "49f4cb20-55fe-11ed-8b71-f9c61da35026", "first_shown_at": "2022-10-27T13:50:16.000000Z", "last_shown_at": "2022-10-27T13:50:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-27T13:51:52.000000Z", "last_data_reception_at": "2022-10-27T13:51:52.000000Z", "completed_at": "2022-10-27T13:51:56.000000Z", "received_at": "2022-10-27T13:51:56.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "b11e2360-4a25-11ed-8ff6-6590c5905809", "remote_id": "c8f6a990-d53b-4165-9a8e-3f8b8131c2d5", "email": "chef@greenspeares.co.uk", "display_name": "", "account": {"uuid": "b1220e40-4a25-11ed-b200-474843a91e14", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854399}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "bd529340-55f7-11ed-97fe-3793440f6b7a", "first_shown_at": "2022-10-27T13:03:24.000000Z", "last_shown_at": "2022-10-27T13:03:24.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-27T13:03:26.000000Z", "last_data_reception_at": "2022-10-27T13:03:26.000000Z", "completed_at": "2022-10-27T13:03:27.000000Z", "received_at": "2022-10-27T13:03:27.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "81b91140-4a69-11ed-b4a6-ef0b05473823", "remote_id": "024d2c61-462b-46c8-b7d1-0d8e4734789c", "email": "sam@mosaicpubanddining.com", "display_name": "", "account": {"uuid": "81bb4660-4a69-11ed-b98d-cbcde914b42f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854399}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "26b959d0-55f1-11ed-b617-8b556e74be5d", "first_shown_at": "2022-10-27T12:16:14.000000Z", "last_shown_at": "2022-10-27T12:16:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-27T12:16:17.000000Z", "last_data_reception_at": "2022-10-27T12:16:17.000000Z", "completed_at": "2022-10-27T12:16:21.000000Z", "received_at": "2022-10-27T12:16:21.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "0", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "22fe3240-4a57-11ed-9bdb-e719dccafdad", "remote_id": "ae04e0d3-7153-4c3e-85a6-d988dbacdee6", "email": "florin.butnaru@melia.com", "display_name": "", "account": {"uuid": "23008c70-4a57-11ed-8f80-3d06e06666ff", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854400}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "bcbf5340-55e7-11ed-87a4-05a4cfe8d653", "first_shown_at": "2022-10-27T11:08:51.000000Z", "last_shown_at": "2022-10-27T11:08:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-27T11:08:59.000000Z", "last_data_reception_at": "2022-10-27T11:08:59.000000Z", "completed_at": "2022-10-27T11:09:01.000000Z", "received_at": "2022-10-27T11:09:01.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "5a19a860-4a52-11ed-b26e-e7148ad165d6", "remote_id": "2de36c46-d552-4b70-8b12-22468cc97c6e", "email": "restaurantmanager.thegore@starhotels.com", "display_name": "", "account": {"uuid": "5a1c0790-4a52-11ed-a18d-5fe606da34ff", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854400}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "72017040-55e6-11ed-945c-b3f4dae824d0", "first_shown_at": "2022-10-27T10:59:36.000000Z", "last_shown_at": "2022-10-27T10:59:36.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-27T10:59:46.000000Z", "last_data_reception_at": "2022-10-27T10:59:46.000000Z", "completed_at": "2022-10-27T10:59:50.000000Z", "received_at": "2022-10-27T10:59:50.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "bf114f00-4ad4-11ed-9232-53d40eb4ad8b", "remote_id": "cadb8f3e-3c98-4252-a0c7-528cf941aad0", "email": "rfr@isabelw1.london", "display_name": "", "account": {"uuid": "bf15cf10-4ad4-11ed-b1e1-cd93af7e6231", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854400}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2242ef20-55df-11ed-967d-67838cdacea3", "first_shown_at": "2022-10-27T10:07:15.000000Z", "last_shown_at": "2022-10-27T10:07:15.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-27T10:10:27.000000Z", "last_data_reception_at": "2022-10-27T10:10:27.000000Z", "completed_at": "2022-10-27T10:10:28.000000Z", "received_at": "2022-10-27T10:10:28.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "10", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "600470e0-4a38-11ed-bbb9-21bb4d2f3308", "remote_id": "ca9883b3-ab32-4343-848b-2af9e9923714", "email": "sandra@notescoffee.com", "display_name": "", "account": {"uuid": "6006f3f0-4a38-11ed-a719-afff422bbf9b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "English speaking", "Have created multiple missions"]}, "emitted_at": 1670944854400}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7df94f60-55da-11ed-8838-cfd7eb41e994", "first_shown_at": "2022-10-27T09:34:02.000000Z", "last_shown_at": "2022-10-27T09:34:02.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-27T09:34:10.000000Z", "last_data_reception_at": "2022-10-27T09:34:10.000000Z", "completed_at": "2022-10-27T09:34:21.000000Z", "received_at": "2022-10-27T09:34:21.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "8", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "5bc42dd0-4b36-11ed-8ab5-019837ccc7ce", "remote_id": "18872188-c40d-41f5-b62c-058ee1b1c708", "email": "careers@officina00.co.uk", "display_name": "", "account": {"uuid": "5bc6d430-4b36-11ed-af01-c90e2d62a39b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854400}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "32cf4900-55d5-11ed-b53c-1fbb1efb373e", "first_shown_at": "2022-10-27T08:56:08.000000Z", "last_shown_at": "2022-10-27T08:56:08.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-27T08:56:13.000000Z", "last_data_reception_at": "2022-10-27T08:56:13.000000Z", "completed_at": "2022-10-27T08:56:14.000000Z", "received_at": "2022-10-27T08:56:14.000000Z", "dismissed_at": null, "form": {"uuid": "d7571010-55cf-11ed-95b1-432283c7abfb", "name": "NPS - Agents - EN"}, "data": {"nps": "1", "how_can_we_improve_your_experience": null}, "contact": {"uuid": "e2163ee0-4a4b-11ed-8592-1b5ea8cb92be", "remote_id": "3b648aa9-af75-4ce7-837c-d35230b3bf84", "email": "supervisor@queensofmayfair.com", "display_name": "", "account": {"uuid": "e2181ce0-4a4b-11ed-845f-bb445d84c9ec", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["Small Accounts", "Have created multiple missions", "English speaking"]}, "emitted_at": 1670944854400}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ccd81800-55ce-11ed-93bc-a3ee677e935a", "first_shown_at": "2022-10-27T08:10:20.000000Z", "last_shown_at": "2022-10-27T08:10:20.000000Z", "show_counter": 0, "first_data_reception_at": "2022-10-27T08:10:20.000000Z", "last_data_reception_at": "2022-10-27T08:10:20.000000Z", "completed_at": "2022-10-27T08:10:20.000000Z", "received_at": "2022-10-27T08:10:20.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": "V\u00e9rifiez l\u2019exp\u00e9rience des professionnels ( plongeur) car j'en ai eu dont c'\u00e9tait la 1 \u00e8re fois et qui ne se rendre pas compte que Plongeur L\u00e9gumier est un m\u00e9tier difficile avec une responsabilit\u00e9 importante hygi\u00e8ne vaisselle, d\u00e9contamination l"}, "contact": {"uuid": "3d371b20-55cb-11ed-9ed8-294aeaae7d37", "remote_id": "4ea0de3d-4116-4fc8-860e-f2b24403d435", "email": "christophe.lepeltier@api-restauration.com", "display_name": "", "account": {"uuid": "3d3928e0-55cb-11ed-9459-0b5365c8de47", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854401}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ccae9410-5504-11ed-b9bd-97eda0fc2e44", "first_shown_at": "2022-10-26T08:04:22.000000Z", "last_shown_at": "2022-10-26T08:04:22.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-26T08:04:40.000000Z", "last_data_reception_at": "2022-10-26T08:04:49.000000Z", "completed_at": "2022-10-26T08:05:21.000000Z", "received_at": "2022-10-26T08:05:21.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "7", "comment_ameliorer_brigad": "Donner plus d'informations sur les profiles des candidats"}, "contact": {"uuid": "6e092850-4b11-11ed-b2f8-2920a7d85641", "remote_id": "c3e12570-d094-43fa-a8eb-14833a3f306a", "email": "direction@cridelacrevette.fr", "display_name": "", "account": {"uuid": "6e0b8830-4b11-11ed-8f05-95817c6f613a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854401}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "684ab6e0-53b8-11ed-a2fa-6399f91ab829", "first_shown_at": "2022-10-24T16:25:00.000000Z", "last_shown_at": "2022-10-24T16:25:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-24T16:25:05.000000Z", "last_data_reception_at": "2022-10-24T16:25:05.000000Z", "completed_at": "2022-10-24T16:25:37.000000Z", "received_at": "2022-10-24T16:25:37.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": "Que les talents honorent plus leurs missions!"}, "contact": {"uuid": "711f2f00-4c83-11ed-bcc2-27b6f1f09154", "remote_id": "994c9f49-f7a9-49af-a122-98c8adc5e934", "email": "bsamake@monsieurvincent.org", "display_name": "", "account": {"uuid": "71238480-4c83-11ed-9ecd-7b7673e83479", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Medium Accounts"]}, "emitted_at": 1670944854401}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6ff4f1e0-5391-11ed-bf0c-7f2ba4505e1f", "first_shown_at": "2022-10-24T11:46:03.000000Z", "last_shown_at": "2022-10-24T11:46:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-24T11:46:10.000000Z", "last_data_reception_at": "2022-10-24T11:46:10.000000Z", "completed_at": "2022-10-24T11:46:56.000000Z", "received_at": "2022-10-24T11:46:56.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": "Am\u00e9liorer le suivi de la facturation"}, "contact": {"uuid": "da74d200-4eac-11ed-8204-75e92bf89db8", "remote_id": "1c804f24-f2ca-4675-921a-f541fe33c55e", "email": "ccas-mad@ville-pantin.fr", "display_name": "", "account": {"uuid": "da7740a0-4eac-11ed-a545-b7fac97d4366", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854401}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "681d26f0-5143-11ed-a55b-b9abe2e66fc3", "first_shown_at": "2022-10-21T13:22:26.000000Z", "last_shown_at": "2022-10-21T13:22:26.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-21T13:23:31.000000Z", "last_data_reception_at": "2022-10-21T13:23:31.000000Z", "completed_at": "2022-10-21T13:23:58.000000Z", "received_at": "2022-10-21T13:23:58.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": "Professionnalisme et rigueur"}, "contact": {"uuid": "635bde60-5142-11ed-9be7-118f13591ce7", "remote_id": "49a34af9-2858-49ef-b47f-04450c19c9b3", "email": "a.hamidi@assopsv.fr", "display_name": "", "account": {"uuid": "635e4900-5142-11ed-9783-490ed93c8303", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854401}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "1d5800d0-4aec-11ed-ace0-d3a8a29ba61a", "first_shown_at": "2022-10-13T11:42:28.000000Z", "last_shown_at": "2022-10-20T11:56:42.000000Z", "show_counter": 2, "first_data_reception_at": "2022-10-20T14:56:03.000000Z", "last_data_reception_at": "2022-10-20T14:57:24.000000Z", "completed_at": "2022-10-20T14:59:12.000000Z", "received_at": "2022-10-20T14:59:12.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": "c'est bien et assez r\u00e9actif personne trouv\u00e9e en moins d'une heure"}, "contact": {"uuid": "e86fcd00-4a28-11ed-bada-676aee7c46fe", "remote_id": "5e57bf3d-0c64-45f7-8769-7f53613d60ac", "email": "infirmiere@lemontet.org", "display_name": "", "account": {"uuid": "e8729710-4a28-11ed-9402-5be7e66d7f1e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854401}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "af729f80-4f89-11ed-a83e-7d56526b98ad", "first_shown_at": "2022-10-19T08:40:29.000000Z", "last_shown_at": "2022-10-19T08:40:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-19T08:40:34.000000Z", "last_data_reception_at": "2022-10-19T08:40:44.000000Z", "completed_at": "2022-10-19T08:41:03.000000Z", "received_at": "2022-10-19T08:41:03.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": "tr\u00e8s bien"}, "contact": {"uuid": "9fecc740-4f88-11ed-8d83-17ac8bed2826", "remote_id": "d85a8331-f711-4bb6-aa85-9eee37351060", "email": "restaurant@boeuf-couronne.com", "display_name": "", "account": {"uuid": "9fee9ae0-4f88-11ed-ae39-3debcacf7b1b", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854402}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4b42ffc0-4ef9-11ed-9c2a-2591b9043789", "first_shown_at": "2022-10-18T15:26:53.000000Z", "last_shown_at": "2022-10-18T15:26:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-18T15:26:57.000000Z", "last_data_reception_at": "2022-10-18T15:26:57.000000Z", "completed_at": "2022-10-18T15:27:17.000000Z", "received_at": "2022-10-18T15:27:17.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": "NEANT"}, "contact": {"uuid": "13c13990-4e59-11ed-adbd-6561933c73b5", "remote_id": "6d959ac1-4932-4397-ace5-3ffd21dd0b9f", "email": "marc.blanchard@hdj-poissy.fr", "display_name": "", "account": {"uuid": "13c37350-4e59-11ed-beb4-25b34a6f0159", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts"]}, "emitted_at": 1670944854402}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "4b7e6530-4dfb-11ed-84e3-ad5ccfefb15b", "first_shown_at": "2022-10-17T09:08:41.000000Z", "last_shown_at": "2022-10-17T09:08:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-17T09:08:47.000000Z", "last_data_reception_at": "2022-10-17T09:08:47.000000Z", "completed_at": "2022-10-17T09:09:07.000000Z", "received_at": "2022-10-17T09:09:07.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "7", "comment_ameliorer_brigad": "beaucoup de missions non pourvues"}, "contact": {"uuid": "83cacf70-4dfa-11ed-8da0-a5804af26451", "remote_id": "f4ffaa00-d70c-4695-a412-e89be3a091e9", "email": "j.pont@groupecolisee.com", "display_name": "", "account": {"uuid": "83cd6ce0-4dfa-11ed-9b1b-8160fed29cf7", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Medium Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854402}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "820b3590-4df7-11ed-91d1-49989cbae698", "first_shown_at": "2022-10-17T08:41:35.000000Z", "last_shown_at": "2022-10-17T08:41:35.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-17T08:41:39.000000Z", "last_data_reception_at": "2022-10-17T08:41:39.000000Z", "completed_at": "2022-10-17T08:41:41.000000Z", "received_at": "2022-10-17T08:41:41.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "438e6010-4a44-11ed-a150-6d21d49fe0ed", "remote_id": "3e822539-d6d0-4b91-b1c4-23aeecd0c529", "email": "rhadc@acsent.eu", "display_name": "", "account": {"uuid": "4390cd60-4a44-11ed-ba17-5b5af1de79ac", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854402}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b573b870-4df2-11ed-a4d6-b7b1e7fb015c", "first_shown_at": "2022-10-17T08:07:14.000000Z", "last_shown_at": "2022-10-17T08:07:14.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-17T08:07:18.000000Z", "last_data_reception_at": "2022-10-17T08:07:18.000000Z", "completed_at": "2022-10-17T08:07:23.000000Z", "received_at": "2022-10-17T08:07:23.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": null}, "contact": {"uuid": "63a61080-4dee-11ed-af4c-7d3082be2f16", "remote_id": "e3af5739-a755-451e-bfed-ab1ec64590c9", "email": "direction@hesperideslongchamps.fr", "display_name": "", "account": {"uuid": "63a852c0-4dee-11ed-aaa1-c7d0571d2666", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854402}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "9b455870-4df0-11ed-845b-9bfb4c21b45c", "first_shown_at": "2022-10-17T07:52:11.000000Z", "last_shown_at": "2022-10-17T07:52:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-17T07:52:18.000000Z", "last_data_reception_at": "2022-10-17T07:52:18.000000Z", "completed_at": "2022-10-17T07:52:21.000000Z", "received_at": "2022-10-17T07:52:21.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": null}, "contact": {"uuid": "67b0ea00-4df0-11ed-978e-4f0bacdee775", "remote_id": "5472b4b3-ac51-4ba3-83c8-742e3cdaa6db", "email": "contact@lesallumes.net", "display_name": "", "account": {"uuid": "67b36cd0-4df0-11ed-838a-5dfb7903983f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854402}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f1b84530-4def-11ed-9bde-6b7df5d63f41", "first_shown_at": "2022-10-17T07:47:26.000000Z", "last_shown_at": "2022-10-17T07:47:26.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-17T07:48:47.000000Z", "last_data_reception_at": "2022-10-17T07:48:47.000000Z", "completed_at": "2022-10-17T07:48:52.000000Z", "received_at": "2022-10-17T07:48:52.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "e27d26b0-4a49-11ed-815f-337b62e552f3", "remote_id": "71633314-cec4-4156-ada2-e0622b5a8ae6", "email": "pbeusquart@citeonline.org", "display_name": "", "account": {"uuid": "e27f9340-4a49-11ed-ad38-373455cec86e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854402}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f499e8b0-4de7-11ed-8688-6373267ba8d7", "first_shown_at": "2022-10-17T06:50:15.000000Z", "last_shown_at": "2022-10-17T06:50:15.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-17T06:50:24.000000Z", "last_data_reception_at": "2022-10-17T06:50:24.000000Z", "completed_at": "2022-10-17T06:50:26.000000Z", "received_at": "2022-10-17T06:50:26.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "440a3220-4bd2-11ed-94f5-4934db467898", "remote_id": "89bd6010-5e7a-460f-a8a7-dbda0513fcbe", "email": "cyril.jean@api-restauration.com", "display_name": "", "account": {"uuid": "440deef0-4bd2-11ed-b786-874b1551259c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854403}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e3da0ae0-4de0-11ed-87bc-1b6452569879", "first_shown_at": "2022-10-17T05:59:40.000000Z", "last_shown_at": "2022-10-17T05:59:40.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-17T05:59:52.000000Z", "last_data_reception_at": "2022-10-17T05:59:52.000000Z", "completed_at": "2022-10-17T05:59:54.000000Z", "received_at": "2022-10-17T05:59:54.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "844c1440-4a2c-11ed-945e-adc8ebe63d82", "remote_id": "1c62f9b0-3741-45df-9007-e059177909fa", "email": "f.petitpierre@groupe-arom.com", "display_name": "", "account": {"uuid": "844e36d0-4a2c-11ed-80e3-6773ab2af817", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854403}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e2e1ba30-4dae-11ed-a6e6-375326268d64", "first_shown_at": "2022-10-17T00:01:44.000000Z", "last_shown_at": "2022-10-17T00:01:44.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-17T00:01:47.000000Z", "last_data_reception_at": "2022-10-17T00:01:47.000000Z", "completed_at": "2022-10-17T00:01:48.000000Z", "received_at": "2022-10-17T00:01:48.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "c1e559b0-4dad-11ed-8156-b5d8dab7ab22", "remote_id": "b31631c2-57b7-49b7-b3de-2f62354edc54", "email": "travailfort@proton.me", "display_name": "", "account": {"uuid": "c1e7dfb0-4dad-11ed-883e-790116fb15c0", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854403}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "35acc160-4d76-11ed-ba29-cf1e36dcd071", "first_shown_at": "2022-10-16T17:16:02.000000Z", "last_shown_at": "2022-10-16T17:16:02.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-16T17:16:05.000000Z", "last_data_reception_at": "2022-10-16T17:16:05.000000Z", "completed_at": "2022-10-16T17:16:07.000000Z", "received_at": "2022-10-16T17:16:07.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "da9b85c0-4b97-11ed-bde5-b7e9489d90df", "remote_id": "79e69cc2-e00b-444e-be2b-c362b49b327f", "email": "pov@arabica.paris", "display_name": "", "account": {"uuid": "da9d6c40-4b97-11ed-8a59-a7240985637d", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854403}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "054abb50-4d71-11ed-9f22-cb127e1827b4", "first_shown_at": "2022-10-16T16:38:53.000000Z", "last_shown_at": "2022-10-16T16:38:53.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-16T16:38:56.000000Z", "last_data_reception_at": "2022-10-16T16:38:56.000000Z", "completed_at": "2022-10-16T16:38:59.000000Z", "received_at": "2022-10-16T16:38:59.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "e67c8b20-4bd4-11ed-9101-c1dc07ff84d0", "remote_id": "4423313b-0999-40e1-9060-b0b71fb44731", "email": "restovillamedicis@free.fr", "display_name": "", "account": {"uuid": "e67ee6f0-4bd4-11ed-848e-cd8577c9d2bf", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854404}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2644e1f0-4d59-11ed-b84f-e52c1292e888", "first_shown_at": "2022-10-16T13:48:00.000000Z", "last_shown_at": "2022-10-16T13:48:00.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-16T13:48:08.000000Z", "last_data_reception_at": "2022-10-16T13:48:08.000000Z", "completed_at": "2022-10-16T13:48:19.000000Z", "received_at": "2022-10-16T13:48:19.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "922e88f0-4b89-11ed-9a98-c12973b6e13e", "remote_id": "c534037e-87ea-47f2-81fd-4da8e9fcd1ac", "email": "direction@dlsj.fr", "display_name": "", "account": {"uuid": "92307c90-4b89-11ed-96e1-99065c8c6025", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts"]}, "emitted_at": 1670944854404}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "51535600-4d22-11ed-a8a0-57d05bcdc48f", "first_shown_at": "2022-10-16T07:15:30.000000Z", "last_shown_at": "2022-10-16T07:15:30.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-16T07:15:34.000000Z", "last_data_reception_at": "2022-10-16T07:15:34.000000Z", "completed_at": "2022-10-16T07:15:41.000000Z", "received_at": "2022-10-16T07:15:41.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "1432eab0-4a94-11ed-8773-5bfdfbf295af", "remote_id": "2b7c0c9b-5b6a-4945-8ff1-430a18e57f91", "email": "r.lemos@legrandrex.com", "display_name": "", "account": {"uuid": "14357270-4a94-11ed-996c-2da6f44b6cb5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854404}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d110da00-4c91-11ed-9b61-df211b89a351", "first_shown_at": "2022-10-15T14:01:08.000000Z", "last_shown_at": "2022-10-15T14:01:08.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-15T14:01:23.000000Z", "last_data_reception_at": "2022-10-15T14:01:23.000000Z", "completed_at": "2022-10-15T14:01:45.000000Z", "received_at": "2022-10-15T14:01:45.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": "avoir un contact telephonique lorsque c'est necessaire"}, "contact": {"uuid": "5b76c250-4af0-11ed-a8d0-7deb80545efa", "remote_id": "defdfed0-7ed6-4ed5-99e0-d2bd31b534df", "email": "saintouen@classcroute.com", "display_name": "", "account": {"uuid": "5b795f50-4af0-11ed-a235-cdec3b1e27b3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854404}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a818af00-4c78-11ed-9f93-033cfdc22275", "first_shown_at": "2022-10-15T11:01:01.000000Z", "last_shown_at": "2022-10-15T11:01:01.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-15T11:01:07.000000Z", "last_data_reception_at": "2022-10-15T11:01:07.000000Z", "completed_at": "2022-10-15T11:01:08.000000Z", "received_at": "2022-10-15T11:01:08.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "e2843570-4c77-11ed-8767-21a0f1b1fd6c", "remote_id": "0c7e9597-3a3d-4054-99bc-4a8958dc5b7a", "email": "mamie@artichef.fr", "display_name": "", "account": {"uuid": "e285cd40-4c77-11ed-b458-a563fc08b3d1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854404}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "02c5dfb0-4c5c-11ed-ae72-a39632fe7934", "first_shown_at": "2022-10-15T07:35:58.000000Z", "last_shown_at": "2022-10-15T07:35:58.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-15T07:36:02.000000Z", "last_data_reception_at": "2022-10-15T07:36:02.000000Z", "completed_at": "2022-10-15T07:37:18.000000Z", "received_at": "2022-10-15T07:37:18.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "7", "comment_ameliorer_brigad": "Que nous puissions voir le profil des candidats ou les commentaires de nos confreres. Nous avons un candidat rapidement et c'est super mais \u00e0 l'aveugle pour nous!"}, "contact": {"uuid": "906f1ee0-4b9d-11ed-9a8b-97211f778a6a", "remote_id": "fa8f7089-6b25-4c7e-9b52-ce4a5d6f0080", "email": "traiteur@moulindemistou.fr", "display_name": "", "account": {"uuid": "907163c0-4b9d-11ed-922a-eb2b42c555f8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854404}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6976a3a0-4c54-11ed-ac5b-25ea1d107337", "first_shown_at": "2022-10-15T06:41:34.000000Z", "last_shown_at": "2022-10-15T06:41:34.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-15T06:41:40.000000Z", "last_data_reception_at": "2022-10-15T06:41:40.000000Z", "completed_at": "2022-10-15T06:41:44.000000Z", "received_at": "2022-10-15T06:41:44.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "f230bef0-4ad9-11ed-b743-d90bd880be9a", "remote_id": "a048bd33-2a64-4de1-a367-0aa1a91534e3", "email": "lionel.sala@hotels-fhi.com", "display_name": "", "account": {"uuid": "f232e7b0-4ad9-11ed-94d6-61709d38633a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854405}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "c9dd3b30-4c47-11ed-bbd7-4784500fae4f", "first_shown_at": "2022-10-15T05:11:13.000000Z", "last_shown_at": "2022-10-15T05:11:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-15T05:11:18.000000Z", "last_data_reception_at": "2022-10-15T05:11:18.000000Z", "completed_at": "2022-10-15T05:11:21.000000Z", "received_at": "2022-10-15T05:11:21.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "5a352e80-4c47-11ed-b896-831465af0ba9", "remote_id": "7f21ded9-3cb8-4607-96e2-f31027686144", "email": "catherine.kurdyban@korian.fr", "display_name": "", "account": {"uuid": "5a373da0-4c47-11ed-a9a4-d3372f08bcc5", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Key Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854405}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a0ddbb10-4a7e-11ed-b7af-7937c11dc2c1", "first_shown_at": "2022-10-12T22:38:44.000000Z", "last_shown_at": "2022-10-15T00:42:00.000000Z", "show_counter": 2, "first_data_reception_at": "2022-10-15T00:42:06.000000Z", "last_data_reception_at": "2022-10-15T00:42:06.000000Z", "completed_at": "2022-10-15T00:42:39.000000Z", "received_at": "2022-10-15T00:42:39.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "25b29850-4a69-11ed-ae2f-c70a4b54d1bf", "remote_id": "14a61e63-59ae-4b6d-8bd6-ea5a0a1b9e2e", "email": "contact@atelierduparc.fr", "display_name": "", "account": {"uuid": "25b4b4f0-4a69-11ed-8e92-43d4140b4caf", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854405}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "ac892960-4bee-11ed-8146-39c40d7b7676", "first_shown_at": "2022-10-14T18:33:18.000000Z", "last_shown_at": "2022-10-14T18:33:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T18:33:22.000000Z", "last_data_reception_at": "2022-10-14T18:33:22.000000Z", "completed_at": "2022-10-14T18:33:26.000000Z", "received_at": "2022-10-14T18:33:26.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "ce2acb70-4a36-11ed-9c95-335424f6c7ca", "remote_id": "8b37a922-452f-40d7-aa6f-4f8d7350e3c6", "email": "cuisine.belair@korian.fr", "display_name": "", "account": {"uuid": "ce2dad20-4a36-11ed-8c46-dbd6c43fc3d1", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854405}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "307a9a40-4be4-11ed-a7c8-49b98c217469", "first_shown_at": "2022-10-14T17:18:15.000000Z", "last_shown_at": "2022-10-14T17:18:15.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T17:18:20.000000Z", "last_data_reception_at": "2022-10-14T17:18:20.000000Z", "completed_at": "2022-10-14T17:18:55.000000Z", "received_at": "2022-10-14T17:18:55.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "524a25e0-4a1a-11ed-a730-79954c987f68", "remote_id": "5bc127aa-e4d3-446c-abb9-b2fe7ec1d054", "email": "ed56901@compass-group.fr", "display_name": "", "account": {"uuid": "524ccea0-4a1a-11ed-be3c-cd45283cf7ba", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Key Accounts"]}, "emitted_at": 1670944854406}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "80c89a10-4be3-11ed-b931-091b3137b70a", "first_shown_at": "2022-10-14T17:13:20.000000Z", "last_shown_at": "2022-10-14T17:13:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T17:13:25.000000Z", "last_data_reception_at": "2022-10-14T17:13:25.000000Z", "completed_at": "2022-10-14T17:13:31.000000Z", "received_at": "2022-10-14T17:13:31.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "6", "comment_ameliorer_brigad": null}, "contact": {"uuid": "98ba2ac0-4b24-11ed-b66c-1feef38b9f90", "remote_id": "dc6b93e0-7a07-4567-aca9-e03b20a6842a", "email": "vincent@derriere-resto.com", "display_name": "", "account": {"uuid": "98bc47f0-4b24-11ed-b448-f78a070d5abd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854406}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2963a210-4bdd-11ed-84c0-df9588f48971", "first_shown_at": "2022-10-14T16:27:57.000000Z", "last_shown_at": "2022-10-14T16:27:57.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T16:28:03.000000Z", "last_data_reception_at": "2022-10-14T16:28:03.000000Z", "completed_at": "2022-10-14T16:28:12.000000Z", "received_at": "2022-10-14T16:28:12.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "a8e0ae20-4b2d-11ed-b248-0759decfa2ca", "remote_id": "b2d63da3-e80b-4770-a551-fe87f23fe933", "email": "ardoise@tradirest.fr", "display_name": "", "account": {"uuid": "a8e358a0-4b2d-11ed-8f90-e722cb21762c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854406}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d99f6300-4bcd-11ed-a6c7-e36b808b312e", "first_shown_at": "2022-10-14T14:38:20.000000Z", "last_shown_at": "2022-10-14T14:38:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T14:38:27.000000Z", "last_data_reception_at": "2022-10-14T14:38:27.000000Z", "completed_at": "2022-10-14T14:38:30.000000Z", "received_at": "2022-10-14T14:38:30.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": null}, "contact": {"uuid": "a3448e70-4a40-11ed-a402-bd129b6c9869", "remote_id": "a0f3a46c-c710-4735-941d-fdeb4a1bcef1", "email": "valerie.dupuit@saveurs-et-tendances.fr", "display_name": "", "account": {"uuid": "a3461990-4a40-11ed-b85c-abdd11f3636a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854406}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "f091c8c0-4bc5-11ed-b8c5-07e0307b868d", "first_shown_at": "2022-10-14T13:41:43.000000Z", "last_shown_at": "2022-10-14T13:41:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T13:41:46.000000Z", "last_data_reception_at": "2022-10-14T13:41:46.000000Z", "completed_at": "2022-10-14T13:41:48.000000Z", "received_at": "2022-10-14T13:41:48.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "898c8050-4bc5-11ed-b265-6fe0e72e740c", "remote_id": "70e72417-3c09-4398-99a9-b10a1a449897", "email": "gabin.fouquemberg@manifesto-sh.com", "display_name": "", "account": {"uuid": "898f1a00-4bc5-11ed-8419-1f7358861a11", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854406}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a57d7690-4bc3-11ed-8124-d71e0ff1b9ab", "first_shown_at": "2022-10-14T13:25:18.000000Z", "last_shown_at": "2022-10-14T13:25:18.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T13:39:59.000000Z", "last_data_reception_at": "2022-10-14T13:39:59.000000Z", "completed_at": "2022-10-14T13:40:02.000000Z", "received_at": "2022-10-14T13:40:02.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": null}, "contact": {"uuid": "8078edd0-4bc3-11ed-bf5e-a1bc167f55ab", "remote_id": "8685c91c-3ebb-4ac4-87bf-61b127187a9e", "email": "jh.strubel@lalsacien.com", "display_name": "", "account": {"uuid": "807bb4c0-4bc3-11ed-8aae-7756dc23ccab", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854407}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "2038f820-4bc2-11ed-bade-0147a15f8372", "first_shown_at": "2022-10-14T13:14:25.000000Z", "last_shown_at": "2022-10-14T13:14:25.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T13:14:42.000000Z", "last_data_reception_at": "2022-10-14T13:14:42.000000Z", "completed_at": "2022-10-14T13:14:43.000000Z", "received_at": "2022-10-14T13:14:43.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "d98f3d20-4a56-11ed-b289-0b509c0f290f", "remote_id": "1b4aefb8-61b1-4ac8-b9dd-4ac509e540fd", "email": "tipico.lyon@gmail.com", "display_name": "", "account": {"uuid": "d991abf0-4a56-11ed-819f-d9026541166f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854407}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8061e460-4bb9-11ed-b2b9-f7d3104a4c8b", "first_shown_at": "2022-10-14T12:12:41.000000Z", "last_shown_at": "2022-10-14T12:12:41.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T12:12:46.000000Z", "last_data_reception_at": "2022-10-14T12:12:46.000000Z", "completed_at": "2022-10-14T12:12:51.000000Z", "received_at": "2022-10-14T12:12:51.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "3c92b880-4b8e-11ed-8a2f-bb2ad588a00a", "remote_id": "f15d63f2-8c0c-4aad-89e7-053bcd850cb5", "email": "ef58401@compass-group.fr", "display_name": "", "account": {"uuid": "3c955cd0-4b8e-11ed-a8a1-abce153bab1c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854407}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e1702e20-4bb5-11ed-89a1-3dde0677e008", "first_shown_at": "2022-10-14T11:46:46.000000Z", "last_shown_at": "2022-10-14T11:46:46.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T11:46:49.000000Z", "last_data_reception_at": "2022-10-14T11:46:49.000000Z", "completed_at": "2022-10-14T11:46:52.000000Z", "received_at": "2022-10-14T11:46:52.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "065cd540-4afd-11ed-8b9a-41208a6beb3c", "remote_id": "d9cfb88a-8a82-4993-becb-b88f87101385", "email": "coordination-emploi@serenest.fr", "display_name": "", "account": {"uuid": "065fb6d0-4afd-11ed-a7f5-571c4c46d674", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854407}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "48c3f300-4bae-11ed-b2fd-7bd1393448de", "first_shown_at": "2022-10-14T10:52:23.000000Z", "last_shown_at": "2022-10-14T10:52:23.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T10:52:29.000000Z", "last_data_reception_at": "2022-10-14T10:52:29.000000Z", "completed_at": "2022-10-14T10:52:35.000000Z", "received_at": "2022-10-14T10:52:35.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "9a2ee870-4ab4-11ed-903e-398ba5b5d09f", "remote_id": "c512eb95-32de-4e68-ace7-843e50d9c513", "email": "self.mvl@api-restauration.com", "display_name": "", "account": {"uuid": "9a318970-4ab4-11ed-a891-37e324d1db90", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Key Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854408}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "392df100-4ba3-11ed-b56b-253b030e32c6", "first_shown_at": "2022-10-14T09:33:12.000000Z", "last_shown_at": "2022-10-14T09:33:12.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T09:33:23.000000Z", "last_data_reception_at": "2022-10-14T09:33:23.000000Z", "completed_at": "2022-10-14T09:33:30.000000Z", "received_at": "2022-10-14T09:33:30.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "08e8b910-4ba3-11ed-b0a5-17585092d090", "remote_id": "899a481e-5068-47ab-9285-45c502ce6412", "email": "lemaresquierparis@gmail.com", "display_name": "", "account": {"uuid": "08ea91f0-4ba3-11ed-8bca-a9c0108a3cbb", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts"]}, "emitted_at": 1670944854408}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b9803690-4b9d-11ed-a551-95c0deb138cc", "first_shown_at": "2022-10-14T08:53:51.000000Z", "last_shown_at": "2022-10-14T08:53:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T08:53:56.000000Z", "last_data_reception_at": "2022-10-14T08:53:56.000000Z", "completed_at": "2022-10-14T08:54:00.000000Z", "received_at": "2022-10-14T08:54:00.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "7", "comment_ameliorer_brigad": null}, "contact": {"uuid": "b6973df0-4aed-11ed-a2d8-f30d6373a826", "remote_id": "d901310c-0700-4233-b13e-01f9be271b54", "email": "n.beaugendre@lafocss.org", "display_name": "", "account": {"uuid": "b6996be0-4aed-11ed-b6fd-a3fc56b5d233", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854408}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "aa9560e0-4b9c-11ed-b7c4-3f606bf580ac", "first_shown_at": "2022-10-14T08:46:16.000000Z", "last_shown_at": "2022-10-14T08:46:16.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T08:46:19.000000Z", "last_data_reception_at": "2022-10-14T08:46:19.000000Z", "completed_at": "2022-10-14T08:46:26.000000Z", "received_at": "2022-10-14T08:46:26.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "ab1eb100-4ab5-11ed-928d-f7c0fec7bbcc", "remote_id": "95dc6b68-ea85-426b-8436-803de4972441", "email": "fa@apeb.fr", "display_name": "", "account": {"uuid": "ab20a6e0-4ab5-11ed-b9bd-25f78e1005fd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854408}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e87a0dc0-4b97-11ed-b86f-75fb2644dc58", "first_shown_at": "2022-10-14T08:12:13.000000Z", "last_shown_at": "2022-10-14T08:12:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T08:12:16.000000Z", "last_data_reception_at": "2022-10-14T08:12:16.000000Z", "completed_at": "2022-10-14T08:12:19.000000Z", "received_at": "2022-10-14T08:12:19.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "8f2dd590-4b97-11ed-b83d-9946254c5fea", "remote_id": "06c7d2e8-0b2e-4551-979b-38cbcd9a56de", "email": "e911401dir@compass-group.fr", "display_name": "", "account": {"uuid": "8f2f0ce0-4b97-11ed-a012-69f54b5b498a", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854408}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "dc18e230-4b87-11ed-8b24-11fcb4c8e9a8", "first_shown_at": "2022-10-14T06:17:20.000000Z", "last_shown_at": "2022-10-14T06:17:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T06:17:23.000000Z", "last_data_reception_at": "2022-10-14T06:17:23.000000Z", "completed_at": "2022-10-14T06:17:28.000000Z", "received_at": "2022-10-14T06:17:28.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "aa21cf50-4b87-11ed-8f77-2187926d7b66", "remote_id": "99f1f3c0-83d6-49db-9776-2a0637e9226b", "email": "riesilly@tradirest.fr", "display_name": "", "account": {"uuid": "aa244730-4b87-11ed-af21-bf40b3c4653f", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854409}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "3822e630-4b75-11ed-8565-cfd4d0f6488c", "first_shown_at": "2022-10-14T04:03:54.000000Z", "last_shown_at": "2022-10-14T04:03:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T04:03:57.000000Z", "last_data_reception_at": "2022-10-14T04:03:57.000000Z", "completed_at": "2022-10-14T04:03:59.000000Z", "received_at": "2022-10-14T04:03:59.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "5", "comment_ameliorer_brigad": null}, "contact": {"uuid": "bd889be0-4b74-11ed-96a1-c1fb71c130af", "remote_id": "d9c50c3b-76b9-4b92-95c9-3ee6e38eaf55", "email": "constance@hotelbachaumont.com", "display_name": "", "account": {"uuid": "bd8a6d40-4b74-11ed-859b-19f308640abc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854409}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6eeeb400-4b73-11ed-98cb-a77ea399e030", "first_shown_at": "2022-10-14T03:51:07.000000Z", "last_shown_at": "2022-10-14T03:51:07.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-14T03:51:21.000000Z", "last_data_reception_at": "2022-10-14T03:51:21.000000Z", "completed_at": "2022-10-14T03:51:26.000000Z", "received_at": "2022-10-14T03:51:26.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "0941d900-4b73-11ed-bc32-ffd9ad6b2db2", "remote_id": "f1f2fb3f-c0ed-44bf-a5c5-7ca8e99da7a3", "email": "ed89501@compass-group.fr", "display_name": "", "account": {"uuid": "09443680-4b73-11ed-99d5-198584c0ea69", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854409}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7a1abb40-4b3c-11ed-9097-b10b4d317756", "first_shown_at": "2022-10-13T21:17:43.000000Z", "last_shown_at": "2022-10-13T21:17:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-13T21:17:47.000000Z", "last_data_reception_at": "2022-10-13T21:17:47.000000Z", "completed_at": "2022-10-13T21:17:49.000000Z", "received_at": "2022-10-13T21:17:49.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "06567fc0-4a52-11ed-a29b-df8f50b0263a", "remote_id": "e9975784-9b9e-4b41-8f20-aea8bc60fe7a", "email": "recrutement-la-mediterranee@hotmail.com", "display_name": "", "account": {"uuid": "06591120-4a52-11ed-921f-5d570faf844c", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854409}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "fda78940-4b2d-11ed-86ca-cf5e6a380e76", "first_shown_at": "2022-10-13T19:34:01.000000Z", "last_shown_at": "2022-10-13T19:34:01.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-13T19:34:06.000000Z", "last_data_reception_at": "2022-10-13T19:34:06.000000Z", "completed_at": "2022-10-13T19:34:10.000000Z", "received_at": "2022-10-13T19:34:10.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "73ac8cd0-4b2d-11ed-b5cf-297d95d11a74", "remote_id": "7cf0781d-c676-47e9-b39d-60925a6c7d07", "email": "plenti@mrs.fr", "display_name": "", "account": {"uuid": "73aec8c0-4b2d-11ed-9b8b-bbe26f0419e9", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854410}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "217a2ca0-4b0b-11ed-9668-799308c612ec", "first_shown_at": "2022-10-13T15:24:29.000000Z", "last_shown_at": "2022-10-13T15:24:29.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-13T15:29:14.000000Z", "last_data_reception_at": "2022-10-13T15:29:14.000000Z", "completed_at": "2022-10-13T15:29:17.000000Z", "received_at": "2022-10-13T15:29:17.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": null}, "contact": {"uuid": "c6564050-4b03-11ed-83d2-21f95348d5e6", "remote_id": "f628f339-a726-4286-855b-6185c83cdd51", "email": "mireille.seiler@avenirapei.org", "display_name": "", "account": {"uuid": "c65839f0-4b03-11ed-b242-879fe107f706", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854410}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "45393c50-4b07-11ed-a450-a5873d61e492", "first_shown_at": "2022-10-13T14:56:51.000000Z", "last_shown_at": "2022-10-13T14:56:51.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-13T14:57:10.000000Z", "last_data_reception_at": "2022-10-13T14:57:10.000000Z", "completed_at": "2022-10-13T14:57:13.000000Z", "received_at": "2022-10-13T14:57:13.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "e175d480-4b06-11ed-80af-0372ae7c9ca2", "remote_id": "9ecdb966-9ec9-4b92-948c-43375c92fa49", "email": "priscillia.joseph-agounyoh@apf.asso.fr", "display_name": "", "account": {"uuid": "e179fbe0-4b06-11ed-a6ff-d35dd927bef4", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Medium Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854410}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6f3800f0-4afd-11ed-b279-45b54b14bfc1", "first_shown_at": "2022-10-13T13:46:27.000000Z", "last_shown_at": "2022-10-13T13:46:27.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-13T13:50:03.000000Z", "last_data_reception_at": "2022-10-13T13:50:03.000000Z", "completed_at": "2022-10-13T13:50:06.000000Z", "received_at": "2022-10-13T13:50:06.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": null}, "contact": {"uuid": "5765d110-4afd-11ed-a88f-13a18f118594", "remote_id": "9686274c-0208-473d-9a95-34cb4427e618", "email": "rh.eeap91@lestoutpetits.fr", "display_name": "", "account": {"uuid": "5769d130-4afd-11ed-b542-03c8bd2953b3", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854410}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "e9a1f4d0-4aeb-11ed-bcec-351cabec2bea", "first_shown_at": "2022-10-13T11:41:01.000000Z", "last_shown_at": "2022-10-13T11:41:01.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-13T11:41:04.000000Z", "last_data_reception_at": "2022-10-13T11:41:04.000000Z", "completed_at": "2022-10-13T11:41:12.000000Z", "received_at": "2022-10-13T11:41:12.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": "Recrutement"}, "contact": {"uuid": "6ab18aa0-4a1f-11ed-9782-e7cc8e1c1aa7", "remote_id": "35d44408-3900-4f02-bdc3-ff90c03e33c9", "email": "kermel.ah@gmail.com", "display_name": "", "account": {"uuid": "6ab4ada0-4a1f-11ed-a8b7-c7dab3f98859", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["recruitment"], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854410}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "d2c6e790-4aea-11ed-a08f-3db829e1cdfd", "first_shown_at": "2022-10-13T11:33:13.000000Z", "last_shown_at": "2022-10-13T11:33:13.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-13T11:33:17.000000Z", "last_data_reception_at": "2022-10-13T11:33:17.000000Z", "completed_at": "2022-10-13T11:33:19.000000Z", "received_at": "2022-10-13T11:33:19.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "a770f1c0-4aea-11ed-b74f-eb09a553e7c3", "remote_id": "e782b14e-f83c-4109-9830-8ce665fce639", "email": "b.bouvard@lezestegourmand.fr", "display_name": "", "account": {"uuid": "a7733e40-4aea-11ed-bcf2-83950c0bc8dd", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts"]}, "emitted_at": 1670944854410}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "40bf5410-4ad2-11ed-ac55-ad2eaf7f7dc7", "first_shown_at": "2022-10-13T08:37:20.000000Z", "last_shown_at": "2022-10-13T08:37:20.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-13T08:37:26.000000Z", "last_data_reception_at": "2022-10-13T08:37:26.000000Z", "completed_at": "2022-10-13T08:37:28.000000Z", "received_at": "2022-10-13T08:37:28.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "2e28d4f0-4a2c-11ed-814f-3532b9c1924a", "remote_id": "fb070100-d919-462e-b8e6-ff0db46d2270", "email": "dirsky56.69003@api-restauration.com", "display_name": "", "account": {"uuid": "2e2b5b80-4a2c-11ed-811d-470a310e8f11", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854410}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6bf7be20-4ab9-11ed-8d93-5ba416a10995", "first_shown_at": "2022-10-13T05:39:35.000000Z", "last_shown_at": "2022-10-13T05:39:35.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-13T06:04:04.000000Z", "last_data_reception_at": "2022-10-13T06:04:04.000000Z", "completed_at": "2022-10-13T06:04:20.000000Z", "received_at": "2022-10-13T06:04:20.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "7", "comment_ameliorer_brigad": null}, "contact": {"uuid": "04fe2940-4a53-11ed-b1d1-6569a732f1ed", "remote_id": "33b3f02f-3459-4840-bf05-77ec8ad2e6d5", "email": "geraldine@delitsgourmands.fr", "display_name": "", "account": {"uuid": "05005d60-4a53-11ed-9aad-03678131bf0e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854411}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "6b9ba170-4aba-11ed-b54a-cb2b6070f140", "first_shown_at": "2022-10-13T05:46:44.000000Z", "last_shown_at": "2022-10-13T05:46:44.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-13T05:46:51.000000Z", "last_data_reception_at": "2022-10-13T05:46:51.000000Z", "completed_at": "2022-10-13T05:46:53.000000Z", "received_at": "2022-10-13T05:46:53.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "4", "comment_ameliorer_brigad": null}, "contact": {"uuid": "f6f04bf0-4ab9-11ed-8904-8d75ad8ac63c", "remote_id": "761ca24a-d100-49ad-bc8d-b9a1aecc113b", "email": "contact.yohanalias@gmail.com", "display_name": "", "account": {"uuid": "f6f30ca0-4ab9-11ed-9d2f-21be8a6266aa", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854411}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a6dd6230-4a6c-11ed-8989-87bba4120e8a", "first_shown_at": "2022-10-12T20:30:03.000000Z", "last_shown_at": "2022-10-12T20:30:03.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T20:30:10.000000Z", "last_data_reception_at": "2022-10-12T20:30:10.000000Z", "completed_at": "2022-10-12T20:30:16.000000Z", "received_at": "2022-10-12T20:30:16.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "0510e0e0-4a6c-11ed-ba9a-ad24c902629e", "remote_id": "b6e9e961-81fa-4dae-9c7a-30093ee5becd", "email": "sana.nouira@api-restauration.com", "display_name": "", "account": {"uuid": "0512e2a0-4a6c-11ed-8309-4d588f177209", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854411}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "7212fe40-4a5a-11ed-8dcc-9d0e63d50a1b", "first_shown_at": "2022-10-12T18:19:43.000000Z", "last_shown_at": "2022-10-12T18:19:43.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T18:19:47.000000Z", "last_data_reception_at": "2022-10-12T18:19:47.000000Z", "completed_at": "2022-10-12T18:19:50.000000Z", "received_at": "2022-10-12T18:19:50.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "f8282e10-4a59-11ed-a526-7f435643ae59", "remote_id": "05760157-4d86-4e27-acd1-76ea67de11d2", "email": "cuisinepierre@gmail.com", "display_name": "", "account": {"uuid": "f82a4be0-4a59-11ed-bbde-dd08d4f84c02", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854411}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b7ccd340-4a49-11ed-b5c0-a1d90501f348", "first_shown_at": "2022-10-12T16:19:59.000000Z", "last_shown_at": "2022-10-12T16:19:59.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T17:00:05.000000Z", "last_data_reception_at": "2022-10-12T17:00:05.000000Z", "completed_at": "2022-10-12T17:00:07.000000Z", "received_at": "2022-10-12T17:00:07.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "7", "comment_ameliorer_brigad": null}, "contact": {"uuid": "7e97b760-4a49-11ed-b9fb-85043e277580", "remote_id": "e84c83ec-036d-4b21-a9e1-31ebbb49e5f6", "email": "sevandco17@hotmail.fr", "display_name": "", "account": {"uuid": "7e99ffb0-4a49-11ed-930a-4d03addd6578", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854411}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "cb734cc0-4a45-11ed-b93c-998c1bd5b93f", "first_shown_at": "2022-10-12T15:51:54.000000Z", "last_shown_at": "2022-10-12T15:51:54.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T15:52:02.000000Z", "last_data_reception_at": "2022-10-12T15:52:02.000000Z", "completed_at": "2022-10-12T15:52:06.000000Z", "received_at": "2022-10-12T15:52:06.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "8", "comment_ameliorer_brigad": null}, "contact": {"uuid": "3dbf4e30-4a45-11ed-b9dd-c53373cd271f", "remote_id": "4456c929-8ecf-4b1c-89a3-b786020ad91a", "email": "elodie.neto@compass-group.fr", "display_name": "", "account": {"uuid": "3dc20f90-4a45-11ed-8278-5726276c44e8", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854411}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "5ab3ea10-4a43-11ed-993e-e3b5cf271a87", "first_shown_at": "2022-10-12T15:34:26.000000Z", "last_shown_at": "2022-10-12T15:34:26.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T15:34:34.000000Z", "last_data_reception_at": "2022-10-12T15:34:34.000000Z", "completed_at": "2022-10-12T15:34:37.000000Z", "received_at": "2022-10-12T15:34:37.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "7", "comment_ameliorer_brigad": null}, "contact": {"uuid": "7be7e020-4a3d-11ed-ab5a-5776a5531d6f", "remote_id": "4260e332-4a23-45a1-ac46-9cfe51761326", "email": "accueil@ssiad91.fr", "display_name": "", "account": {"uuid": "7be9c950-4a3d-11ed-929a-c1594d679e64", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854412}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "cb3f7820-4a42-11ed-a50d-677b2fe4e91c", "first_shown_at": "2022-10-12T15:30:25.000000Z", "last_shown_at": "2022-10-12T15:30:25.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T15:30:42.000000Z", "last_data_reception_at": "2022-10-12T15:30:42.000000Z", "completed_at": "2022-10-12T15:30:44.000000Z", "received_at": "2022-10-12T15:30:44.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "a5409fb0-4a42-11ed-b688-279509cf96e7", "remote_id": "26b47fc1-9fcd-4b0a-a6cd-96b08d843e5c", "email": "julien.bresson@compass-group.fr", "display_name": "", "account": {"uuid": "a542a6f0-4a42-11ed-b202-01024b669705", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Key Accounts"]}, "emitted_at": 1670944854412}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "35d4e180-4a31-11ed-af3e-63eadc0c24ce", "first_shown_at": "2022-10-12T13:24:33.000000Z", "last_shown_at": "2022-10-12T13:24:33.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T13:24:41.000000Z", "last_data_reception_at": "2022-10-12T13:24:41.000000Z", "completed_at": "2022-10-12T13:24:43.000000Z", "received_at": "2022-10-12T13:24:43.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "6", "comment_ameliorer_brigad": null}, "contact": {"uuid": "f93a0730-4a30-11ed-bc53-d74f8111d0c7", "remote_id": "c41a8a06-38ce-48cf-8000-b1e638c17553", "email": "contact@dejeuneo.fr", "display_name": "", "account": {"uuid": "f93c7730-4a30-11ed-aa10-f1f5715cd9dc", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Small Accounts"]}, "emitted_at": 1670944854412}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "a65ea3e0-4a30-11ed-8b91-c9e3479d41a1", "first_shown_at": "2022-10-12T13:20:32.000000Z", "last_shown_at": "2022-10-12T13:20:32.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T13:20:37.000000Z", "last_data_reception_at": "2022-10-12T13:20:37.000000Z", "completed_at": "2022-10-12T13:20:40.000000Z", "received_at": "2022-10-12T13:20:40.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "10", "comment_ameliorer_brigad": null}, "contact": {"uuid": "c3a327a0-4a2c-11ed-8e11-71a219bd0416", "remote_id": "3835a187-edc1-4603-82b0-ff79166ab40f", "email": "sebastien.hourdiaux@flunch-traiteur.fr", "display_name": "", "account": {"uuid": "c3a64160-4a2c-11ed-9e42-e9c64632c8e2", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Medium Accounts"]}, "emitted_at": 1670944854412}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "15cdff70-4a2e-11ed-a1fd-076d85b06d22", "first_shown_at": "2022-10-12T13:02:11.000000Z", "last_shown_at": "2022-10-12T13:02:11.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T13:02:29.000000Z", "last_data_reception_at": "2022-10-12T13:02:29.000000Z", "completed_at": "2022-10-12T13:03:06.000000Z", "received_at": "2022-10-12T13:03:06.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "5", "comment_ameliorer_brigad": null}, "contact": {"uuid": "a8916ca0-4a2c-11ed-96c7-b90b50624c8c", "remote_id": "d64b44d7-8355-483f-a60b-3097e6495dbf", "email": "thierry.berthault@cembdarp.fr", "display_name": "", "account": {"uuid": "a8938ce0-4a2c-11ed-a10f-01211ad9ad34", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Small Accounts", "Have created multiple missions"]}, "emitted_at": 1670944854412}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "b010d6e0-4a27-11ed-93b4-8184474aab0f", "first_shown_at": "2022-10-12T12:16:23.000000Z", "last_shown_at": "2022-10-12T12:16:23.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T12:16:32.000000Z", "last_data_reception_at": "2022-10-12T12:16:32.000000Z", "completed_at": "2022-10-12T12:17:48.000000Z", "received_at": "2022-10-12T12:17:48.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "7", "comment_ameliorer_brigad": "lors de la lecture du planning nous ne pouvons pas faire la lecture du service lors de plusieurs demandes de la m\u00eame journ\u00e9e"}, "contact": {"uuid": "4eea4480-4a22-11ed-98e4-3f4aa34cda2e", "remote_id": "109321cc-e0dc-4728-bf60-7697c6811e2b", "email": "christelle.lecoz@acsc.asso.fr", "display_name": "", "account": {"uuid": "4eec57a0-4a22-11ed-b4a6-a31ef5cb5656", "remote_id": null, "display_name": "", "domain": null}}, "tags": ["schedule"], "segments": ["French speaking", "Have created multiple missions", "Small Accounts"]}, "emitted_at": 1670944854413}} +{"type": "RECORD", "record": {"stream": "responses", "data": {"uuid": "8c6fe630-4a19-11ed-87aa-a1d37c942bcd", "first_shown_at": "2022-10-12T10:35:10.000000Z", "last_shown_at": "2022-10-12T10:35:10.000000Z", "show_counter": 1, "first_data_reception_at": "2022-10-12T10:35:14.000000Z", "last_data_reception_at": "2022-10-12T10:35:14.000000Z", "completed_at": "2022-10-12T10:35:16.000000Z", "received_at": "2022-10-12T10:35:16.000000Z", "dismissed_at": null, "form": {"uuid": "0e833030-4a17-11ed-849c-314eab19de34", "name": "NPS - Agents - FR"}, "data": {"nps": "9", "comment_ameliorer_brigad": null}, "contact": {"uuid": "2c35af10-4a19-11ed-90e8-dfe416651783", "remote_id": "75bf59ab-1bf3-4be7-a955-27de79836774", "email": "bourse@comet.team", "display_name": "", "account": {"uuid": "2c384840-4a19-11ed-af60-31557e2f059e", "remote_id": null, "display_name": "", "domain": null}}, "tags": [], "segments": ["French speaking", "Have created multiple missions", "Small Accounts"]}, "emitted_at": 1670944854413}} +{"type": "LOG", "log": {"level": "INFO", "message": "Advancing bookmark for responses stream from None to 2022-12-13T14:45:44.000000Z"}} +{"type": "STATE", "state": {"type": "STREAM", "stream": {"stream_descriptor": {"name": "responses"}, "stream_state": {"last_shown_at": "2022-12-13T14:45:44.000000Z"}}, "data": {"responses": {"last_shown_at": "2022-12-13T14:45:44.000000Z"}}}} +{"type": "LOG", "log": {"level": "INFO", "message": "Read 668 records from responses stream"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing responses"}} +{"type": "LOG", "log": {"level": "INFO", "message": "SourceRefiner runtimes:\nSyncing stream responses 0:00:00.724205"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing SourceRefiner"}} diff --git a/airbyte-integrations/connectors/source-refiner/requirements.txt b/airbyte-integrations/connectors/source-refiner/requirements.txt new file mode 100644 index 000000000000..0411042aa091 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/requirements.txt @@ -0,0 +1,2 @@ +-e ../../bases/source-acceptance-test +-e . diff --git a/airbyte-integrations/connectors/source-refiner/setup.py b/airbyte-integrations/connectors/source-refiner/setup.py new file mode 100644 index 000000000000..87fa2f3c30e4 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/setup.py @@ -0,0 +1,30 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +from setuptools import find_packages, setup + +MAIN_REQUIREMENTS = [ + "airbyte-cdk~=0.2", + "basicauth~=0.4.1", +] + +TEST_REQUIREMENTS = [ + "pytest~=6.1", + "pytest-mock~=3.6.1", + "source-acceptance-test", +] + +setup( + name="source_refiner", + description="Source implementation for Refiner.", + author="Airbyte", + author_email="contact@airbyte.io", + packages=find_packages(), + install_requires=MAIN_REQUIREMENTS, + package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]}, + extras_require={ + "tests": TEST_REQUIREMENTS, + }, +) diff --git a/airbyte-integrations/connectors/source-refiner/source_refiner/__init__.py b/airbyte-integrations/connectors/source-refiner/source_refiner/__init__.py new file mode 100644 index 000000000000..45e6e853a9ff --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/source_refiner/__init__.py @@ -0,0 +1,8 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +from .source import SourceRefiner + +__all__ = ["SourceRefiner"] diff --git a/airbyte-integrations/connectors/source-refiner/source_refiner/schemas/TODO.md b/airbyte-integrations/connectors/source-refiner/source_refiner/schemas/TODO.md new file mode 100644 index 000000000000..cf1efadb3c9c --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/source_refiner/schemas/TODO.md @@ -0,0 +1,25 @@ +# TODO: Define your stream schemas +Your connector must describe the schema of each stream it can output using [JSONSchema](https://json-schema.org). + +The simplest way to do this is to describe the schema of your streams using one `.json` file per stream. You can also dynamically generate the schema of your stream in code, or you can combine both approaches: start with a `.json` file and dynamically add properties to it. + +The schema of a stream is the return value of `Stream.get_json_schema`. + +## Static schemas +By default, `Stream.get_json_schema` reads a `.json` file in the `schemas/` directory whose name is equal to the value of the `Stream.name` property. In turn `Stream.name` by default returns the name of the class in snake case. Therefore, if you have a class `class EmployeeBenefits(HttpStream)` the default behavior will look for a file called `schemas/employee_benefits.json`. You can override any of these behaviors as you need. + +Important note: any objects referenced via `$ref` should be placed in the `shared/` directory in their own `.json` files. + +## Dynamic schemas +If you'd rather define your schema in code, override `Stream.get_json_schema` in your stream class to return a `dict` describing the schema using [JSONSchema](https://json-schema.org). + +## Dynamically modifying static schemas +Override `Stream.get_json_schema` to run the default behavior, edit the returned value, then return the edited value: +``` +def get_json_schema(self): + schema = super().get_json_schema() + schema['dynamically_determined_property'] = "property" + return schema +``` + +Delete this file once you're done. Or don't. Up to you :) diff --git a/airbyte-integrations/connectors/source-refiner/source_refiner/schemas/responses.json b/airbyte-integrations/connectors/source-refiner/source_refiner/schemas/responses.json new file mode 100644 index 000000000000..dfa314292874 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/source_refiner/schemas/responses.json @@ -0,0 +1,78 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "first_shown_at": { + "type": ["string", "null"] + }, + "last_shown_at": { + "type": ["string", "null"] + }, + "first_data_reception_at": { + "type": ["string", "null"] + }, + "last_data_reception_at": { + "type": ["string", "null"] + }, + "completed_at": { + "type": ["string", "null"] + }, + "received_at": { + "type": ["string", "null"] + }, + "dismissed_at": { + "type": ["string", "null"] + }, + "form": { + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "name": { + "type": ["string", "null"] + } + } + }, + "data": { + "type": "object" + }, + "contact": { + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "remote_id": { + "type": ["string", "null"] + }, + "email": { + "type": ["string", "null"] + }, + "display_name": { + "type": ["string", "null"] + }, + "account": { + "type": "object", + "properties": { + "uuid": { + "type": ["string", "null"] + }, + "remote_id": { + "type": ["string", "null"] + }, + "display_name": { + "type": ["string", "null"] + }, + "domain": { + "type": ["string", "null"] + } + } + } + } + } + } +} diff --git a/airbyte-integrations/connectors/source-refiner/source_refiner/source.py b/airbyte-integrations/connectors/source-refiner/source_refiner/source.py new file mode 100644 index 000000000000..798fe50bee30 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/source_refiner/source.py @@ -0,0 +1,174 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +from abc import ABC, abstractmethod +from typing import Any, Iterable, List, Mapping, MutableMapping, Optional, Tuple + +import requests +from airbyte_cdk.logger import AirbyteLogger +from airbyte_cdk.sources import AbstractSource +from airbyte_cdk.sources.streams import IncrementalMixin, Stream +from airbyte_cdk.sources.streams.http import HttpStream +from airbyte_cdk.sources.streams.http.auth import TokenAuthenticator + +""" +TODO: Most comments in this class are instructive and should be deleted after the source is implemented. + +This file provides a stubbed example of how to use the Airbyte CDK to develop both a source connector which supports full refresh or and an +incremental syncs from an HTTP API. + +The various TODOs are both implementation hints and steps - fulfilling all the TODOs should be sufficient to implement one basic and one incremental +stream from a source. This pattern is the same one used by Airbyte internally to implement connectors. + +The approach here is not authoritative, and devs are free to use their own judgement. + +There are additional required TODOs in the files within the integration_tests folder and the spec.yaml file. +""" + + +# Basic full refresh stream +class RefinerStream(HttpStream, ABC): + """ + TODO remove this comment + + This class represents a stream output by the connector. + This is an abstract base class meant to contain all the common functionality at the API level e.g: the API base URL, pagination strategy, + parsing responses etc.. + + Each stream should extend this class (or another abstract subclass of it) to specify behavior unique to that stream. + + Typically for REST APIs each stream corresponds to a resource in the API. For example if the API + contains the endpoints + - GET v1/customers + - GET v1/employees + + then you should have three classes: + `class RefinerStream(HttpStream, ABC)` which is the current class + `class Customers(RefinerStream)` contains behavior to pull data for customers using v1/customers + `class Employees(RefinerStream)` contains behavior to pull data for employees using v1/employees + + If some streams implement incremental sync, it is typical to create another class + `class IncrementalRefinerStream((RefinerStream), ABC)` then have concrete stream implementations extend it. An example + is provided below. + + See the reference docs for the full list of configurable options. + """ + + # TODO: Fill in the url base. Required. + url_base = "https://api.refiner.io/v1/" + + def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: + if response.json()["pagination"]["current_page"] == response.json()["pagination"]["last_page"]: + return None + return {"page": response.json()["pagination"]["current_page"] + 1} + + def backoff_time(self, response: requests.Response) -> Optional[float]: + return 5 + + def path(self, *args, **kwargs) -> str: + """ + TODO: Override this method to define the path this stream corresponds to. E.g. if the url is https://example-api.com/v1/employees then this should + return "single". Required. + """ + return self.name + + def request_params( + self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, any] = None, next_page_token: Mapping[str, Any] = None + ) -> MutableMapping[str, Any]: + """ + TODO: Override this method to define any query parameters to be set. Remove this method if you don't need to define request params. + Usually contains common params e.g. pagination size etc. + """ + params = {"page_length": 1000, "include": "all"} + if stream_state and stream_state[self.cursor_field]: + params.update({"date_range_start": stream_state[self.cursor_field]}) + if next_page_token: + params.update(next_page_token) + else: + params["page"] = 1 + return params + + def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: + """ + TODO: Override this method to define how a response is parsed. + :return an iterable containing each record in the response + """ + yield from response.json()["items"] + + +# Basic incremental stream +class IncrementalRefinerStream(RefinerStream, IncrementalMixin): + def __init__(self, *args, **kwargs) -> None: + super().__init__(*args, **kwargs) + self._cursor_value = None + + @property + @abstractmethod + def cursor_field(self) -> str: + pass + + def _update_state(self, latest_cursor): + if latest_cursor: + new_state = max(latest_cursor, self._cursor_value) if self._cursor_value else latest_cursor + if new_state != self._cursor_value: + self.logger.info(f"Advancing bookmark for {self.name} stream from {self._cursor_value} to {new_state}") + self._cursor_value = new_state + + @property + def state(self) -> MutableMapping[str, Any]: + return {self.cursor_field: self._cursor_value} + + @state.setter + def state(self, value: MutableMapping[str, Any]): + self._cursor_value = value.get(self.cursor_field, self._cursor_value) + + def read_records(self, *args, **kwargs) -> Iterable[Mapping[str, Any]]: + records = super().read_records(*args, **kwargs) + latest_cursor = None + for record in records: + cursor = record[self.cursor_field] + latest_cursor = max(cursor, latest_cursor) if latest_cursor else cursor + yield record + self._update_state(latest_cursor=latest_cursor) + + +class Responses(IncrementalRefinerStream): + cursor_field = "last_shown_at" + primary_key = "uuid" + name = "responses" + state_checkpoint_interval = 10000 + + +# Source +class SourceRefiner(AbstractSource): + def _getAuth(self, config): + return TokenAuthenticator(token=config["secret_api_token"], auth_method="Bearer") + + def check_connection(self, logger: AirbyteLogger, config) -> Tuple[bool, any]: + """ + TODO: Implement a connection check to validate that the user-provided config can be used to connect to the underlying API + + See https://github.com/airbytehq/airbyte/blob/master/airbyte-integrations/connectors/source-stripe/source_stripe/source.py#L232 + for an example. + + :param config: the user-input config object conforming to the connector's spec.yaml + :param logger: logger object + :return Tuple[bool, any]: (True, None) if the input config can be used to connect to the API successfully, (False, error) otherwise. + """ + try: + auth = self._getAuth(config) + Responses(authenticator=auth) + return True, None + except Exception as e: + return False, e + + def streams(self, config: Mapping[str, Any]) -> List[Stream]: + """ + TODO: Replace the streams below with your own streams. + + :param config: A Mapping of the user input configuration as defined in the connector spec. + """ + auth = auth = self._getAuth(config) + return [Responses(authenticator=auth)] diff --git a/airbyte-integrations/connectors/source-refiner/source_refiner/spec.yaml b/airbyte-integrations/connectors/source-refiner/source_refiner/spec.yaml new file mode 100644 index 000000000000..acb5b78fe220 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/source_refiner/spec.yaml @@ -0,0 +1,12 @@ +documentationUrl: https://docs.airbyte.com/integrations/sources/refiner +connectionSpecification: + $schema: http://json-schema.org/draft-07/schema# + title: Refiner Spec + type: object + required: + - secret_api_token + properties: + # 'TODO: This schema defines the configuration required for the source. This usually involves metadata such as database and/or authentication information.': + secret_api_token: + type: string + description: The api Token for refiner (Integrations -> HTTP api) \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-refiner/unit_tests/__init__.py b/airbyte-integrations/connectors/source-refiner/unit_tests/__init__.py new file mode 100644 index 000000000000..1100c1c58cf5 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/unit_tests/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-refiner/unit_tests/test_incremental_streams.py b/airbyte-integrations/connectors/source-refiner/unit_tests/test_incremental_streams.py new file mode 100644 index 000000000000..7c6d58497fdf --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/unit_tests/test_incremental_streams.py @@ -0,0 +1,56 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +from pytest import fixture +from source_refiner.source import IncrementalRefinerStream + + +@fixture +def patch_incremental_base_class(mocker): + # Mock abstract methods to enable instantiating abstract class + mocker.patch.object(IncrementalRefinerStream, "path", "v0/example_endpoint") + mocker.patch.object(IncrementalRefinerStream, "primary_key", "test_primary_key") + mocker.patch.object(IncrementalRefinerStream, "__abstractmethods__", set()) + + +def test_cursor_field(patch_incremental_base_class): + stream = IncrementalRefinerStream() + expected_cursor_field = ["last_shown_at"] + assert stream.cursor_field == expected_cursor_field + + +# def test_get_updated_state(patch_incremental_base_class): +# stream = IncrementalRefinerStream(start_date="2022-11-29T00:00:00Z", time_window={ "days": 1 }) +# inputs = {"current_stream_state": None, "latest_record": None} +# # TODO: replace this with your expected updated stream state +# expected_state = {} +# assert stream.get_updated_state(**inputs) == expected_state + + +# def test_stream_slices(patch_incremental_base_class): +# stream = IncrementalRefinerStream(start_date="2022-11-29T00:00:00Z", time_window={ "days": 1 }) +# # TODO: replace this with your input parameters +# inputs = {"sync_mode": SyncMode.incremental, "cursor_field": ['created_at'], "stream_state": { "created_at": 1500 }} +# # TODO: replace this with your expected stream slices list +# expected_stream_slice = [None] +# assert stream.stream_slices(**inputs) == expected_stream_slice + + +def test_supports_incremental(patch_incremental_base_class, mocker): + mocker.patch.object(IncrementalRefinerStream, "cursor_field", "dummy_field") + stream = IncrementalRefinerStream() + assert stream.supports_incremental + + +def test_source_defined_cursor(patch_incremental_base_class): + stream = IncrementalRefinerStream() + assert stream.source_defined_cursor + + +def test_stream_checkpoint_interval(patch_incremental_base_class): + stream = IncrementalRefinerStream() + # TODO: replace this with your expected checkpoint interval + expected_checkpoint_interval = None + assert stream.state_checkpoint_interval == expected_checkpoint_interval diff --git a/airbyte-integrations/connectors/source-refiner/unit_tests/test_source.py b/airbyte-integrations/connectors/source-refiner/unit_tests/test_source.py new file mode 100644 index 000000000000..1e506c170683 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/unit_tests/test_source.py @@ -0,0 +1,22 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from unittest.mock import MagicMock + +from source_refiner.source import SourceRefiner + + +def test_check_connection(mocker): + source = SourceRefiner() + logger_mock, config_mock = MagicMock(), MagicMock() + assert source.check_connection(logger_mock, config_mock) == (True, None) + + +def test_streams(mocker): + source = SourceRefiner() + config_mock = MagicMock() + streams = source.streams(config_mock) + # TODO: replace this with your streams number + expected_streams_number = 1 + assert len(streams) == expected_streams_number diff --git a/airbyte-integrations/connectors/source-refiner/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-refiner/unit_tests/test_streams.py new file mode 100644 index 000000000000..51c94ec0a842 --- /dev/null +++ b/airbyte-integrations/connectors/source-refiner/unit_tests/test_streams.py @@ -0,0 +1,80 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +import pytest +from source_refiner.source import RefinerStream + + +@pytest.fixture +def patch_base_class(mocker): + # Mock abstract methods to enable instantiating abstract class + mocker.patch.object(RefinerStream, "path", "v0/example_endpoint") + mocker.patch.object(RefinerStream, "primary_key", "test_primary_key") + mocker.patch.object(RefinerStream, "__abstractmethods__", set()) + + +def test_request_params(patch_base_class): + stream = RefinerStream() + # TODO: replace this with your input parameters + inputs = {"stream_slice": None, "stream_state": None, "next_page_token": None} + # TODO: replace this with your expected request parameters + expected_params = {"page_length": 1000, "page": 1} + assert stream.request_params(**inputs) == expected_params + + +def test_next_page_token(patch_base_class): + stream = RefinerStream() + # TODO: replace this with your input parameters + inputs = {"json": lambda: {"meta": {"current_page": 2}}} + # TODO: replace this with your expected next page token + expected_token = {"page": 3} + assert stream.next_page_token(**inputs) == expected_token + + +# def test_parse_response(patch_base_class): +# stream = RefinerStream() +# # TODO: replace this with your input parameters +# inputs = {"response": MagicMock()} +# # TODO: replace this with your expected parced object +# expected_parsed_object = {} +# assert next(stream.parse_response(**inputs)) == expected_parsed_object + + +# def test_request_headers(patch_base_class): +# stream = RefinerStream() +# # TODO: replace this with your input parameters +# inputs = {"stream_slice": None, "stream_state": None, "next_page_token": None} +# # TODO: replace this with your expected request headers +# expected_headers = {} +# assert stream.request_headers(**inputs) == expected_headers + + +def test_http_method(patch_base_class): + stream = RefinerStream() + # TODO: replace this with your expected http request method + expected_method = "GET" + assert stream.http_method == expected_method + + +# @pytest.mark.parametrize( +# ("http_status", "should_retry"), +# [ +# (HTTPStatus.OK, False), +# (HTTPStatus.BAD_REQUEST, False), +# (HTTPStatus.TOO_MANY_REQUESTS, True), +# (HTTPStatus.INTERNAL_SERVER_ERROR, True), +# ], +# ) +# def test_should_retry(patch_base_class, http_status, should_retry): +# response_mock = MagicMock() +# response_mock.status_code = http_status +# stream = RefinerStream() +# assert stream.should_retry(response_mock) == should_retry + + +# def test_backoff_time(patch_base_class): +# response_mock = MagicMock() +# stream = RefinerStream() +# expected_backoff_time = None +# assert stream.backoff_time(response_mock) == expected_backoff_time