diff --git a/back/.prettierrc b/back/.prettierrc new file mode 100644 index 00000000..e3b414c7 --- /dev/null +++ b/back/.prettierrc @@ -0,0 +1,5 @@ +{ + "semi": false, + "singleQuote": true, + "trailingComma": "all" +} diff --git a/back/api/application/documentation/1.0.0/application.json b/back/api/application/documentation/1.0.0/application.json index 0437413c..cfd143f5 100644 --- a/back/api/application/documentation/1.0.0/application.json +++ b/back/api/application/documentation/1.0.0/application.json @@ -867,6 +867,9 @@ "preselections_max": { "type": "integer" }, + "is_active": { + "type": "boolean" + }, "published_at": { "type": "string" }, diff --git a/back/api/application/models/application.js b/back/api/application/models/application.js index 0054d33c..e8f75f08 100644 --- a/back/api/application/models/application.js +++ b/back/api/application/models/application.js @@ -1,8 +1,158 @@ -'use strict'; +'use strict' +const format = require('date-fns/format') +const fr = require('date-fns/locale/fr') + +const locale = { + locale: fr, +} /** * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#lifecycle-hooks) * to customize this model */ -module.exports = {}; +module.exports = { + lifecycles: { + async afterCreate(created) { + try { + const applicationsCount = await strapi.services.application.count({ + company: created.company.id, + campaign: created.disponibility.campaign, + }) + const campaign = await strapi.services.campaign.findOne({ + id: created.disponibility.campaign, + }) + const nb_applications = campaign.applications_max - applicationsCount + + const lieu = await strapi.plugins[ + 'users-permissions' + ].services.user.fetch({ + id: created.espace.users_permissions_user, + }) + + // // Send email to the company + strapi.plugins['email'].services.email.sendEmail( + { + to: created.company.email, + }, + { + templateId: 'compagny-application-confirm', + subject: `Votre candidature a bien été prise en compte`, + }, + { + lieu_name: lieu.structureName, + espace_name: created.espace.name, + date_start: format( + new Date(created.disponibility.start), + 'dd/MM', + locale, + ), + date_end: format( + new Date(created.disponibility.end), + 'dd/MM', + locale, + ), + user_name: created.company.firstname, + applications_end_date: format( + new Date(campaign.application_end), + 'dd MMMM yyyy', + locale, + ), + nb_applications, + }, + ) + + // // Send email to the place + strapi.plugins['email'].services.email.sendEmail( + { + to: lieu.email, + }, + { + templateId: 'place-application-confirm', + subject: `Une candidature vient d'être déposée`, + }, + { + user_name: lieu.firstname, + company_name: created.company.structureName, + espace_name: created.espace.name, + date_start: format( + new Date(created.disponibility.start), + 'dd/MM', + locale, + ), + date_end: format( + new Date(created.disponibility.end), + 'dd/MM', + locale, + ), + }, + ) + } catch (e) { + console.log('error', e) + } + }, + async afterDelete(deleted) { + try { + const lieu = await strapi.plugins[ + 'users-permissions' + ].services.user.fetch({ + id: deleted.espace.users_permissions_user, + }) + + // // Send email to the company + strapi.plugins['email'].services.email.sendEmail( + { + to: deleted.company.email, + }, + { + templateId: 'compagny-application-cancel', + subject: `L'annulation de votre candidature a bien été prise en compte`, + }, + { + lieu_name: lieu.structureName, + espace_name: deleted.espace.name, + date_start: format( + new Date(deleted.disponibility.start), + 'dd/MM', + locale, + ), + date_end: format( + new Date(deleted.disponibility.end), + 'dd/MM', + locale, + ), + user_name: deleted.company.firstname, + }, + ) + + // // Send email to the place + strapi.plugins['email'].services.email.sendEmail( + { + to: lieu.email, + }, + { + templateId: 'place-application-cancel', + subject: `Une candidature vient d'être annulée`, + }, + { + user_name: lieu.firstname, + company_name: deleted.company.structureName, + espace_name: deleted.espace.name, + date_start: format( + new Date(deleted.disponibility.start), + 'dd/MM', + locale, + ), + date_end: format( + new Date(deleted.disponibility.end), + 'dd/MM', + locale, + ), + }, + ) + } catch (e) { + console.log('error', e) + } + }, + }, +} diff --git a/back/api/campaign/documentation/1.0.0/campaign.json b/back/api/campaign/documentation/1.0.0/campaign.json index 7dac1418..8dcf547e 100644 --- a/back/api/campaign/documentation/1.0.0/campaign.json +++ b/back/api/campaign/documentation/1.0.0/campaign.json @@ -918,6 +918,9 @@ "preselections_max": { "type": "integer" }, + "is_active": { + "type": "boolean" + }, "published_at": { "type": "string", "format": "date-time" @@ -1016,6 +1019,9 @@ "preselections_max": { "type": "integer" }, + "is_active": { + "type": "boolean" + }, "published_at": { "type": "string", "format": "date-time" diff --git a/back/api/campaign/models/campaign.js b/back/api/campaign/models/campaign.js index 0054d33c..15670351 100644 --- a/back/api/campaign/models/campaign.js +++ b/back/api/campaign/models/campaign.js @@ -1,8 +1,21 @@ -'use strict'; +'use strict' /** * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#lifecycle-hooks) * to customize this model */ -module.exports = {}; +module.exports = { + lifecycles: { + beforeUpdate: async (params, data) => { + // Campaign has a relationship with applications and disponibilities but shouldn't update those to avoid data loss on admin update + const currentCampaignState = await strapi.services.campaign.findOne( + params, + ) + if (currentCampaignState) { + data.applications = currentCampaignState.applications + data.disponibilities = currentCampaignState.disponibilities + } + }, + }, +} diff --git a/back/api/campaign/models/campaign.settings.json b/back/api/campaign/models/campaign.settings.json index ff5bace3..47544d78 100644 --- a/back/api/campaign/models/campaign.settings.json +++ b/back/api/campaign/models/campaign.settings.json @@ -90,6 +90,9 @@ }, "preselections_max": { "type": "integer" + }, + "is_active": { + "type": "boolean" } } } diff --git a/back/api/campaign/services/campaign.js b/back/api/campaign/services/campaign.js index 6538a8c8..21a03882 100644 --- a/back/api/campaign/services/campaign.js +++ b/back/api/campaign/services/campaign.js @@ -1,8 +1,126 @@ -'use strict'; +'use strict' +const format = require('date-fns/format') +const fr = require('date-fns/locale/fr') + +const locale = { + locale: fr, +} /** * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#core-services) * to customize this service */ -module.exports = {}; +module.exports = { + async sendApplicationEndEmail(campaign, place) { + // // Send email to the place when application time is over + await strapi.plugins['email'].services.email.sendEmail( + { + to: place.email, + }, + { + templateId: 'place-application-end', + subject: `La période de candidature est terminée`, + }, + { + date_end: format( + new Date(campaign.preselection_end), + 'dd/MM/yyyy', + locale, + ), + url_btn: `${process.env.FRONT_URL}/compte/candidatures?campaign=${campaign.id}`, + }, + ) + }, + async sendPreselectionReminder(campaign, place) { + // // Send reminder to the place when preselection time is nearly over AND place has missing selections + const place_missing_selections = + await strapi.services.campaign.getPlaceMissingSelections(place, campaign) + + if (place_missing_selections && place_missing_selections?.length > 0) { + await strapi.plugins['email'].services.email.sendEmail( + { + to: place.email, + }, + { + templateId: 'place-preselections-reminder', + subject: `Il vous reste ${campaign?.reminder_days} ${ + campaign?.reminder_days > 1 ? 'jours' : 'jour' + } pour compléter votre pré-sélection`, + }, + { + missing_selections: place_missing_selections, + reminder_days: `${campaign?.reminder_days} ${ + campaign?.reminder_days > 1 ? 'jours' : 'jour' + }`, + url_btn: `${process.env.FRONT_URL}/compte/candidatures?campaign=${campaign.id}`, + }, + ) + } + }, + async sendPreselectionsEnd(campaign, place) { + // Send reminder to the place when preselection time is over AND place has missing selections + const place_missing_selections = + await strapi.services.campaign.getPlaceMissingSelections(place, campaign) + + if (place_missing_selections) { + if (place_missing_selections?.length > 0) { + await strapi.plugins['email'].services.email.sendEmail( + { + to: place.email, + }, + { + templateId: 'place-preselections-end', + subject: `La date limite de pré-sélection a été atteinte`, + }, + { + missing_selections: place_missing_selections, + }, + ) + } else { + await strapi.plugins['email'].services.email.sendEmail( + { + to: place.email, + }, + { + templateId: 'place-preselections-end-ok', + subject: `La période de candidature est terminée`, + }, + { + missing_selections: place_missing_selections, + }, + ) + } + } + }, + async getPlaceMissingSelections(place, campaign) { + const place_campaign_disponibilities = + await strapi.services.disponibility.find( + { + 'espace.users_permissions_user': place.id, + 'espace.published': true, + campaign: campaign.id, + }, + ['applications', 'espace'], + ) + // If place is campaign participan but has 0 disponibilities don't include it in mailing campaigin + if (!place_campaign_disponibilities?.length) return null + + const place_missing_selections = place_campaign_disponibilities + .filter( + (d) => + d?.applications?.length && + !d?.applications?.some((a) => a.status === 'confirmed'), + ) + .map((disponibility) => ({ + espace_name: disponibility?.espace?.name, + date_start: format( + new Date(disponibility?.start), + 'dd/MM/yyyy', + locale, + ), + date_end: format(new Date(disponibility?.end), 'dd/MM/yyyy', locale), + })) + return place_missing_selections + }, +} diff --git a/back/api/disponibility/config/routes.json b/back/api/disponibility/config/routes.json index 84d11024..6040ae6a 100644 --- a/back/api/disponibility/config/routes.json +++ b/back/api/disponibility/config/routes.json @@ -55,6 +55,14 @@ "config": { "policies": ["global::is-place", "is-owner"] } + }, + { + "method": "POST", + "path": "/disponibilities/:id/campaign/:campaignId/confirm", + "handler": "disponibility.campaignConfirm", + "config": { + "policies": ["global::is-place", "is-owner"] + } } ] } diff --git a/back/api/disponibility/controllers/disponibility.js b/back/api/disponibility/controllers/disponibility.js index 5415fb84..1d7bc74c 100644 --- a/back/api/disponibility/controllers/disponibility.js +++ b/back/api/disponibility/controllers/disponibility.js @@ -1,6 +1,12 @@ -"use strict"; -const isAfter = require("date-fns/isAfter"); -const max = require("date-fns/max"); +'use strict' +const isAfter = require('date-fns/isAfter') +const max = require('date-fns/max') +const format = require('date-fns/format') +const fr = require('date-fns/locale/fr') + +const locale = { + locale: fr, +} /** * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#core-controllers) @@ -8,59 +14,59 @@ const max = require("date-fns/max"); */ const params = [ - "dispositif", - "dispositif.companies", - "dispositif.users_permissions_users", -]; + 'dispositif', + 'dispositif.companies', + 'dispositif.users_permissions_users', +] module.exports = { async find(ctx) { const entities = ctx.query._q ? await strapi.services.disponibility.search(ctx.query, params) - : await strapi.services.disponibility.find(ctx.query, params); + : await strapi.services.disponibility.find(ctx.query, params) return entities.map((entity) => - sanitizeEntity(entity, { model: strapi.models.disponibility }) - ); + sanitizeEntity(entity, { model: strapi.models.disponibility }), + ) }, createMany: async (ctx) => { - const user = ctx.state.user; + const user = ctx.state.user if (!Array.isArray(ctx.request.body)) return ctx.badRequest( null, formatError({ - id: "error.arrayProvide", - message: "You must provide an array", - }) - ); + id: 'error.arrayProvide', + message: 'You must provide an array', + }), + ) const newDispo = await Promise.all( ctx.request.body.map((dispo) => - strapi.query("disponibility").create(dispo) - ) - ); + strapi.query('disponibility').create(dispo), + ), + ) - const maxDate = max(newDispo.map((dispo) => new Date(dispo.end))); - const place = newDispo[0].espace; + const maxDate = max(newDispo.map((dispo) => new Date(dispo.end))) + const place = newDispo[0].espace if (!place.filledUntil || isAfter(maxDate, new Date(place.filledUntil))) { - const data = newDispo?.campaign ? {}:{ filledUntil: maxDate }; + const data = newDispo?.campaign ? {} : { filledUntil: maxDate } if (!place.filledUntil) { - data["published"] = true; + data['published'] = true } strapi - .query("espace") + .query('espace') .update({ id: place.id }, data) .then(() => { if (!place.filledUntil) { // Send email to administration - strapi.plugins["email"].services.email.sendEmail( + strapi.plugins['email'].services.email.sendEmail( { to: process.env.EMAIL_RECIPIENT, }, { - templateId: "admin-new-place", + templateId: 'admin-new-place', }, { user_type: user.type, @@ -68,12 +74,72 @@ module.exports = { slug: place.slug, url_strapi: `${process.env.BASE_URL}/admin/plugins/content-manager/collectionType/application::espace.espace/${place.id}`, }, - true - ); + true, + ) } - }); + }) } - return newDispo; + return newDispo + }, + async campaignConfirm(ctx) { + const { id, campaignId } = ctx.params + + const disponibility = await strapi.services.disponibility.findOne({ id }, [ + 'applications', + 'espace.users_permissions_user', + ]) + + if (!disponibility) { + return ctx.throw(404, 'Disponibility not found') + } + + const updatedApplications = disponibility.applications + .filter((application) => { + return ( + application.campaign.toString() === campaignId.toString() && + application.status === 'preselected' + ) + }) + .map((application) => { + return { ...application, status: 'confirmed' } + }) + + await Promise.all( + updatedApplications.map(async (updatedApplication) => { + await strapi.services.application.update( + { id: updatedApplication?.id }, + updatedApplication, + ) + }), + ) + + try { + const lieu = disponibility.espace.users_permissions_user + + const campaign = await strapi.services.campaign.findOne({ + id: disponibility.campaign, + }) + // // Send email to the place + strapi.plugins['email'].services.email.sendEmail( + { + to: lieu.email, + }, + { + templateId: 'place-preselection-confirm', + subject: `Votre pré-selection a été prise en compte`, + }, + { + user_name: lieu.firstname, + campaign_name: campaign?.name, + espace_name: disponibility.espace.name, + date_start: format(new Date(disponibility.start), 'dd/MM', locale), + date_end: format(new Date(disponibility.end), 'dd/MM', locale), + }, + ) + } catch (e) { + console.log('error', e) + } + return { ...disponibility, applications: updatedApplications } }, -}; +} diff --git a/back/api/disponibility/documentation/1.0.0/disponibility.json b/back/api/disponibility/documentation/1.0.0/disponibility.json index de2d7011..45bad9fd 100644 --- a/back/api/disponibility/documentation/1.0.0/disponibility.json +++ b/back/api/disponibility/documentation/1.0.0/disponibility.json @@ -581,6 +581,77 @@ } } } + }, + "/disponibilities/{id}/campaign/{campaignId}/confirm": { + "post": { + "deprecated": false, + "description": "Create a new record", + "responses": { + "200": { + "description": "response", + "content": { + "application/json": { + "schema": { + "properties": { + "foo": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "default": { + "description": "unexpected error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "summary": "", + "tags": [ + "Disponibility" + ], + "requestBody": { + "description": "", + "required": true, + "content": { + "application/json": { + "schema": { + "properties": { + "foo": { + "type": "string" + } + } + } + } + } + } + } } }, "components": { @@ -1032,6 +1103,9 @@ "preselections_max": { "type": "integer" }, + "is_active": { + "type": "boolean" + }, "published_at": { "type": "string" }, diff --git a/back/api/disponibility/documentation/1.0.0/overrides/disponibility.json b/back/api/disponibility/documentation/1.0.0/overrides/disponibility.json index 24c846f0..00f56140 100644 --- a/back/api/disponibility/documentation/1.0.0/overrides/disponibility.json +++ b/back/api/disponibility/documentation/1.0.0/overrides/disponibility.json @@ -50,9 +50,7 @@ } }, "summary": "", - "tags": [ - "Disponibility" - ], + "tags": ["Disponibility"], "parameters": [ { "name": "_limit", @@ -238,9 +236,7 @@ } }, "summary": "", - "tags": [ - "Disponibility" - ], + "tags": ["Disponibility"], "requestBody": { "description": "", "required": true, @@ -254,6 +250,62 @@ } } }, + "/disponibilities/{id}/campaign/{campaignId}/confirm": { + "post": { + "deprecated": false, + "description": "Confirm a campaign for a disponibility", + "summary": "Confirm Campaign", + "tags": ["Disponibility"], + "parameters": [ + { + "in": "path", + "name": "id", + "schema": { + "type": "string" + }, + "required": true, + "description": "Disponibility ID" + }, + { + "in": "path", + "name": "campaignId", + "schema": { + "type": "string" + }, + "required": true, + "description": "Campaign ID" + } + ], + "responses": { + "200": { + "description": "Successful operation", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Disponibility" + } + } + } + }, + "400": { + "description": "Invalid input, object invalid" + }, + "404": { + "description": "Disponibility not found" + } + }, + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Disponibility" + } + } + }, + "required": true + } + } + }, "/disponibilities/count": { "get": { "deprecated": false, @@ -305,9 +357,7 @@ } }, "summary": "", - "tags": [ - "Disponibility" - ], + "tags": ["Disponibility"], "parameters": [] } }, @@ -358,9 +408,7 @@ } }, "summary": "", - "tags": [ - "Disponibility" - ], + "tags": ["Disponibility"], "parameters": [ { "name": "id", @@ -420,9 +468,7 @@ } }, "summary": "", - "tags": [ - "Disponibility" - ], + "tags": ["Disponibility"], "requestBody": { "description": "", "required": true, @@ -493,9 +539,7 @@ } }, "summary": "", - "tags": [ - "Disponibility" - ], + "tags": ["Disponibility"], "parameters": [ { "name": "id", @@ -560,9 +604,7 @@ } }, "summary": "", - "tags": [ - "Disponibility" - ], + "tags": ["Disponibility"], "requestBody": { "description": "", "required": true, @@ -580,4 +622,4 @@ } } } -} \ No newline at end of file +} diff --git a/back/config/functions/bootstrap.js b/back/config/functions/bootstrap.js index 314fb63a..712b57b3 100644 --- a/back/config/functions/bootstrap.js +++ b/back/config/functions/bootstrap.js @@ -1,6 +1,8 @@ -"use strict"; -const Bugsnag = require("@bugsnag/js"); -const BugsnagPluginKoa = require("@bugsnag/plugin-koa"); +'use strict' +const Bugsnag = require('@bugsnag/js') +const BugsnagPluginKoa = require('@bugsnag/plugin-koa') +const cron = require('node-cron') + /** * An asynchronous bootstrap function that runs before * your application gets started. @@ -11,14 +13,82 @@ const BugsnagPluginKoa = require("@bugsnag/plugin-koa"); * See more details here: https://strapi.io/documentation/developer-docs/latest/setup-deployment-guides/configurations.html#bootstrap */ +const everyNightAt2AM = '0 2 * * *' +const testCron = '*/15 * * * * *' +const cronSchedule = process.env.CRON_SCHEDULE || everyNightAt2AM + const isBugsnagEnabled = - process.env.NODE_ENV !== "development" && !process.env.CI; + process.env.NODE_ENV !== 'development' && !process.env.CI module.exports = () => { if (false) { Bugsnag.start({ apiKey: process.env.BUGSNAG_API_KEY, plugins: [BugsnagPluginKoa], - }); + }) } -}; + + // Every night check for campaigns emails to send + cron.schedule(cronSchedule, async () => { + const activeCampaigns = await strapi.services.campaign.find({ + is_active: true, + }) + + const today = new Date() + const yesterday = new Date() + yesterday.setDate(yesterday.getDate() - 1) + + activeCampaigns.map((campaign) => { + // APPLICATIONS END + if (campaign?.application_end) { + if ( + new Date(campaign.application_end).toDateString() === + yesterday.toDateString() + ) { + Promise.all( + campaign.users_permissions_users.map(async (user) => { + await strapi.services.campaign.sendApplicationEndEmail( + campaign, + user, + ) + }), + ) + } + } + + // PRESLECTIONS REMINDER + if (Boolean(campaign?.preselection_end && campaign?.reminder_days)) { + const preselectionsReminderDate = new Date(campaign.preselection_end) + preselectionsReminderDate.setDate( + preselectionsReminderDate.getDate() - campaign?.reminder_days, + ) + + if (preselectionsReminderDate.toDateString() === today.toDateString()) { + Promise.all( + campaign.users_permissions_users.map(async (user) => { + await strapi.services.campaign.sendPreselectionReminder( + campaign, + user, + ) + }), + ) + } + } + + // PRESELECTIONS END + if (Boolean(campaign?.preselection_end)) { + const preselectionsEndDate = new Date(campaign.preselection_end) + if (preselectionsEndDate.toDateString() === yesterday.toDateString()) { + Promise.all( + campaign.users_permissions_users.map(async (user) => { + await strapi.services.campaign.sendPreselectionsEnd( + campaign, + user, + ) + }), + ) + } + } + }) + }) +} diff --git a/back/email_templates_exports/email-designer-templates_01_03_24_LOCAL.json b/back/email_templates_exports/email-designer-templates_01_03_24_LOCAL.json new file mode 100644 index 00000000..efb03c8b --- /dev/null +++ b/back/email_templates_exports/email-designer-templates_01_03_24_LOCAL.json @@ -0,0 +1 @@ +[{"id":20,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/d344269789d6b8b2d1e5a1cd504de100.png","width":95,"height":81},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

\n

 

\n

Nous avons besoin de confirmer que l’adresse courriel que vous venez de renseigner sur StudioD est bien la votre.

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_6","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_7","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_confirm %>?confirmation=<%= token %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Confirmer mon email","_meta":{"htmlID":"u_content_button_1","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":188,"calculatedHeight":39,"containerPadding":"10px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 1px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_9","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_10","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

PS: Si vous avez reçu cet email et qu’il ne vous concerne pas vous pouvez le supprimer.

","_meta":{"htmlID":"u_content_text_3","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"34px 70px 50px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_10","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_11","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_4","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px 19px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":10,"u_column":11,"u_content_html":2,"u_content_text":4,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":6},"name":"Confirmer mon email - StudioD","subject":"Confirmer mon email - Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n

 

\n

Nous avons besoin de confirmer que l’adresse courriel que vous venez de renseigner sur StudioD est bien la votre.

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

PS: Si vous avez reçu cet email et qu’il ne vous concerne pas vous pouvez le supprimer.

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.658Z","updated_at":"2021-05-26T15:08:10.709Z","slug":"email-confirmation"},{"id":21,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/5a81e3cc9579f554c6a2f8a42e7fab76.png","width":81,"height":81},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Nous sommes ravis de vous accueillir dans la communauté StudioD ! Votre tableau de bord vous permettra de gérer vos réservations et d’échanger avec les lieux par messagerie. Commencez par faire un tour des espaces disponibles, ou jetez un oeil à /charte-utilisation\" target=\"_blank\" rel=\"noopener\" data-u-link-value=\"eyJuYW1lIjoid2ViIiwiYXR0cnMiOnsiaHJlZiI6Int7aHJlZn19IiwidGFyZ2V0Ijoie3t0YXJnZXR9fSJ9LCJ2YWx1ZXMiOnsiaHJlZiI6IjwlPSB1cmxfc2l0ZSAlPi9jaGFydGUtdXRpbGlzYXRpb24iLCJ0YXJnZXQiOiJfYmxhbmsifX0=\">notre charte d’utilisation.

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 0px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_6","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_7","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_site %>/espaces","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Découvrir des espaces disponibles","_meta":{"htmlID":"u_content_button_1","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":287,"calculatedHeight":39,"containerPadding":"10px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":12,"u_column":13,"u_content_html":2,"u_content_text":6,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Bienvenue - Compagnie","subject":"Bienvenue sur StudioD","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Nous sommes ravis de vous accueillir dans la communauté StudioD ! Votre tableau de bord vous permettra de gérer vos réservations et d’échanger avec les lieux par messagerie. Commencez par faire un tour des espaces disponibles, ou jetez un oeil à /charte-utilisation\" target=\"_blank\" rel=\"noopener\">notre charte d’utilisation.

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.687Z","updated_at":"2021-05-26T15:08:10.720Z","slug":"welcome-company"},{"id":22,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/5a81e3cc9579f554c6a2f8a42e7fab76.png","width":81,"height":81},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

A remplir

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 21px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Annulation créneau - Compagnie","subject":"Annulation créneau","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

A remplir

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.700Z","updated_at":"2021-05-26T15:08:10.728Z","slug":"cancel-dispo-company"},{"id":23,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/673a05bc2bd770cfa56862b9341cd9fb.png","width":80,"height":80},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= from %>, de la compagnie <%= company %>, vient de vous transmettre une demande de réservation (réf.<%= ref %>) pour l’espace <%= espace_name %> concernant les créneaux suivant :

\n

<%= dispos %>

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 0px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_6","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_7","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_site %>/compte/demandes/<%= ref %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Consulter la demande","_meta":{"htmlID":"u_content_button_1","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":197,"calculatedHeight":39,"containerPadding":"10px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Demande résa - Lieu","subject":"Demande de reservation reçu","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= from %>, de la compagnie <%= company %>, vient de vous transmettre une demande de réservation (réf.<%= ref %>) pour l’espace <%= espace_name %> concernant les créneaux suivant :

\n

<%= dispos %>

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.701Z","updated_at":"2021-05-26T15:08:10.724Z","slug":"ask-resa-place"},{"id":24,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/362c60e4c5d85e30d1f02c0990fadfc1.png","width":80,"height":80},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= company %> vient de confirmer l’annulation de votre demande de réservation (réf. <%= ref %>) pour l’espace <%= espace_name %>.

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 21px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Demande annulation confirmé - Compagnie","subject":"Demande annulé","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= company %> vient de confirmer l’annulation de votre demande de réservation (réf. <%= ref %>) pour l’espace <%= espace_name %>.

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.701Z","updated_at":"2021-05-26T15:08:10.732Z","slug":"ask-cancel-confirmed-company"},{"id":25,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/7789e23a93935744b5742481bac2b424.png","width":77,"height":77},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= user_type %> <%= user_name %> vient de modifier des informations dans sa fiche et reste en attente de modération.

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 11px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"[ADMIN] Utilisateur modifié","subject":"Un utilisateur vient de revoir les informations de sa fiche","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= user_type %> <%= user_name %> vient de modifier des informations dans sa fiche et reste en attente de modération.

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.713Z","updated_at":"2021-05-26T15:08:10.732Z","slug":"admin-user-updated"},{"id":26,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/5a81e3cc9579f554c6a2f8a42e7fab76.png","width":81,"height":81},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Nous sommes ravis de vous accueillir dans la communauté StudioD ! Votre tableau de bord vous permettra de gérer vos espaces, vos demandes de réservations et d’échanger avec les compagnies par messagerie. Commencez par ajouter un premier espace, ou jetez un oeil à /charte-utilisation\" target=\"_blank\" rel=\"noopener\" data-u-link-value=\"eyJuYW1lIjoid2ViIiwiYXR0cnMiOnsiaHJlZiI6Int7aHJlZn19IiwidGFyZ2V0Ijoie3t0YXJnZXR9fSJ9LCJ2YWx1ZXMiOnsiaHJlZiI6IjwlPSB1cmxfc2l0ZSAlPi9jaGFydGUtdXRpbGlzYXRpb24iLCJ0YXJnZXQiOiJfYmxhbmsifX0=\">notre charte d’utilisation.

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 0px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_6","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_7","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_site %>/compte","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Découvrir mon tableau de bord","_meta":{"htmlID":"u_content_button_1","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":260,"calculatedHeight":39,"containerPadding":"10px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":12,"u_column":13,"u_content_html":2,"u_content_text":6,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Bienvenue - Lieu","subject":"Bienvenue sur StudioD","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Nous sommes ravis de vous accueillir dans la communauté StudioD ! Votre tableau de bord vous permettra de gérer vos espaces, vos demandes de réservations et d’échanger avec les compagnies par messagerie. Commencez par ajouter un premier espace, ou jetez un oeil à /charte-utilisation\" target=\"_blank\" rel=\"noopener\">notre charte d’utilisation.

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.849Z","updated_at":"2021-05-26T15:08:10.892Z","slug":"welcome-place"},{"id":27,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/362c60e4c5d85e30d1f02c0990fadfc1.png","width":80,"height":80},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= from %> vient d'annuler <%= dispos_wording %> l'objet de votre demande de réservation (réf. <%= ref %>) pour l'espace <%= espace_name %>:

\n

<%= dispos %>

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 21px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":6},"name":"Confirmation annulation créneau demande - Compagnie","subject":"Confirmation annulation créneau","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= from %> vient d'annuler <%= dispos_wording %> l'objet de votre demande de réservation (réf. <%= ref %>) pour l'espace <%= espace_name %>:

\n

<%= dispos %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.886Z","updated_at":"2021-05-26T15:20:59.368Z","slug":"canceled-dispo-company-request"},{"id":28,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/673a05bc2bd770cfa56862b9341cd9fb.png","width":80,"height":80},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Votre demande de réservation (réf.<%= ref %>) pour l’espace <%= espace_name %> a bien été transmise. 

\n

 

\n

<%= place_name %> devrait revenir vers vous prochainement, vous pouvez également /compte/message/<%= place_id %>\" target=\"_blank\" rel=\"noopener\" data-u-link-value=\"eyJuYW1lIjoid2ViIiwiYXR0cnMiOnsiaHJlZiI6Int7aHJlZn19IiwidGFyZ2V0Ijoie3t0YXJnZXR9fSJ9LCJ2YWx1ZXMiOnsiaHJlZiI6IjwlPSB1cmxfc2l0ZSAlPi9jb21wdGUvbWVzc2FnZS88JT0gcGxhY2VfaWQgJT4iLCJ0YXJnZXQiOiJfYmxhbmsifX0=\">échanger par messagerie si besoin.

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 0px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_6","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_7","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_site %>/compte/demandes/<%= ref %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Retrouver les détails de ma demande","_meta":{"htmlID":"u_content_button_1","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":306,"calculatedHeight":39,"containerPadding":"10px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Demande résa - Compagnie","subject":"Demande de reservation envoyé","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Votre demande de réservation (réf.<%= ref %>) pour l’espace <%= espace_name %> a bien été transmise.

\n

 

\n

<%= place_name %> devrait revenir vers vous prochainement, vous pouvez également /compte/message/<%= place_id %>\" target=\"_blank\" rel=\"noopener\">échanger par messagerie si besoin.

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.893Z","updated_at":"2021-05-26T15:08:10.921Z","slug":"ask-resa-company"},{"id":29,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/0bf2fd126cc87e0f29c1b150af0e5aec.png","width":80,"height":80},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Votre souhait d’annuler votre réservation (réf. <%= ref %>) pour l’espace <%= espace_name %> a bien été transmise. 

\n

 

\n

<%= place_name %> devrait revenir vers vous prochainement, vous pouvez également /compte/message/<%= place_id %>\" target=\"_blank\" rel=\"noopener\" data-u-link-value=\"eyJuYW1lIjoid2ViIiwidmFsdWVzIjp7ImhyZWYiOiI8JT0gdXJsX3NpdGUgJT4vY29tcHRlL21lc3NhZ2UvPCU9IHBsYWNlX2lkICU+IiwidGFyZ2V0IjoiX2JsYW5rIn19\">échanger par messagerie si besoin.

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 0px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Demande annulation - Compagnie","subject":"Votre demande d'annulation a bien été transmise","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Votre souhait d’annuler votre réservation (réf. <%= ref %>) pour l’espace <%= espace_name %> a bien été transmise.

\n

 

\n

<%= place_name %> devrait revenir vers vous prochainement, vous pouvez également /compte/message/<%= place_id %>\" target=\"_blank\" rel=\"noopener\">échanger par messagerie si besoin.

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.897Z","updated_at":"2021-05-26T15:08:10.921Z","slug":"ask-cancel-company"},{"id":30,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/a607b54ea99a4bbae87c7df9f8417c7c.png","width":81,"height":81},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

L’espace <%= espace_name %> (<%= place_name %>) est réservé pour votre compagnie selon les créneaux suivant : 
<%= dispos %>

\n

 

\n

<%= espace_name %> - <%= place_name %>
<%= address %>

\n

 

\n

<%= info %>

\n

 

\n

N’hésitez pas à /compte/message/<%= place_id %>\" target=\"_blank\" rel=\"noopener\" data-u-link-value=\"eyJuYW1lIjoid2ViIiwiYXR0cnMiOnsiaHJlZiI6Int7aHJlZn19IiwidGFyZ2V0Ijoie3t0YXJnZXR9fSJ9LCJ2YWx1ZXMiOnsiaHJlZiI6IjwlPSB1cmxfc2l0ZSAlPi9jb21wdGUvbWVzc2FnZS88JT0gcGxhY2VfaWQgJT4iLCJ0YXJnZXQiOiJfYmxhbmsifX0=\">échanger avec l’équipe du lieu et à revoir les détails complets de l’espace avant votre venue :

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 0px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_6","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_7","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_site %>/espaces/<%= slug %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Fiche Studio 1 (Centre National de la Danse)","_meta":{"htmlID":"u_content_button_1","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":358,"calculatedHeight":39,"containerPadding":"10px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Confirmation réservation - Compagnie","subject":"Confirmation réservation","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

L’espace <%= espace_name %> (<%= place_name %>) est réservé pour votre compagnie selon les créneaux suivant :
<%= dispos %>

\n

 

\n

<%= espace_name %> - <%= place_name %>
<%= address %>

\n

 

\n

<%= info %>

\n

 

\n

N’hésitez pas à /compte/message/<%= place_id %>\" target=\"_blank\" rel=\"noopener\">échanger avec l’équipe du lieu et à revoir les détails complets de l’espace avant votre venue :

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.898Z","updated_at":"2021-05-26T15:08:10.930Z","slug":"booking-confirmed-company"},{"id":31,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/01664340d4a4e68305a70933903e8627.png","width":81,"height":81},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Nous venons de générer un lien sécurisé vous permettant de changer votre mot de passe. Il est valable 24h.

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 0px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_6","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_7","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_btn %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Modifier mon mot de passe","_meta":{"htmlID":"u_content_button_1","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":233,"calculatedHeight":39,"containerPadding":"10px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_13","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_14","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

PS: Si vous n’avez pas fait de telle demande vous pouvez supprimer cet email.

","_meta":{"htmlID":"u_content_text_7","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 29px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Nouveau mot de passe","subject":"Vous avez demandé à modifier votre mot de passe","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Nous venons de générer un lien sécurisé vous permettant de changer votre mot de passe. Il est valable 24h.

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

PS: Si vous n’avez pas fait de telle demande vous pouvez supprimer cet email.

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:10.899Z","updated_at":"2021-05-26T15:08:10.942Z","slug":"new-password"},{"id":32,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/362c60e4c5d85e30d1f02c0990fadfc1.png","width":80,"height":80},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= from %>, de la compagnie <%= company %> vient d’annuler sa demande de réservation (réf. <%= ref %>) pour l’espace <%= espace_name %>.

\n

 

\n

Les créneaux concernés sont à nouveau disponibles :
<%= dispos %>

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 21px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Annulation - Lieu","subject":"Demande annulé","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= from %>, de la compagnie <%= company %> vient d’annuler sa demande de réservation (réf. <%= ref %>) pour l’espace <%= espace_name %>.

\n

 

\n

Les créneaux concernés sont à nouveau disponibles :
<%= dispos %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:11.054Z","updated_at":"2021-05-26T15:08:11.123Z","slug":"canceled-place"},{"id":33,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/7789e23a93935744b5742481bac2b424.png","width":77,"height":77},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Merci, votre mail est confirmé. Votre compte est maintenant en attente d’activation par notre équipe.

\n

 

\n

Vous recevrez une notification par courriel dès qu’elle sera effective. Vous pouvez, en attendant, modifier vos informations sur votre espace personnel si besoin.

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 0px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":12,"u_column":13,"u_content_html":2,"u_content_text":6,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Attente confirmation","subject":"Votre inscription est en attente de confirmation","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Merci, votre mail est confirmé. Votre compte est maintenant en attente d’activation par notre équipe.

\n

 

\n

Vous recevrez une notification par courriel dès qu’elle sera effective. Vous pouvez, en attendant, modifier vos informations sur votre espace personnel si besoin.

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:11.100Z","updated_at":"2021-05-26T15:08:11.134Z","slug":"pending-accepted"},{"id":34,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/7789e23a93935744b5742481bac2b424.png","width":77,"height":77},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= user_type %> <%= user_name %> vient de déposer une demande d’inscription qui nécessite votre modération.

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 11px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_btn %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Consulter sa fiche dans Strapi","_meta":{"htmlID":"u_content_button_2","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":253,"calculatedHeight":39,"containerPadding":"10px 10px 10px 70px"}},{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":2,"u_content_divider":2},"schemaVersion":5},"name":"[ADMIN] Nouvel inscrit","subject":"Un nouvel utilisateur vient de s'inscrire","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= user_type %> <%= user_name %> vient de déposer une demande d’inscription qui nécessite votre modération.

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n\n
\n\n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:11.101Z","updated_at":"2021-05-26T15:08:11.134Z","slug":"admin-new-user"},{"id":35,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/362c60e4c5d85e30d1f02c0990fadfc1.png","width":80,"height":80},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Votre /compte/demandes/<%= ref %>\" target=\"_blank\" rel=\"noopener\" data-u-link-value=\"eyJuYW1lIjoid2ViIiwiYXR0cnMiOnsiaHJlZiI6Int7aHJlZn19IiwidGFyZ2V0Ijoie3t0YXJnZXR9fSJ9LCJ2YWx1ZXMiOnsiaHJlZiI6IjwlPSB1cmxfc2l0ZSAlPi9jb21wdGUvZGVtYW5kZXMvPCU9IHJlZiAlPiIsInRhcmdldCI6Il9ibGFuayJ9fQ==\">demande de réservation (réf. <%= ref %>) pour l’espace <%= espace_name %> vient d’être annulée par le <%= place_name %>.

\n

 

\n

Elle concernait les créneaux suivants :
<%= dispos %>

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 21px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Annulation - Compagnie","subject":"Demande annulé","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Votre /compte/demandes/<%= ref %>\" target=\"_blank\" rel=\"noopener\">demande de réservation (réf. <%= ref %>) pour l’espace <%= espace_name %> vient d’être annulée par le <%= place_name %>.

\n

 

\n

Elle concernait les créneaux suivants :
<%= dispos %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:11.118Z","updated_at":"2021-05-26T15:08:11.141Z","slug":"canceled-company"},{"id":36,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/c0a961a5165912fb15004d329e14ad40.png","width":81,"height":81},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= user_name %> vient d’ajouter un nouvel espace avec des disponibilités sur StudioD !

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 11px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_14","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_15","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_site %>/espaces/<%= slug %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Découvrir l'espace","_meta":{"htmlID":"u_content_button_2","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":171,"calculatedHeight":39,"containerPadding":"10px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_15","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_16","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Pour consulter la fiche de l’espace dans Strapi c’est par ici.

","_meta":{"htmlID":"u_content_text_8","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":15,"u_column":16,"u_content_html":2,"u_content_text":8,"u_content_image":3,"u_content_button":2,"u_content_divider":2},"schemaVersion":5},"name":"[ADMIN] Nouvel espace disponible","subject":"Un nouvel espace est disponible !","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= user_name %> vient d’ajouter un nouvel espace avec des disponibilités sur StudioD !

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Pour consulter la fiche de l’espace dans Strapi c’est par ici.

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:11.136Z","updated_at":"2021-05-26T15:08:11.171Z","slug":"admin-new-place"},{"id":37,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/0bf2fd126cc87e0f29c1b150af0e5aec.png","width":80,"height":80},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= from %>, de la compagnie <%= company %>, souhaiterait annuler sa réservation (réf. <%= ref %>) pour l’espace <%= espace_name %>.

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 0px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_6","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_7","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_site %>/compte/reservations/<%= ref %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Confirmer la demande d'annulation","_meta":{"htmlID":"u_content_button_1","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":289,"calculatedHeight":39,"containerPadding":"10px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_14","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_15","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

En confirmant l’annulation, les créneaux qui faisaient l’objet de cette demande seront à nouveau disponibles.

","_meta":{"htmlID":"u_content_text_8","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"28px 70px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":14,"u_column":15,"u_content_html":2,"u_content_text":8,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Demande annulation - Lieu","subject":"Demande de reservation envoyé","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= from %>, de la compagnie <%= company %>, souhaiterait annuler sa réservation (réf. <%= ref %>) pour l’espace <%= espace_name %>.

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

En confirmant l’annulation, les créneaux qui faisaient l’objet de cette demande seront à nouveau disponibles.

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:11.137Z","updated_at":"2021-05-26T15:08:11.181Z","slug":"ask-cancel-place"},{"id":38,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/ca0567931dc0c6b01dafaf22f821e2aa.png","width":81,"height":81},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= from %> (<%= structure %>) vient de vous écrire à l’instant :

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 15px"}}]}]},{"cells":[8.5,83.17,8.33],"values":{"_meta":{"htmlID":"u_row_14","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_15","htmlClassNames":"u_column"},"border":{"borderTopColor":"#CCC","borderTopStyle":"solid","borderTopWidth":"0px","borderLeftColor":"#CCC","borderLeftStyle":"solid","borderLeftWidth":"0px","borderRightColor":"#CCC","borderRightStyle":"solid","borderRightWidth":"0px","borderBottomColor":"#CCC","borderBottomStyle":"solid","borderBottomWidth":"0px"},"padding":"0px","backgroundColor":"#ffffff"},"contents":[]},{"values":{"_meta":{"htmlID":"u_column_16","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= message %>

","_meta":{"htmlID":"u_content_text_9","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_17","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_6","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_7","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_site %>/compte/message/<%= user_id %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Répondre","_meta":{"htmlID":"u_content_button_1","htmlClassNames":"u_content_button"},"border":{},"padding":"10px 20px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":110,"calculatedHeight":39,"containerPadding":"15px 10px 10px 70px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"color":"#000000","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":14,"u_column":17,"u_content_html":2,"u_content_text":9,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":5},"name":"Notification message","subject":"Vous avez reçu un nouveau message","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= from %> (<%= structure %>) vient de vous écrire à l’instant :

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= message %>

\n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n \n Répondre\n \n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:08:11.228Z","updated_at":"2021-05-26T15:08:11.240Z","slug":"new-message"},{"id":39,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/362c60e4c5d85e30d1f02c0990fadfc1.png","width":80,"height":80},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour <%= user_name %>,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= from %> vient de confirmer l'annulation <%= dispos_wording %> concernant votre /compte/reservations/<%= ref %>\" target=\"_blank\" rel=\"noopener\" data-u-link-value=\"eyJuYW1lIjoid2ViIiwiYXR0cnMiOnsiaHJlZiI6Int7aHJlZn19IiwidGFyZ2V0Ijoie3t0YXJnZXR9fSJ9LCJ2YWx1ZXMiOnsiaHJlZiI6IjwlPSB1cmxfc2l0ZSAlPi9jb21wdGUvcmVzZXJ2YXRpb25zLzwlPSByZWYgJT4iLCJ0YXJnZXQiOiJfYmxhbmsifX0=\">réservation (réf. <%= ref %>) pour l'espace <%= espace_name %>:

\n

<%= dispos %>

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px 21px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_6","htmlClassNames":"u_content_text"},"color":"#626782","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"body":false,"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":13,"u_column":14,"u_content_html":2,"u_content_text":7,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":6},"name":"Confirmation annulation créneau réservation - Compagnie","subject":"Confirmation annulation créneau","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= from %> vient de confirmer l'annulation <%= dispos_wording %> concernant votre /compte/reservations/<%= ref %>\" target=\"_blank\" rel=\"noopener\">réservation (réf. <%= ref %>) pour l'espace <%= espace_name %>:

\n

<%= dispos %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-26T15:21:04.344Z","updated_at":"2021-05-26T15:29:54.515Z","slug":"canceled-dispo-company-booking"},{"id":40,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/7789e23a93935744b5742481bac2b424.png","width":77,"height":77},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour à tou·te·s,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 40px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

À l’aube du premier anniversaire de StudioD, la plateforme solidaire de mise à disposition de studios de danse fait peau neuve !

\n

 

\n

Cela fait quelques mois que nous travaillons à une nouvelle version dans la perspective de mieux répondre aux attentes de chacun·e.

\n

En tant qu’utilisateur·rice de la plateforme initiale, vous pouvez (et même devez !) réactiver votre inscription sur la nouvelle version dès aujourd’hui.

\n

 

\n

Pour ce faire, voici un lien qui vous permettra de réactiver en quelques clics votre compte sur cette version améliorée. La démarche sera simple et intuitive. Nous nous réjouissons de vous retrouver sur la nouvelle version de notre plateforme StudioD !

\n


Quelques améliorations dont vous pourrez profiter:

\n


- Mise en place optimisée d’une recherche de studios de danse par dates

\n

 

\n

- Flexibilité élargie des créneaux que vous pourrez réserver (créneaux courts à la demi-journée / journée ou créneaux longs de plusieurs jours)

\n

 

\n

- Si vous faites une demande sur un créneau, aucune autre compagnie ne pourra poser de demande sur ce créneau tant que le lieu n’aura pas traité la vôtre. Ainsi le taux d’acceptation de vos demandes est maximisé !

\n

 

\n

- Facilitation des échanges entre lieux et compagnies incluant la possibilité de communiquer via une messagerie interne à StudioD

\n

 

\n

- Mise en place d’un système de modération des inscriptions permettant une meilleure sécurité relative aux utilisateur·rice·s de la plateforme

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 30px 0px 40px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

L’équipe de l’Atelier de Paris / CDCN vous remercie chaleureusement pour votre confiance !

\n

 

\n

Au plaisir de vous retrouver sur StudioD,

\n

 

\n

Bien à vous,

\n

 

\n

Clémence HONLET
Production
ATELIER DE PARIS / CDCN
Centre de développement chorégraphique national
Ligne directe: +33 (0)1 417 417 10
Standard: +33 (0)1 417 417 07
www.atelierdeparis.org

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 40px 23px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_12","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_13","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":12,"u_column":13,"u_content_html":2,"u_content_text":6,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":6},"name":"Migration compagnies","subject":"Le nouveau Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour à tou·te·s,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

À l’aube du premier anniversaire de StudioD, la plateforme solidaire de mise à disposition de studios de danse fait peau neuve !

\n

 

\n

Cela fait quelques mois que nous travaillons à une nouvelle version dans la perspective de mieux répondre aux attentes de chacun·e.

\n

En tant qu’utilisateur·rice de la plateforme initiale, vous pouvez (et même devez !) réactiver votre inscription sur la nouvelle version dès aujourd’hui.

\n

 

\n

Pour ce faire, voici un lien qui vous permettra de réactiver en quelques clics votre compte sur cette version améliorée. La démarche sera simple et intuitive. Nous nous réjouissons de vous retrouver sur la nouvelle version de notre plateforme StudioD !

\n


Quelques améliorations dont vous pourrez profiter:

\n


- Mise en place optimisée d’une recherche de studios de danse par dates

\n

 

\n

- Flexibilité élargie des créneaux que vous pourrez réserver (créneaux courts à la demi-journée / journée ou créneaux longs de plusieurs jours)

\n

 

\n

- Si vous faites une demande sur un créneau, aucune autre compagnie ne pourra poser de demande sur ce créneau tant que le lieu n’aura pas traité la vôtre. Ainsi le taux d’acceptation de vos demandes est maximisé !

\n

 

\n

- Facilitation des échanges entre lieux et compagnies incluant la possibilité de communiquer via une messagerie interne à StudioD

\n

 

\n

- Mise en place d’un système de modération des inscriptions permettant une meilleure sécurité relative aux utilisateur·rice·s de la plateforme

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

L’équipe de l’Atelier de Paris / CDCN vous remercie chaleureusement pour votre confiance !

\n

 

\n

Au plaisir de vous retrouver sur StudioD,

\n

 

\n

Bien à vous,

\n

 

\n

Clémence HONLET
Production
ATELIER DE PARIS / CDCN
Centre de développement chorégraphique national
Ligne directe: +33 (0)1 417 417 10
Standard: +33 (0)1 417 417 07
www.atelierdeparis.org

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-28T08:18:25.551Z","updated_at":"2021-05-28T12:27:32.212Z","slug":"migration-company"},{"id":41,"design":{"body":{"rows":[{"cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px"}}]},{"values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/7789e23a93935744b5742481bac2b424.png","width":77,"height":77},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Bonjour à tou·te·s,

","_meta":{"htmlID":"u_content_text_5","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 40px 26px"}}]}]},{"cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"type":"text","values":{"text":"

Comme évoqué dans un précédent mail, nous vous prions de trouver ci-joint le lien de réinscription qui vous permettra de réactiver en quelques clics votre compte sur la nouvelle version de StudioD, plateforme solidaire de mise à disposition de studios de danse. 

\n

 

\n

Si vous le souhaitez, n’hésitez pas à contacter Clémence Honlet à l’adresse mail production@atelierdeparis.org ou au +33 (0)1 417 417 07 afin qu’elle vous accompagne dans cette étape. 

\n

 

\n

Pour rappel, le lancement public de la plateforme de la nouvelle version se fera le mardi 8 juin. Vous pouvez donc dès à présent vous réinscrire pour que votre lieu soit visible par les compagnies lors de leur réinscription.  

\n

 

\n

En effet, jusqu’au 8 juin, vous pourrez vous connecter via le lien https://studio-d-lafs6.ondigitalocean.app/, une adresse temporaire qui vous est dédiée afin d’avoir le temps de mettre à jour les informations relatives à vos espaces en prévision de l’ouverture de StudioD aux compagnies.

\n

 

\n

Après le 8 juin, la version améliorée de la plateforme sera rendue publique et donc à nouveau accessible depuis le lien https://www.studiod-danse.fr/

\n

 

\n

Au plaisir de vous retrouver sur StudioD,

\n

Bien à vous, 

\n

L’équipe StudioD 

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 30px 0px 40px"}}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"contentAlign":"center","contentWidth":"600px","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","cover":false,"center":true,"repeat":false,"fullWidth":true}}},"counters":{"u_row":12,"u_column":13,"u_content_html":2,"u_content_text":6,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":6},"name":"Migration lieux","subject":"Le nouveau Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour à tou·te·s,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n\n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Comme évoqué dans un précédent mail, nous vous prions de trouver ci-joint le lien de réinscription qui vous permettra de réactiver en quelques clics votre compte sur la nouvelle version de StudioD, plateforme solidaire de mise à disposition de studios de danse.

\n

 

\n

Si vous le souhaitez, n’hésitez pas à contacter Clémence Honlet à l’adresse mail production@atelierdeparis.org ou au +33 (0)1 417 417 07 afin qu’elle vous accompagne dans cette étape. 

\n

 

\n

Pour rappel, le lancement public de la plateforme de la nouvelle version se fera le mardi 8 juin. Vous pouvez donc dès à présent vous réinscrire pour que votre lieu soit visible par les compagnies lors de leur réinscription.  

\n

 

\n

En effet, jusqu’au 8 juin, vous pourrez vous connecter via le lien https://studio-d-lafs6.ondigitalocean.app/, une adresse temporaire qui vous est dédiée afin d’avoir le temps de mettre à jour les informations relatives à vos espaces en prévision de l’ouverture de StudioD aux compagnies.

\n

 

\n

Après le 8 juin, la version améliorée de la plateforme sera rendue publique et donc à nouveau accessible depuis le lien https://www.studiod-danse.fr/

\n

 

\n

Au plaisir de vous retrouver sur StudioD,

\n

Bien à vous, 

\n

L’équipe StudioD 

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2021-05-28T08:49:58.821Z","updated_at":"2021-05-28T12:25:42.566Z","slug":"migration-place"},{"id":127,"design":{"body":{"id":"vkO-2KTynZ","rows":[{"id":"gtMsCSSe0S","cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"ntKQWnVILw","values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"YWg_B5BRh1","type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px","displayCondition":null}}]},{"id":"WzwndAoL-W","values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"aKyYh_NvoD","type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"anchor":"","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px","displayCondition":null}}]}]},{"id":"9pKAfH_EgS","cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"NYq2iLP8eX","values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"BiTKufoqWI","type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","anchor":"","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px","displayCondition":null}}]}]},{"id":"anYjoqYQ6z","cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"xd6UzyT1RS","values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"rrc1BpG77i","type":"image","values":{"src":{"url":"","width":800,"height":200},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px","displayCondition":null}}]}]},{"id":"V6W5Ys6sEC","cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"Fz7IMf8P5A","values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"GM6lOEOXko","type":"text","values":{"text":"

La date limite de pré-sélection des candidatures est maintenant révolue. Nous allons consulter l'ensemble des pré-sélections établies par les lieux partenaires de l'appel à projet et nous reviendrons vers vous très prochainement.

\n

 

\n

Merci encore pour votre participation,

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"2JHh80bjwk","cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"fXe4HiEQ9p","values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"3xAas2lwG6","type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 1px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"4pv4ReVYRM","cells":[1],"values":{"_meta":{"htmlID":"u_row_10","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"JS_hPyCvau","values":{"_meta":{"htmlID":"u_column_11","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"id":"1SBpf3BDJf","type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_4","htmlClassNames":"u_content_text"},"color":"#626782","anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px 19px","displayCondition":null},"hasDeprecatedFontControls":true}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"popupWidth":"600px","popupHeight":"auto","borderRadius":"10px","contentAlign":"center","contentWidth":"600px","popupPosition":"center","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"contentVerticalAlign":"center","popupBackgroundColor":"#FFFFFF","popupBackgroundImage":{"url":"","size":"cover","repeat":"no-repeat","position":"center","fullWidth":true},"popupCloseButton_action":{"name":"close_popup","attrs":{"onClick":"document.querySelector('.u-popup-container').style.display = 'none';"}},"popupCloseButton_margin":"0px","popupCloseButton_position":"top-right","popupCloseButton_iconColor":"#000000","popupOverlay_backgroundColor":"rgba(0, 0, 0, 0.1)","popupCloseButton_borderRadius":"0px","popupCloseButton_backgroundColor":"#DDDDDD"},"footers":[],"headers":[]},"counters":{"u_row":12,"u_column":13,"u_content_html":2,"u_content_text":5,"u_content_image":3,"u_content_button":3,"u_content_divider":2},"schemaVersion":16},"name":"Lieu - Préselections End status ok","subject":"La date limite de pré-sélection a été atteinte - Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

La date limite de pré-sélection des candidatures est maintenant révolue. Nous allons consulter l'ensemble des pré-sélections établies par les lieux partenaires de l'appel à projet et nous reviendrons vers vous très prochainement.

\n

 

\n

Merci encore pour votre participation,

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2024-02-29T14:30:38.017Z","updated_at":"2024-02-29T14:31:47.590Z","slug":"place-preselections-end-ok"},{"id":121,"design":{"body":{"id":"vkO-2KTynZ","rows":[{"id":"gtMsCSSe0S","cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"ntKQWnVILw","values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"YWg_B5BRh1","type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px","displayCondition":null}}]},{"id":"WzwndAoL-W","values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"aKyYh_NvoD","type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"anchor":"","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px","displayCondition":null}}]}]},{"id":"9pKAfH_EgS","cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"NYq2iLP8eX","values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"BiTKufoqWI","type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","anchor":"","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px","displayCondition":null}}]}]},{"id":"anYjoqYQ6z","cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"xd6UzyT1RS","values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"rrc1BpG77i","type":"image","values":{"src":{"url":"","width":800,"height":200},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px","displayCondition":null}}]}]},{"id":"V6W5Ys6sEC","cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"Fz7IMf8P5A","values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"GM6lOEOXko","type":"text","values":{"text":"

Bonjour <%= user_name %>,

\n

 

\n

L'annulation de votre candidature pour le créneau suivant a bien été prise en compte :

\n","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"2JHh80bjwk","cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"fXe4HiEQ9p","values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"3xAas2lwG6","type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 1px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"4pv4ReVYRM","cells":[1],"values":{"_meta":{"htmlID":"u_row_10","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"JS_hPyCvau","values":{"_meta":{"htmlID":"u_column_11","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"id":"1SBpf3BDJf","type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_4","htmlClassNames":"u_content_text"},"color":"#626782","anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px 19px","displayCondition":null},"hasDeprecatedFontControls":true}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"popupWidth":"600px","popupHeight":"auto","borderRadius":"10px","contentAlign":"center","contentWidth":"600px","popupPosition":"center","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"contentVerticalAlign":"center","popupBackgroundColor":"#FFFFFF","popupBackgroundImage":{"url":"","size":"cover","repeat":"no-repeat","position":"center","fullWidth":true},"popupCloseButton_action":{"name":"close_popup","attrs":{"onClick":"document.querySelector('.u-popup-container').style.display = 'none';"}},"popupCloseButton_margin":"0px","popupCloseButton_position":"top-right","popupCloseButton_iconColor":"#000000","popupOverlay_backgroundColor":"rgba(0, 0, 0, 0.1)","popupCloseButton_borderRadius":"0px","popupCloseButton_backgroundColor":"#DDDDDD"},"footers":[],"headers":[]},"counters":{"u_row":10,"u_column":11,"u_content_html":2,"u_content_text":4,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":16},"name":"Compagnie - Annulation Candidature","subject":"Votre annulation de candidature a bien été prise en compte - Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n

 

\n

L'annulation de votre candidature pour le créneau suivant a bien été prise en compte :

\n
    \n
  • <%= lieu_name %> | <%= espace_name %> | <%= date_start %> →  <%= date_end %>
  • \n
\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2024-02-28T16:25:47.934Z","updated_at":"2024-02-28T16:38:30.114Z","slug":"compagny-application-cancel"},{"id":119,"design":{"body":{"id":"vkO-2KTynZ","rows":[{"id":"gtMsCSSe0S","cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"ntKQWnVILw","values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"YWg_B5BRh1","type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px","displayCondition":null}}]},{"id":"WzwndAoL-W","values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"aKyYh_NvoD","type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"anchor":"","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px","displayCondition":null}}]}]},{"id":"9pKAfH_EgS","cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"NYq2iLP8eX","values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"BiTKufoqWI","type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","anchor":"","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px","displayCondition":null}}]}]},{"id":"anYjoqYQ6z","cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"xd6UzyT1RS","values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"rrc1BpG77i","type":"image","values":{"src":{"url":"","width":800,"height":200},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px","displayCondition":null}}]}]},{"id":"V6W5Ys6sEC","cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"Fz7IMf8P5A","values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"GM6lOEOXko","type":"text","values":{"text":"

Bonjour <%= user_name %>,

\n

 

\n

Votre dépôt de candidature pour le créneau suivant a bien été pris en compte :

\n\n

 

\n

Il vous reste <%= nb_applications %> candidature(s) à déposer avant le <%= applications_end_date %>. 

\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"2JHh80bjwk","cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"fXe4HiEQ9p","values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"3xAas2lwG6","type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 1px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"4pv4ReVYRM","cells":[1],"values":{"_meta":{"htmlID":"u_row_10","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"JS_hPyCvau","values":{"_meta":{"htmlID":"u_column_11","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"id":"1SBpf3BDJf","type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_4","htmlClassNames":"u_content_text"},"color":"#626782","anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px 19px","displayCondition":null},"hasDeprecatedFontControls":true}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"popupWidth":"600px","popupHeight":"auto","borderRadius":"10px","contentAlign":"center","contentWidth":"600px","popupPosition":"center","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"contentVerticalAlign":"center","popupBackgroundColor":"#FFFFFF","popupBackgroundImage":{"url":"","size":"cover","repeat":"no-repeat","position":"center","fullWidth":true},"popupCloseButton_action":{"name":"close_popup","attrs":{"onClick":"document.querySelector('.u-popup-container').style.display = 'none';"}},"popupCloseButton_margin":"0px","popupCloseButton_position":"top-right","popupCloseButton_iconColor":"#000000","popupOverlay_backgroundColor":"rgba(0, 0, 0, 0.1)","popupCloseButton_borderRadius":"0px","popupCloseButton_backgroundColor":"#DDDDDD"},"footers":[],"headers":[]},"counters":{"u_row":10,"u_column":11,"u_content_html":2,"u_content_text":4,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":16},"name":"Compagnie - Confirmation Candidature","subject":"Votre candidature a bien été prise en compte - Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n

 

\n

Votre dépôt de candidature pour le créneau suivant a bien été pris en compte :

\n
    \n
  • <%= lieu_name %> | <%= espace_name %> | <%= date_start %> →  <%= date_end %>
  • \n
\n

 

\n

Il vous reste <%= nb_applications %> candidature(s) à déposer avant le <%= applications_end_date %>. 

\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2024-02-28T15:43:14.146Z","updated_at":"2024-02-28T16:39:13.638Z","slug":"compagny-application-confirm"},{"id":120,"design":{"body":{"id":"vkO-2KTynZ","rows":[{"id":"gtMsCSSe0S","cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"ntKQWnVILw","values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"YWg_B5BRh1","type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px","displayCondition":null}}]},{"id":"WzwndAoL-W","values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"aKyYh_NvoD","type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"anchor":"","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px","displayCondition":null}}]}]},{"id":"9pKAfH_EgS","cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"NYq2iLP8eX","values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"BiTKufoqWI","type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","anchor":"","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px","displayCondition":null}}]}]},{"id":"anYjoqYQ6z","cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"xd6UzyT1RS","values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"rrc1BpG77i","type":"image","values":{"src":{"url":"","width":800,"height":200},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px","displayCondition":null}}]}]},{"id":"V6W5Ys6sEC","cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"Fz7IMf8P5A","values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"GM6lOEOXko","type":"text","values":{"text":"

Bonjour <%= user_name %>,

\n

 

\n

Une candidature vient d'être déposée pour le créneau suivant :

\n\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"2JHh80bjwk","cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"fXe4HiEQ9p","values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"3xAas2lwG6","type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 1px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"4pv4ReVYRM","cells":[1],"values":{"_meta":{"htmlID":"u_row_10","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"JS_hPyCvau","values":{"_meta":{"htmlID":"u_column_11","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"id":"1SBpf3BDJf","type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_4","htmlClassNames":"u_content_text"},"color":"#626782","anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px 19px","displayCondition":null},"hasDeprecatedFontControls":true}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"popupWidth":"600px","popupHeight":"auto","borderRadius":"10px","contentAlign":"center","contentWidth":"600px","popupPosition":"center","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"contentVerticalAlign":"center","popupBackgroundColor":"#FFFFFF","popupBackgroundImage":{"url":"","size":"cover","repeat":"no-repeat","position":"center","fullWidth":true},"popupCloseButton_action":{"name":"close_popup","attrs":{"onClick":"document.querySelector('.u-popup-container').style.display = 'none';"}},"popupCloseButton_margin":"0px","popupCloseButton_position":"top-right","popupCloseButton_iconColor":"#000000","popupOverlay_backgroundColor":"rgba(0, 0, 0, 0.1)","popupCloseButton_borderRadius":"0px","popupCloseButton_backgroundColor":"#DDDDDD"},"footers":[],"headers":[]},"counters":{"u_row":10,"u_column":11,"u_content_html":2,"u_content_text":4,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":16},"name":"Lieu - Confirmation Candidature","subject":"Une candidature vient d'être déposée - Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n

 

\n

Une candidature vient d'être déposée pour le créneau suivant :

\n
    \n
  • <%= company_name %> | <%= espace_name %> | <%= date_start %> →  <%= date_end %>
  • \n
\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2024-02-28T16:10:47.354Z","updated_at":"2024-02-28T16:13:49.313Z","slug":"place-application-confirm"},{"id":123,"design":{"body":{"id":"vkO-2KTynZ","rows":[{"id":"gtMsCSSe0S","cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"ntKQWnVILw","values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"YWg_B5BRh1","type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px","displayCondition":null}}]},{"id":"WzwndAoL-W","values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"aKyYh_NvoD","type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"anchor":"","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px","displayCondition":null}}]}]},{"id":"9pKAfH_EgS","cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"NYq2iLP8eX","values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"BiTKufoqWI","type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","anchor":"","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px","displayCondition":null}}]}]},{"id":"anYjoqYQ6z","cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"xd6UzyT1RS","values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"rrc1BpG77i","type":"image","values":{"src":{"url":"","width":800,"height":200},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px","displayCondition":null}}]}]},{"id":"V6W5Ys6sEC","cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"Fz7IMf8P5A","values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"GM6lOEOXko","type":"text","values":{"text":"

La période de candidatures est désormais terminée : vous pouvez dès maintenant et jusqu'au <%= date_end %> consulter les candidatures déposées et renseigner votre pré-selection.


","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"TAqytRwtZx","cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"center","fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"FjG0uQFinf","values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px 0px 0px 60px","borderRadius":"0px","backgroundColor":""},"contents":[{"id":"8JZL04tp37","type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_btn %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Consulter les candidatures","_meta":{"htmlID":"u_content_button_2","htmlClassNames":"u_content_button"},"anchor":"","border":{},"padding":"10px 20px","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":206,"calculatedHeight":37,"containerPadding":"12px","displayCondition":null}}]}]},{"id":"2JHh80bjwk","cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"fXe4HiEQ9p","values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"3xAas2lwG6","type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 1px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"4pv4ReVYRM","cells":[1],"values":{"_meta":{"htmlID":"u_row_10","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"JS_hPyCvau","values":{"_meta":{"htmlID":"u_column_11","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"id":"1SBpf3BDJf","type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_4","htmlClassNames":"u_content_text"},"color":"#626782","anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px 19px","displayCondition":null},"hasDeprecatedFontControls":true}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"popupWidth":"600px","popupHeight":"auto","borderRadius":"10px","contentAlign":"center","contentWidth":"600px","popupPosition":"center","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"contentVerticalAlign":"center","popupBackgroundColor":"#FFFFFF","popupBackgroundImage":{"url":"","size":"cover","repeat":"no-repeat","position":"center","fullWidth":true},"popupCloseButton_action":{"name":"close_popup","attrs":{"onClick":"document.querySelector('.u-popup-container').style.display = 'none';"}},"popupCloseButton_margin":"0px","popupCloseButton_position":"top-right","popupCloseButton_iconColor":"#000000","popupOverlay_backgroundColor":"rgba(0, 0, 0, 0.1)","popupCloseButton_borderRadius":"0px","popupCloseButton_backgroundColor":"#DDDDDD"},"footers":[],"headers":[]},"counters":{"u_row":12,"u_column":13,"u_content_html":2,"u_content_text":5,"u_content_image":3,"u_content_button":3,"u_content_divider":2},"schemaVersion":16},"name":"Lieu - Fin des candidatures","subject":"La période de candidature est terminée - Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

La période de candidatures est désormais terminée : vous pouvez dès maintenant et jusqu'au <%= date_end %> consulter les candidatures déposées et renseigner votre pré-selection.


\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2024-02-28T17:07:07.181Z","updated_at":"2024-02-29T08:43:11.056Z","slug":"place-application-end"},{"id":122,"design":{"body":{"id":"vkO-2KTynZ","rows":[{"id":"gtMsCSSe0S","cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"ntKQWnVILw","values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"YWg_B5BRh1","type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px","displayCondition":null}}]},{"id":"WzwndAoL-W","values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"aKyYh_NvoD","type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"anchor":"","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px","displayCondition":null}}]}]},{"id":"9pKAfH_EgS","cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"NYq2iLP8eX","values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"BiTKufoqWI","type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","anchor":"","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px","displayCondition":null}}]}]},{"id":"anYjoqYQ6z","cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"xd6UzyT1RS","values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"rrc1BpG77i","type":"image","values":{"src":{"url":"","width":800,"height":200},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px","displayCondition":null}}]}]},{"id":"V6W5Ys6sEC","cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"Fz7IMf8P5A","values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"GM6lOEOXko","type":"text","values":{"text":"

Bonjour <%= user_name %>,

\n

 

\n

Une candidature vient d'être annulée pour le créneau suivant :

\n","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"2JHh80bjwk","cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"fXe4HiEQ9p","values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"3xAas2lwG6","type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 1px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"4pv4ReVYRM","cells":[1],"values":{"_meta":{"htmlID":"u_row_10","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"JS_hPyCvau","values":{"_meta":{"htmlID":"u_column_11","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"id":"1SBpf3BDJf","type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_4","htmlClassNames":"u_content_text"},"color":"#626782","anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px 19px","displayCondition":null},"hasDeprecatedFontControls":true}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"popupWidth":"600px","popupHeight":"auto","borderRadius":"10px","contentAlign":"center","contentWidth":"600px","popupPosition":"center","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"contentVerticalAlign":"center","popupBackgroundColor":"#FFFFFF","popupBackgroundImage":{"url":"","size":"cover","repeat":"no-repeat","position":"center","fullWidth":true},"popupCloseButton_action":{"name":"close_popup","attrs":{"onClick":"document.querySelector('.u-popup-container').style.display = 'none';"}},"popupCloseButton_margin":"0px","popupCloseButton_position":"top-right","popupCloseButton_iconColor":"#000000","popupOverlay_backgroundColor":"rgba(0, 0, 0, 0.1)","popupCloseButton_borderRadius":"0px","popupCloseButton_backgroundColor":"#DDDDDD"},"footers":[],"headers":[]},"counters":{"u_row":10,"u_column":11,"u_content_html":2,"u_content_text":4,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":16},"name":"Lieu - Annulation Candidature","subject":"Une candidature vient d'être annulée - Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n

 

\n

Une candidature vient d'être annulée pour le créneau suivant :

\n
    \n
  • <%= company_name %> | <%= espace_name %> | <%= date_start %> →  <%= date_end %>
  • \n
\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2024-02-28T16:39:31.652Z","updated_at":"2024-02-28T16:40:48.483Z","slug":"place-application-cancel"},{"id":126,"design":{"body":{"id":"vkO-2KTynZ","rows":[{"id":"gtMsCSSe0S","cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"ntKQWnVILw","values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"YWg_B5BRh1","type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px","displayCondition":null}}]},{"id":"WzwndAoL-W","values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"aKyYh_NvoD","type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"anchor":"","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px","displayCondition":null}}]}]},{"id":"9pKAfH_EgS","cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"NYq2iLP8eX","values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"BiTKufoqWI","type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","anchor":"","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px","displayCondition":null}}]}]},{"id":"anYjoqYQ6z","cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"xd6UzyT1RS","values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"rrc1BpG77i","type":"image","values":{"src":{"url":"","width":800,"height":200},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px","displayCondition":null}}]}]},{"id":"V6W5Ys6sEC","cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"Fz7IMf8P5A","values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"GM6lOEOXko","type":"text","values":{"text":"

Bonjour <%= user_name %>,

\n

 

\n

L'équipe de l'Atelier de Paris va étudier vos choix pré-sélectionnés et reviendra vers vous pour vous confirmer l'attribution de ce créneau  <%= campaign_name %> :

\n\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"2JHh80bjwk","cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"fXe4HiEQ9p","values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"3xAas2lwG6","type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 1px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"4pv4ReVYRM","cells":[1],"values":{"_meta":{"htmlID":"u_row_10","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"JS_hPyCvau","values":{"_meta":{"htmlID":"u_column_11","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"id":"1SBpf3BDJf","type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_4","htmlClassNames":"u_content_text"},"color":"#626782","anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px 19px","displayCondition":null},"hasDeprecatedFontControls":true}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"popupWidth":"600px","popupHeight":"auto","borderRadius":"10px","contentAlign":"center","contentWidth":"600px","popupPosition":"center","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"contentVerticalAlign":"center","popupBackgroundColor":"#FFFFFF","popupBackgroundImage":{"url":"","size":"cover","repeat":"no-repeat","position":"center","fullWidth":true},"popupCloseButton_action":{"name":"close_popup","attrs":{"onClick":"document.querySelector('.u-popup-container').style.display = 'none';"}},"popupCloseButton_margin":"0px","popupCloseButton_position":"top-right","popupCloseButton_iconColor":"#000000","popupOverlay_backgroundColor":"rgba(0, 0, 0, 0.1)","popupCloseButton_borderRadius":"0px","popupCloseButton_backgroundColor":"#DDDDDD"},"footers":[],"headers":[]},"counters":{"u_row":10,"u_column":11,"u_content_html":2,"u_content_text":4,"u_content_image":3,"u_content_button":1,"u_content_divider":2},"schemaVersion":16},"name":"Lieu - Confirmation préselection","subject":"Votre pré-selection a été prise en compte - Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Bonjour <%= user_name %>,

\n

 

\n

L'équipe de l'Atelier de Paris va étudier vos choix pré-sélectionnés et reviendra vers vous pour vous confirmer l'attribution de ce créneau  <%= campaign_name %> :

\n
    \n
  •  <%= espace_name %> | <%= date_start %> →  <%= date_end %>
  • \n
\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2024-02-29T09:26:58.231Z","updated_at":"2024-03-01T09:43:59.848Z","slug":"place-preselection-confirm"},{"id":125,"design":{"body":{"id":"vkO-2KTynZ","rows":[{"id":"gtMsCSSe0S","cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"ntKQWnVILw","values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"YWg_B5BRh1","type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px","displayCondition":null}}]},{"id":"WzwndAoL-W","values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"aKyYh_NvoD","type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"anchor":"","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px","displayCondition":null}}]}]},{"id":"9pKAfH_EgS","cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"NYq2iLP8eX","values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"BiTKufoqWI","type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","anchor":"","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px","displayCondition":null}}]}]},{"id":"anYjoqYQ6z","cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"xd6UzyT1RS","values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"rrc1BpG77i","type":"image","values":{"src":{"url":"","width":800,"height":200},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px","displayCondition":null}}]}]},{"id":"V6W5Ys6sEC","cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"Fz7IMf8P5A","values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"GM6lOEOXko","type":"text","values":{"text":"

La date limite de pré-sélection des candidatures est maintenant révolue. Il nous manque votre pré-sélection pour les créneaux suivants :

\n

 

\n
\n
<% _.forEach(missing_selections, function(missing_selection) { %>
\n\n
<% }); %>
\n
\n

 

\n

 

\n

Merci de nous les transmettre en réponse à cet email dans les meilleurs délais.

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"2JHh80bjwk","cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"fXe4HiEQ9p","values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"3xAas2lwG6","type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 1px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"4pv4ReVYRM","cells":[1],"values":{"_meta":{"htmlID":"u_row_10","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"JS_hPyCvau","values":{"_meta":{"htmlID":"u_column_11","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"id":"1SBpf3BDJf","type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_4","htmlClassNames":"u_content_text"},"color":"#626782","anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px 19px","displayCondition":null},"hasDeprecatedFontControls":true}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"popupWidth":"600px","popupHeight":"auto","borderRadius":"10px","contentAlign":"center","contentWidth":"600px","popupPosition":"center","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"contentVerticalAlign":"center","popupBackgroundColor":"#FFFFFF","popupBackgroundImage":{"url":"","size":"cover","repeat":"no-repeat","position":"center","fullWidth":true},"popupCloseButton_action":{"name":"close_popup","attrs":{"onClick":"document.querySelector('.u-popup-container').style.display = 'none';"}},"popupCloseButton_margin":"0px","popupCloseButton_position":"top-right","popupCloseButton_iconColor":"#000000","popupOverlay_backgroundColor":"rgba(0, 0, 0, 0.1)","popupCloseButton_borderRadius":"0px","popupCloseButton_backgroundColor":"#DDDDDD"},"footers":[],"headers":[]},"counters":{"u_row":12,"u_column":13,"u_content_html":2,"u_content_text":5,"u_content_image":3,"u_content_button":3,"u_content_divider":2},"schemaVersion":16},"name":"Lieu - Préselections end missing preselections","subject":"La date limite de pré-sélection a été atteinte - Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

La date limite de pré-sélection des candidatures est maintenant révolue. Il nous manque votre pré-sélection pour les créneaux suivants :

\n

 

\n
\n
<% _.forEach(missing_selections, function(missing_selection) { %>
\n
    \n
  • <%= missing_selection.espace_name %> | <%= missing_selection.date_start %> → <%= missing_selection.date_end %>
  • \n
\n
<% }); %>
\n
\n

 

\n

 

\n

Merci de nous les transmettre en réponse à cet email dans les meilleurs délais.

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2024-02-29T09:18:10.789Z","updated_at":"2024-02-29T14:58:05.083Z","slug":"place-preselections-end"},{"id":124,"design":{"body":{"id":"vkO-2KTynZ","rows":[{"id":"gtMsCSSe0S","cells":[1,1],"values":{"_meta":{"htmlID":"u_row_1","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"ntKQWnVILw","values":{"_meta":{"htmlID":"u_column_1","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"YWg_B5BRh1","type":"image","values":{"src":{"url":"https://storage-studiod.ams3.digitaloceanspaces.com/staging/14b0b419c2e8fc32e422073ce58dce33.svg","width":100,"height":21},"_meta":{"htmlID":"u_content_image_1","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"15px 10px 10px 20px","displayCondition":null}}]},{"id":"WzwndAoL-W","values":{"_meta":{"htmlID":"u_column_3","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"aKyYh_NvoD","type":"html","values":{"html":"\n
\n\" class=\"link\">Accéder au site\n\n
\n\n","_meta":{"htmlID":"u_content_html_1","htmlClassNames":"u_content_html"},"anchor":"","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"18px 20px 10px 10px","displayCondition":null}}]}]},{"id":"9pKAfH_EgS","cells":[1],"values":{"_meta":{"htmlID":"u_row_3","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"NYq2iLP8eX","values":{"_meta":{"htmlID":"u_column_4","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"BiTKufoqWI","type":"divider","values":{"_meta":{"htmlID":"u_content_divider_2","htmlClassNames":"u_content_divider"},"width":"100%","anchor":"","border":{"borderTopColor":"#BBBBBB","borderTopStyle":"solid","borderTopWidth":"1px"},"hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px","displayCondition":null}}]}]},{"id":"anYjoqYQ6z","cells":[1],"values":{"_meta":{"htmlID":"u_row_4","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"xd6UzyT1RS","values":{"_meta":{"htmlID":"u_column_5","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"rrc1BpG77i","type":"image","values":{"src":{"url":"","width":800,"height":200},"_meta":{"htmlID":"u_content_image_2","htmlClassNames":"u_content_image"},"action":{"name":"web","values":{"href":"","target":"_blank"}},"anchor":"","altText":"Image","hideable":true,"deletable":true,"draggable":true,"textAlign":"center","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"60px 10px 44px","displayCondition":null}}]}]},{"id":"V6W5Ys6sEC","cells":[1],"values":{"_meta":{"htmlID":"u_row_5","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"Fz7IMf8P5A","values":{"_meta":{"htmlID":"u_column_6","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"GM6lOEOXko","type":"text","values":{"text":"

Il ne vous reste que <%= reminder_days %> pour renseigner votre pré-sélection pour les créneaux suivants :

\n

 

\n
\n
<% _.forEach(missing_selections, function(missing_selection) { %>
\n\n
<% }); %>
\n
\n

 

","_meta":{"htmlID":"u_content_text_1","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"10px 70px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"TAqytRwtZx","cells":[1],"values":{"_meta":{"htmlID":"u_row_11","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"center","fullWidth":true},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"FjG0uQFinf","values":{"_meta":{"htmlID":"u_column_12","htmlClassNames":"u_column"},"border":{},"padding":"0px 0px 0px 60px","borderRadius":"0px","backgroundColor":""},"contents":[{"id":"8JZL04tp37","type":"button","values":{"href":{"name":"web","attrs":{"href":"{{href}}","target":"{{target}}"},"values":{"href":"<%= url_btn %>","target":"_blank"}},"size":{"width":"100%","autoWidth":true},"text":"Consulter les candidatures","_meta":{"htmlID":"u_content_button_2","htmlClassNames":"u_content_button"},"anchor":"","border":{},"padding":"10px 20px","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"textAlign":"left","lineHeight":"120%","selectable":true,"hideDesktop":false,"borderRadius":"4px","buttonColors":{"color":"#FFFFFF","hoverColor":"#FFFFFF","backgroundColor":"#283583","hoverBackgroundColor":"#3AAEE0"},"duplicatable":true,"calculatedWidth":206,"calculatedHeight":37,"containerPadding":"12px","displayCondition":null}}]}]},{"id":"2JHh80bjwk","cells":[1],"values":{"_meta":{"htmlID":"u_row_7","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"fXe4HiEQ9p","values":{"_meta":{"htmlID":"u_column_8","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":""},"contents":[{"id":"3xAas2lwG6","type":"text","values":{"text":"

<%= signature %>

","_meta":{"htmlID":"u_content_text_2","htmlClassNames":"u_content_text"},"anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"25px 70px 1px","displayCondition":null},"hasDeprecatedFontControls":true}]}]},{"id":"4pv4ReVYRM","cells":[1],"values":{"_meta":{"htmlID":"u_row_10","htmlClassNames":"u_row"},"anchor":"","columns":false,"padding":"0px","hideable":true,"deletable":true,"draggable":true,"selectable":true,"hideDesktop":false,"duplicatable":true,"backgroundColor":"","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"displayCondition":null,"columnsBackgroundColor":""},"columns":[{"id":"JS_hPyCvau","values":{"_meta":{"htmlID":"u_column_11","htmlClassNames":"u_column"},"border":{},"padding":"0px","backgroundColor":"#f4f5f9"},"contents":[{"id":"1SBpf3BDJf","type":"text","values":{"text":"

<%= footer %>

","_meta":{"htmlID":"u_content_text_4","htmlClassNames":"u_content_text"},"color":"#626782","anchor":"","fontSize":"14px","hideable":true,"deletable":true,"draggable":true,"linkStyle":{"inherit":true,"linkColor":"#0000ee","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textAlign":"left","lineHeight":"140%","selectable":true,"hideDesktop":false,"duplicatable":true,"containerPadding":"20px 30px 19px","displayCondition":null},"hasDeprecatedFontControls":true}]}]}],"values":{"_meta":{"htmlID":"u_body","htmlClassNames":"u_body"},"linkStyle":{"body":true,"inherit":false,"linkColor":"#4a4a63","linkUnderline":true,"linkHoverColor":"#0000ee","linkHoverUnderline":true},"textColor":"#000000","fontFamily":{"label":"Arial","value":"arial,helvetica,sans-serif"},"popupWidth":"600px","popupHeight":"auto","borderRadius":"10px","contentAlign":"center","contentWidth":"600px","popupPosition":"center","preheaderText":"","backgroundColor":"#ffffff","backgroundImage":{"url":"","size":"custom","repeat":"no-repeat","position":"top-center","fullWidth":true,"customPosition":["50%","0%"]},"contentVerticalAlign":"center","popupBackgroundColor":"#FFFFFF","popupBackgroundImage":{"url":"","size":"cover","repeat":"no-repeat","position":"center","fullWidth":true},"popupCloseButton_action":{"name":"close_popup","attrs":{"onClick":"document.querySelector('.u-popup-container').style.display = 'none';"}},"popupCloseButton_margin":"0px","popupCloseButton_position":"top-right","popupCloseButton_iconColor":"#000000","popupOverlay_backgroundColor":"rgba(0, 0, 0, 0.1)","popupCloseButton_borderRadius":"0px","popupCloseButton_backgroundColor":"#DDDDDD"},"footers":[],"headers":[]},"counters":{"u_row":12,"u_column":13,"u_content_html":2,"u_content_text":5,"u_content_image":3,"u_content_button":3,"u_content_divider":2},"schemaVersion":16},"name":"Lieu - Reminder préselections","subject":"N'oubliez pas de terminer votre pré-sélection ! - Studio D","bodyHtml":"\n\n\n\n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n \n
\n \n \n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n \n\n\n\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\n  \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n\n \n \n \n
\n \n \"Image\"\n \n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

Il ne vous reste que <%= reminder_days %> pour renseigner votre pré-sélection pour les créneaux suivants :

\n

 

\n
\n
<% _.forEach(missing_selections, function(missing_selection) { %>
\n
    \n
  • <%= missing_selection.espace_name %> | <%= missing_selection.date_start %> → <%= missing_selection.date_end %>
  • \n
\n
<% }); %>
\n
\n

 

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n \n\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= signature %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n \n
\n
\n
\n \n \n\n
\n
\n
\n \n\n \n \n \n \n \n
\n \n
\n

<%= footer %>

\n
\n\n
\n\n
\n
\n
\n\n \n
\n
\n
\n \n\n\n \n
\n \n \n\n\n\n","bodyText":"","enabled":true,"tags":null,"created_by":null,"updated_by":{"id":1,"firstname":"Guillaume","lastname":"Esnault","username":null,"email":"gesnault@premieroctet.com","password":"$2a$10$O/KOVUpucmic9OP/pLhXauh7zhVdSqr2t71a9skxOjtkXtpKuaYee","resetPasswordToken":"666567db5dfafcf72f78a1991481e72d616f4666","registrationToken":null,"isActive":true,"blocked":null,"preferedLanguage":null},"created_at":"2024-02-29T09:01:58.417Z","updated_at":"2024-02-29T14:58:19.285Z","slug":"place-preselections-reminder"}] \ No newline at end of file diff --git a/back/extensions/documentation/documentation/1.0.0/full_documentation.json b/back/extensions/documentation/documentation/1.0.0/full_documentation.json index 04918a2d..807d4ab6 100644 --- a/back/extensions/documentation/documentation/1.0.0/full_documentation.json +++ b/back/extensions/documentation/documentation/1.0.0/full_documentation.json @@ -14,7 +14,7 @@ "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "x-generation-date": "02/28/2024 12:18:26 PM" + "x-generation-date": "03/01/2024 12:10:27 PM" }, "x-strapi-config": { "path": "/documentation", @@ -4054,6 +4054,85 @@ } } }, + "/disponibilities/{id}/campaign/{campaignId}/confirm": { + "post": { + "deprecated": false, + "description": "Confirm a campaign for a disponibility", + "responses": { + "200": { + "description": "Successful operation", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Disponibility" + } + } + } + }, + "400": { + "description": "Invalid input, object invalid" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Disponibility not found" + }, + "default": { + "description": "unexpected error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "summary": "Confirm Campaign", + "tags": [ + "Disponibility" + ], + "requestBody": { + "description": "", + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Disponibility" + } + } + } + }, + "parameters": [ + { + "in": "path", + "name": "id", + "schema": { + "type": "string" + }, + "required": true, + "description": "Disponibility ID" + }, + { + "in": "path", + "name": "campaignId", + "schema": { + "type": "string" + }, + "required": true, + "description": "Campaign ID" + } + ] + } + }, "/dispositifs": { "get": { "deprecated": false, @@ -11218,6 +11297,9 @@ "preselections_max": { "type": "integer" }, + "is_active": { + "type": "boolean" + }, "published_at": { "type": "string" }, @@ -12108,6 +12190,9 @@ "preselections_max": { "type": "integer" }, + "is_active": { + "type": "boolean" + }, "published_at": { "type": "string", "format": "date-time" @@ -12206,6 +12291,9 @@ "preselections_max": { "type": "integer" }, + "is_active": { + "type": "boolean" + }, "published_at": { "type": "string", "format": "date-time" @@ -12924,6 +13012,9 @@ "preselections_max": { "type": "integer" }, + "is_active": { + "type": "boolean" + }, "published_at": { "type": "string" }, diff --git a/back/extensions/documentation/public/index.html b/back/extensions/documentation/public/index.html index 7cf2b3ae..3b377dba 100644 --- a/back/extensions/documentation/public/index.html +++ b/back/extensions/documentation/public/index.html @@ -33,7 +33,7 @@ window.onload = function() { const ui = SwaggerUIBundle({ url: "https://petstore.swagger.io/v2/swagger.json", - spec: {"openapi":"3.0.0","info":{"version":"1.0.0","title":"DOCUMENTATION","description":"","termsOfService":"YOUR_TERMS_OF_SERVICE_URL","contact":{"name":"TEAM","email":"contact-email@something.io","url":"mywebsite.io"},"license":{"name":"Apache 2.0","url":"https://www.apache.org/licenses/LICENSE-2.0.html"},"x-generation-date":"02/27/2024 8:07:46 AM"},"x-strapi-config":{"path":"/documentation","showGeneratedFiles":true,"generateDefaultResponse":true},"servers":[{"url":"http://localhost:1337","description":"Development server"},{"url":"YOUR_STAGING_SERVER","description":"Staging server"},{"url":"YOUR_PRODUCTION_SERVER","description":"Production server"}],"externalDocs":{"description":"Find out more","url":"https://strapi.io/documentation/developer-docs/latest/getting-started/introduction.html"},"security":[{"bearerAuth":[]}],"paths":{"/actualities":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Actuality"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Actuality"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewActuality"}}}}}},"/actualities/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"parameters":[]}},"/actualities/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Actuality"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Actuality"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewActuality"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/applications/me/{campaignId}":{"get":{"deprecated":false,"description":"Get applications related to current user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Application"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"parameters":[{"name":"campaignId","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}},{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}],"operationId":"getMyApplications"}},"/applications":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Application"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewApplication"}}}}}},"/applications/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"parameters":[]}},"/applications/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewApplication"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/bookings/me/{bookingType}":{"get":{"deprecated":false,"description":"Get bookings related to current user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Booking"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"parameters":[{"name":"bookingType","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string","enum":["all","request","booking"]}}],"operationId":"getMyBookings"}},"/bookings":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Booking"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Booking"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewBooking"}}}}}},"/bookings/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"parameters":[]}},"/bookings/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Booking"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Booking"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewBooking"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/bookings/{id}/remove-dispo":{"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"properties":{"dispos":{"type":"array","items":{"type":"string"}}}}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}],"operationId":"removeDispos"}},"/campaigns":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Campaign"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Campaign"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewCampaign"}}}}}},"/campaigns/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"parameters":[]}},"/campaigns/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Campaign"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Campaign"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewCampaign"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/cities":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/City"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/City"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewCity"}}}}}},"/cities/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"parameters":[]}},"/cities/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/City"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/City"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewCity"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/contacts":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Contact"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Contact"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewContact"}}}}}},"/contacts/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"parameters":[]}},"/contacts/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Contact"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Contact"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewContact"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/disponibilities":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Disponibility"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewDisponibility"}}}}}},"/disponibilities/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"parameters":[]}},"/disponibilities/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Disponibility"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Disponibility"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewDisponibility"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Disponibility"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/bulk/disponibilities":{"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}}}}}}},"/dispositifs":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Dispositif"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Dispositif"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewDispositif"}}}}}},"/dispositifs/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"parameters":[]}},"/dispositifs/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Dispositif"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Dispositif"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewDispositif"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/espaces/me":{"get":{"deprecated":false,"description":"Get places related to current user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Espace"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}],"operationId":"myPlaces"}},"/espaces":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Espace"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Espace"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"requestBody":{"description":"","required":true,"content":{"multipart/form-data":{"schema":{"type":"object"}}}}}},"/espaces/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]}},"/espaces/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Espace"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}},{"name":"availableOnly","in":"query","required":false,"description":"Return place with only available disponibilities","schema":{"type":"boolean"},"deprecated":false}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Espace"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"type":"object"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/faq-categories":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Faq-category"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewFaq-category"}}}}}},"/faq-categories/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"parameters":[]}},"/faq-categories/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewFaq-category"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/faq-questions":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewFaq-question"}}}}}},"/faq-questions/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"parameters":[]}},"/faq-questions/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewFaq-question"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/home-carousel":{"get":{"deprecated":false,"description":"Find all the home-carousel's records","responses":{"200":{"description":"Retrieve home-carousel document(s)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Home-carousel"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-carousel"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"put":{"deprecated":false,"description":"Update a single home-carousel record","responses":{"200":{"description":"Retrieve home-carousel document(s)","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-carousel"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewHome-carousel"}}}},"parameters":[]},"delete":{"deprecated":false,"description":"Delete a single home-carousel record","responses":{"200":{"description":"deletes a single home-carousel based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-carousel"],"parameters":[]}},"/home-message":{"get":{"deprecated":false,"description":"Find all the home-message's records","responses":{"200":{"description":"Retrieve home-message document(s)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Home-message"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-message"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}],"operationId":"getHomeMessage"},"put":{"deprecated":false,"description":"Update a single home-message record","responses":{"200":{"description":"Retrieve home-message document(s)","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-message"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewHome-message"}}}},"parameters":[]},"delete":{"deprecated":false,"description":"Delete a single home-message record","responses":{"200":{"description":"deletes a single home-message based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-message"],"parameters":[]}},"/conversation/me":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[]}},"/notifications/toggle":{"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReadNotif"}}}},"operationId":"toggleNotif"}},"/notifications/me":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NotifCount"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[{"name":"id","in":"query","description":"","deprecated":false,"schema":{"type":"string"}}],"operationId":"myNotifications"}},"/conversation/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Message"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}},{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]}},"/messages":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Message"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Message"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewMessage"}}}}}},"/messages/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[]}},"/messages/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Message"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Message"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewMessage"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/pages":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Page"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Page"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewPage"}}}}}},"/pages/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[]}},"/pages/{url}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Page"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[{"name":"url","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/pages/{id}":{"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Page"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewPage"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/email/":{"post":{"deprecated":false,"description":"Send an email","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Email - Email"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}}}},"/email/test":{"post":{"deprecated":false,"description":"Send an test email","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Email - Email"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}}}},"/email/settings":{"get":{"deprecated":false,"description":"Get the email settings","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Email - Email"],"parameters":[]}},"/upload/":{"post":{"deprecated":false,"description":"Upload one or multiple files","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"hash":{"type":"string","format":"uuid"},"sha256":{"type":"string"},"ext":{"type":"string"},"mime":{"type":"string"},"size":{"type":"number"},"url":{"type":"string","format":"uri"},"provider":{"type":"string"},"related":{"type":"array","items":{"type":"string"}}}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"requestBody":{"description":"","required":true,"content":{"multipart/form-data":{"schema":{"type":"object"}}}}}},"/upload/files/count":{"get":{"deprecated":false,"description":"Retrieve the total number of uploaded files","responses":{"200":{"description":"","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"parameters":[]}},"/upload/files":{"get":{"deprecated":false,"description":"Retrieve all file documents","responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UploadFile"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"parameters":[]}},"/upload/files/{id}":{"get":{"deprecated":false,"description":"Retrieve a single file depending on its id","responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UploadFile"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete an uploaded file","responses":{"200":{"description":"Document deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UploadFile"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/upload/search/{id}":{"get":{"deprecated":false,"description":"Search for an uploaded file","responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UploadFile"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/users/me":{"put":{"deprecated":false,"description":"Update current user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Unclassified"],"parameters":[],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"type":"object"}}}}},"get":{"deprecated":false,"description":"Retrieve the logged in user information","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"parameters":[]}},"/users/check-password":{"post":{"deprecated":false,"description":"Check current password","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"boolean"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Unclassified"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"properties":{"password":{"type":"string"}}}}}}}},"/users-permissions/roles/{id}":{"get":{"deprecated":false,"description":"Retrieve a role depending on its id","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsRole"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - Role"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/users-permissions/roles":{"get":{"deprecated":false,"description":"Retrieve all role documents","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UsersPermissionsRole"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - Role"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new role","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsRole"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - Role"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewUsersPermissionsRole"}}}}}},"/users-permissions/roles/{role}":{"put":{"deprecated":false,"description":"Update a role","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsRole"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - Role"],"parameters":[{"name":"role","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewUsersPermissionsRole"}}}}},"delete":{"deprecated":false,"description":"Delete a role","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - Role"],"parameters":[{"name":"role","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/users-permissions/search/{id}":{"get":{"deprecated":false,"description":"Search for users","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"Retrieve a list of users by searching for their username or email","tags":["UsersPermissions - User"],"parameters":[{"name":"id","in":"path","description":"A string matching a user's email or username","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/connect/*":{"get":{"deprecated":false,"description":"Connect a provider","responses":{"200":{"description":"Your user is redirected"},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"Authenticate your user with a custom provider","tags":["Authentication"],"parameters":[{"name":"provider","in":"path","required":true,"deprecated":false,"description":"The name of the provider you want to use","schema":{"type":"string"}}],"security":[],"externalDocs":{"description":"Find out more about the authentication flow in the strapi documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#setting-up-the-provider-examples"}}},"/auth/local":{"post":{"deprecated":false,"description":"Login a user using the identifiers email and password","responses":{"200":{"description":"Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Users-PermissionsRegisterResponse"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Authentication"],"requestBody":{"description":"The identifier param can either be an email or a username","required":true,"content":{"application/json":{"schema":{"required":["identifier","password"],"properties":{"identifier":{"type":"string"},"password":{"type":"string"}}},"example":{"identifier":"hi@strapi.io","password":"superSecure123"}}}},"externalDocs":{"description":"Find out more in the strapi's documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#login"},"security":[],"operationId":"login"}},"/auth/local/register":{"post":{"deprecated":false,"description":"Register a new user with the default role","responses":{"200":{"description":"Successfully register a user","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Users-PermissionsRegisterResponse"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Authentication"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"required":["username","email","password"],"properties":{"username":{"type":"string","minLength":3},"email":{"type":"string","minLength":6},"password":{"type":"string","minLength":6}}}}}},"security":[],"operationId":"signup","externalDocs":{"description":"Find out more in the strapi's documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#registration"}}},"/auth/{provider}/callback":{"get":{"deprecated":false,"description":"Successfull redirection after approving a provider","responses":{"200":{"description":"Successfull redirection after approving a provider","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Users-PermissionsRegisterResponse"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Authentication"],"parameters":[{"name":"provider","in":"path","description":"The provider used to authenticate your user","deprecated":false,"required":true,"schema":{"type":"string"}}],"externalDocs":{"description":"Find out more in the strapi's documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#setting-up-the-provider-examples"}}},"/auth/forgot-password":{"post":{"deprecated":false,"description":"Send the reset password email link","responses":{"200":{"description":"Email sent"},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"Send an email to reset your password","tags":["Authentication"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"properties":{"email":{"type":"string"},"url":{"type":"string"}}},"example":{"email":"hi@strapi.io","url":"http://mon-site.com/rest-password"}}}},"security":[],"operationId":"forgotPassword","externalDocs":{"description":"Find out more in the strapi's documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#forgotten-reset-password"}}},"/auth/reset-password":{"post":{"deprecated":false,"description":"Reset user password with a code (resetToken)","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Users-PermissionsRegisterResponse"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Authentication"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"required":["code","password","passwordConfirmation"],"properties":{"code":{"type":"string"},"password":{"type":"string"},"passwordConfirmation":{"type":"string"}}}}}},"operationId":"resetPassword","security":[]}},"/auth/email-confirmation":{"get":{"deprecated":false,"description":"Validate a user account","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Authentication"],"parameters":[{"name":"confirmation","in":"query","required":false,"description":"Token","schema":{"type":"string"},"deprecated":false}],"security":[]}},"/auth/send-email-confirmation":{"post":{"deprecated":false,"description":"Send a confirmation email to user","responses":{"200":{"description":"Successfully sent email","content":{"application/json":{"email":{"type":"string"},"sent":{"type":"boolean"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"required":["email"],"properties":{"email":{"type":"string","minLength":6}}}}}},"security":[],"externalDocs":{"description":"Find out more in the strapi's documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#email-validation"}}},"/users":{"get":{"deprecated":false,"description":"Retrieve all user documents","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]}},"/users/{id}":{"get":{"deprecated":false,"description":"Retrieve a single user depending on his id","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update an existing user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewUsersPermissionsUser"}}}}},"delete":{"deprecated":false,"description":"Delete an existing user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}}},"components":{"schemas":{"Actuality":{"required":["id","title","content","image"],"properties":{"id":{"type":"string"},"title":{"type":"string"},"content":{"type":"string"},"created_at":{"type":"string"},"image":{"required":["id","name","hash","mime","size","url","provider"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"alternativeText":{"type":"string"},"caption":{"type":"string"},"width":{"type":"integer"},"height":{"type":"integer"},"formats":{"type":"object"},"hash":{"type":"string"},"ext":{"type":"string"},"mime":{"type":"string"},"size":{"type":"number"},"url":{"type":"string"},"previewUrl":{"type":"string"},"provider":{"type":"string"},"provider_metadata":{"type":"object"},"related":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"slug":{"type":"string"},"published_at":{"type":"string","format":"date-time"}}},"NewActuality":{"required":["title","content"],"properties":{"title":{"type":"string"},"content":{"type":"string"},"slug":{"type":"string"},"published_at":{"type":"string","format":"date-time"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Application":{"required":["id"],"properties":{"id":{"type":"string"},"disponibility":{"required":["id","start","end","type","status"],"properties":{"id":{"type":"string"},"when":{"type":"string","enum":["morning","afternoon","full"]},"start":{"type":"string"},"end":{"type":"string"},"espace":{"type":"string"},"type":{"type":"string","enum":["punctual","day","period"]},"status":{"type":"string","enum":["available","booked","pending","past","canceled","removed"]},"booking":{"type":"string"},"dispositif":{"type":"string"},"message":{"type":"string"},"campaign":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"staff":{"type":"object"},"accomodation":{"type":"integer"},"scene_grid":{"type":"boolean"},"exclude_days":{"type":"object"},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"creation_dancers":{"type":"integer"},"creation_title":{"type":"string"},"creation_file":{"type":"array","items":{"required":["id","name","hash","mime","size","url","provider"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"alternativeText":{"type":"string"},"caption":{"type":"string"},"width":{"type":"integer"},"height":{"type":"integer"},"formats":{"type":"object"},"hash":{"type":"string"},"ext":{"type":"string"},"mime":{"type":"string"},"size":{"type":"number"},"url":{"type":"string"},"previewUrl":{"type":"string"},"provider":{"type":"string"},"provider_metadata":{"type":"object"},"related":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"creation_summary":{"type":"string"},"creation_partnerships":{"type":"string"},"creation_techical_requirements":{"type":"string"},"creation_accomodation":{"type":"boolean"},"eligible":{"type":"boolean"},"already_supported":{"type":"boolean"},"cv":{"type":"string"},"references":{"type":"object"},"campaign":{"required":["id","duration","disponibility_start","disponibility_end","application_start","application_end","preselection_start","preselection_end","disponibilities_max"],"properties":{"id":{"type":"string"},"duration":{"type":"integer"},"disponibility_start":{"type":"string"},"disponibility_end":{"type":"string"},"application_start":{"type":"string"},"application_end":{"type":"string"},"preselection_start":{"type":"string"},"preselection_end":{"type":"string"},"reminder_days":{"type":"integer"},"disponibilities":{"type":"array","items":{"type":"string"}},"title":{"type":"string"},"description":{"type":"string"},"disponibilities_max":{"type":"integer"},"campaign_start":{"type":"string"},"campaign_end":{"type":"string"},"users_permissions_users":{"type":"array","items":{"type":"string"}},"applications_max":{"type":"integer"},"article_link":{"type":"string"},"eligibility":{"type":"string"},"chart_url":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"preselections_max":{"type":"integer"},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"company":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","country","siret","ape","phone","license","type"],"properties":{"id":{"type":"string"},"email":{"type":"string"},"provider":{"type":"string"},"password":{"type":"string"},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string"},"confirmed":{"type":"boolean"},"blocked":{"type":"boolean"},"accepted":{"type":"boolean"},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"integer"},"companyDispositifs":{"type":"array","items":{"type":"string"}},"placeDispositifs":{"type":"array","items":{"type":"string"}},"campaigns":{"type":"array","items":{"type":"string"}},"companyApplications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"espace":{"required":["id","name","surface","roomLength","width","height","mirror","danceBar","accomodation","technicalStaff","floor","address","country","latitude"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"surface":{"type":"number"},"roomLength":{"type":"number"},"width":{"type":"number"},"height":{"type":"number"},"mirror":{"type":"boolean"},"danceBar":{"type":"boolean"},"accomodation":{"type":"boolean"},"technicalStaff":{"type":"boolean"},"floor":{"type":"string","enum":["plancherDanse","parquetTraditionnel","other","todefine"]},"otherFloor":{"type":"string"},"about":{"type":"string"},"details":{"type":"string"},"address":{"type":"string"},"files":{"type":"array","items":{"type":"string"}},"images":{"type":"array","items":{"type":"string"}},"users_permissions_user":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"scheduleDetails":{"type":"string"},"filledUntil":{"type":"string"},"published":{"type":"boolean"},"bookings":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"external_id":{"type":"integer"},"danceCarpet":{"type":"string","enum":["true","false","possible"]},"slug":{"type":"string"},"city":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"deleted":{"type":"boolean"},"applications":{"type":"array","items":{"type":"string"}},"campaign_files":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"status":{"type":"string","enum":["preselected","confirmed"]},"published_at":{"type":"string","format":"date-time"}}},"NewApplication":{"properties":{"disponibility":{"type":"string"},"creation_dancers":{"type":"integer"},"creation_title":{"type":"string"},"creation_summary":{"type":"string"},"creation_partnerships":{"type":"string"},"creation_techical_requirements":{"type":"string"},"creation_accomodation":{"type":"boolean"},"eligible":{"type":"boolean"},"already_supported":{"type":"boolean"},"cv":{"type":"string"},"references":{"type":"object"},"campaign":{"type":"string"},"company":{"type":"string"},"espace":{"type":"string"},"status":{"type":"string","enum":["preselected","confirmed"]},"published_at":{"type":"string","format":"date-time"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Booking":{"required":["id"],"properties":{"id":{"type":"string"},"status":{"type":"string","default":"pending","enum":["requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","past","accepted","pending"]},"disponibilities":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}},"espace":{"$ref":"#/components/schemas/Espace"},"company":{"$ref":"#/components/schemas/UsersPermissionsUser"},"place":{"$ref":"#/components/schemas/UsersPermissionsUser"},"notifications":{"$ref":"#/components/schemas/NotifCount"},"messages":{"type":"array","items":{"$ref":"#/components/schemas/Message"}}}},"NewBooking":{"properties":{"disponibilities":{"type":"array","items":{"type":"string"}},"status":{"type":"string","enum":["requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","past","accepted","pending","expired"]},"messages":{"type":"array","items":{"type":"string"}},"espace":{"type":"string"},"place":{"type":"string"},"company":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Campaign":{"required":["id","duration","disponibility_start","disponibility_end","application_start","application_end","preselection_start","preselection_end","disponibilities_max"],"properties":{"id":{"type":"string"},"duration":{"type":"integer"},"disponibility_start":{"type":"string","format":"date"},"disponibility_end":{"type":"string","format":"date"},"application_start":{"type":"string","format":"date"},"application_end":{"type":"string","format":"date"},"preselection_start":{"type":"string","format":"date"},"preselection_end":{"type":"string","format":"date"},"reminder_days":{"type":"integer"},"disponibilities":{"type":"array","items":{"required":["id","start","end","type","status"],"properties":{"id":{"type":"string"},"when":{"type":"string","enum":["morning","afternoon","full"]},"start":{"type":"string"},"end":{"type":"string"},"espace":{"type":"string"},"type":{"type":"string","enum":["punctual","day","period"]},"status":{"type":"string","enum":["available","booked","pending","past","canceled","removed"]},"booking":{"type":"string"},"dispositif":{"type":"string"},"message":{"type":"string"},"campaign":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"staff":{"type":"object"},"accomodation":{"type":"integer"},"scene_grid":{"type":"boolean"},"exclude_days":{"type":"object"},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"title":{"type":"string"},"description":{"type":"string"},"disponibilities_max":{"type":"integer"},"campaign_start":{"type":"string","format":"date"},"campaign_end":{"type":"string","format":"date"},"users_permissions_users":{"type":"array","items":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","country","siret","ape","phone","license","type"],"properties":{"id":{"type":"string"},"email":{"type":"string"},"provider":{"type":"string"},"password":{"type":"string"},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string"},"confirmed":{"type":"boolean"},"blocked":{"type":"boolean"},"accepted":{"type":"boolean"},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"integer"},"companyDispositifs":{"type":"array","items":{"type":"string"}},"placeDispositifs":{"type":"array","items":{"type":"string"}},"campaigns":{"type":"array","items":{"type":"string"}},"companyApplications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"applications_max":{"type":"integer"},"article_link":{"type":"string"},"eligibility":{"type":"string"},"chart_url":{"type":"string"},"applications":{"type":"array","items":{"required":["id"],"properties":{"id":{"type":"string"},"disponibility":{"type":"string"},"creation_dancers":{"type":"integer"},"creation_title":{"type":"string"},"creation_file":{"type":"array","items":{"type":"string"}},"creation_summary":{"type":"string"},"creation_partnerships":{"type":"string"},"creation_techical_requirements":{"type":"string"},"creation_accomodation":{"type":"boolean"},"eligible":{"type":"boolean"},"already_supported":{"type":"boolean"},"cv":{"type":"string"},"references":{"type":"object"},"campaign":{"type":"string"},"company":{"type":"string"},"espace":{"type":"string"},"status":{"type":"string","enum":["preselected","confirmed"]},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"preselections_max":{"type":"integer"},"published_at":{"type":"string","format":"date-time"}}},"NewCampaign":{"required":["duration","disponibility_start","disponibility_end","application_start","application_end","preselection_start","preselection_end","disponibilities_max"],"properties":{"duration":{"type":"integer"},"disponibility_start":{"type":"string","format":"date"},"disponibility_end":{"type":"string","format":"date"},"application_start":{"type":"string","format":"date"},"application_end":{"type":"string","format":"date"},"preselection_start":{"type":"string","format":"date"},"preselection_end":{"type":"string","format":"date"},"reminder_days":{"type":"integer"},"disponibilities":{"type":"array","items":{"type":"string"}},"title":{"type":"string"},"description":{"type":"string"},"disponibilities_max":{"type":"integer"},"campaign_start":{"type":"string","format":"date"},"campaign_end":{"type":"string","format":"date"},"users_permissions_users":{"type":"array","items":{"type":"string"}},"applications_max":{"type":"integer"},"article_link":{"type":"string"},"eligibility":{"type":"string"},"chart_url":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"preselections_max":{"type":"integer"},"published_at":{"type":"string","format":"date-time"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"City":{"required":["id","name","country"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"espaces":{"type":"array","items":{"required":["id","name","surface","roomLength","width","height","mirror","danceBar","accomodation","technicalStaff","floor","address","country","latitude"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"surface":{"type":"number"},"roomLength":{"type":"number"},"width":{"type":"number"},"height":{"type":"number"},"mirror":{"type":"boolean"},"danceBar":{"type":"boolean"},"accomodation":{"type":"boolean"},"technicalStaff":{"type":"boolean"},"floor":{"type":"string","enum":["plancherDanse","parquetTraditionnel","other","todefine"]},"otherFloor":{"type":"string"},"about":{"type":"string"},"details":{"type":"string"},"address":{"type":"string"},"files":{"type":"array","items":{"type":"string"}},"images":{"type":"array","items":{"type":"string"}},"users_permissions_user":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"scheduleDetails":{"type":"string"},"filledUntil":{"type":"string"},"published":{"type":"boolean"},"bookings":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"external_id":{"type":"integer"},"danceCarpet":{"type":"string","enum":["true","false","possible"]},"slug":{"type":"string"},"city":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"deleted":{"type":"boolean"},"applications":{"type":"array","items":{"type":"string"}},"campaign_files":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"country":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"}}},"NewCity":{"required":["name","country"],"properties":{"name":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Contact":{"required":["id","name","message","from"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"message":{"type":"string"},"from":{"type":"string"}}},"NewContact":{"required":["name","message","from"],"properties":{"name":{"type":"string"},"message":{"type":"string"},"from":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Disponibility":{"required":["id","start","end","type","status"],"properties":{"id":{"type":"string"},"when":{"type":"string","enum":["morning","afternoon","full"]},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"espace":{"required":["id","name","surface","roomLength","width","height","mirror","danceBar","accomodation","technicalStaff","floor","address","country","latitude"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"surface":{"type":"number"},"roomLength":{"type":"number"},"width":{"type":"number"},"height":{"type":"number"},"mirror":{"type":"boolean"},"danceBar":{"type":"boolean"},"accomodation":{"type":"boolean"},"technicalStaff":{"type":"boolean"},"floor":{"type":"string","enum":["plancherDanse","parquetTraditionnel","other","todefine"]},"otherFloor":{"type":"string"},"about":{"type":"string"},"details":{"type":"string"},"address":{"type":"string"},"files":{"type":"array","items":{"type":"string"}},"images":{"type":"array","items":{"type":"string"}},"users_permissions_user":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"scheduleDetails":{"type":"string"},"filledUntil":{"type":"string"},"published":{"type":"boolean"},"bookings":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"external_id":{"type":"integer"},"danceCarpet":{"type":"string","enum":["true","false","possible"]},"slug":{"type":"string"},"city":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"deleted":{"type":"boolean"},"applications":{"type":"array","items":{"type":"string"}},"campaign_files":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"type":{"type":"string","enum":["punctual","day","period"]},"status":{"type":"string","default":"available","enum":["available","booked","pending","past","canceled","removed"]},"booking":{"required":["id"],"properties":{"id":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"status":{"type":"string","enum":["requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","past","accepted","pending","expired"]},"messages":{"type":"array","items":{"type":"string"}},"espace":{"type":"string"},"place":{"type":"string"},"company":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"dispositif":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"actif":{"type":"boolean"},"expiration":{"type":"string"},"places":{"type":"array","items":{"type":"string"}},"companies":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"message":{"required":["id","status"],"properties":{"id":{"type":"string"},"message":{"type":"string"},"place":{"type":"string"},"company":{"type":"string"},"author":{"type":"string","enum":["company","place"]},"status":{"type":"string","enum":["accepted","created","requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","message","requestdisporemovedbyplace","bookingdisporemovedbyplace","disporemovedbycompany"]},"booking":{"type":"string"},"hasbeenread":{"type":"boolean"},"notified":{"type":"boolean"},"disponibilities":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"campaign":{"required":["id","duration","disponibility_start","disponibility_end","application_start","application_end","preselection_start","preselection_end","disponibilities_max"],"properties":{"id":{"type":"string"},"duration":{"type":"integer"},"disponibility_start":{"type":"string"},"disponibility_end":{"type":"string"},"application_start":{"type":"string"},"application_end":{"type":"string"},"preselection_start":{"type":"string"},"preselection_end":{"type":"string"},"reminder_days":{"type":"integer"},"disponibilities":{"type":"array","items":{"type":"string"}},"title":{"type":"string"},"description":{"type":"string"},"disponibilities_max":{"type":"integer"},"campaign_start":{"type":"string"},"campaign_end":{"type":"string"},"users_permissions_users":{"type":"array","items":{"type":"string"}},"applications_max":{"type":"integer"},"article_link":{"type":"string"},"eligibility":{"type":"string"},"chart_url":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"preselections_max":{"type":"integer"},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"applications":{"type":"array","items":{"required":["id"],"properties":{"id":{"type":"string"},"disponibility":{"type":"string"},"creation_dancers":{"type":"integer"},"creation_title":{"type":"string"},"creation_file":{"type":"array","items":{"type":"string"}},"creation_summary":{"type":"string"},"creation_partnerships":{"type":"string"},"creation_techical_requirements":{"type":"string"},"creation_accomodation":{"type":"boolean"},"eligible":{"type":"boolean"},"already_supported":{"type":"boolean"},"cv":{"type":"string"},"references":{"type":"object"},"campaign":{"type":"string"},"company":{"type":"string"},"espace":{"type":"string"},"status":{"type":"string","enum":["preselected","confirmed"]},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"staff":{"type":"object"},"accomodation":{"type":"integer"},"scene_grid":{"type":"boolean"},"exclude_days":{"type":"object"},"published_at":{"type":"string","format":"date-time"}}},"NewDisponibility":{"required":["start","end","type","status"],"properties":{"when":{"type":"string","enum":["morning","afternoon","full"]},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"espace":{"type":"string"},"type":{"type":"string","enum":["punctual","day","period"]},"status":{"type":"string","default":"available","enum":["available","booked","pending","past","canceled","removed"]},"booking":{"type":"string"},"dispositif":{"type":"string"},"message":{"type":"string"},"campaign":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"staff":{"type":"object"},"accomodation":{"type":"integer"},"scene_grid":{"type":"boolean"},"exclude_days":{"type":"object"},"published_at":{"type":"string","format":"date-time"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Dispositif":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"disponibilities":{"type":"array","items":{"required":["id","start","end","type","status"],"properties":{"id":{"type":"string"},"when":{"type":"string","enum":["morning","afternoon","full"]},"start":{"type":"string"},"end":{"type":"string"},"espace":{"type":"string"},"type":{"type":"string","enum":["punctual","day","period"]},"status":{"type":"string","enum":["available","booked","pending","past","canceled","removed"]},"booking":{"type":"string"},"dispositif":{"type":"string"},"message":{"type":"string"},"campaign":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"staff":{"type":"object"},"accomodation":{"type":"integer"},"scene_grid":{"type":"boolean"},"exclude_days":{"type":"object"},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"actif":{"type":"boolean","default":true},"expiration":{"type":"string","format":"date"},"places":{"type":"array","items":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","country","siret","ape","phone","license","type"],"properties":{"id":{"type":"string"},"email":{"type":"string"},"provider":{"type":"string"},"password":{"type":"string"},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string"},"confirmed":{"type":"boolean"},"blocked":{"type":"boolean"},"accepted":{"type":"boolean"},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"integer"},"companyDispositifs":{"type":"array","items":{"type":"string"}},"placeDispositifs":{"type":"array","items":{"type":"string"}},"campaigns":{"type":"array","items":{"type":"string"}},"companyApplications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"companies":{"type":"array","items":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","country","siret","ape","phone","license","type"],"properties":{"id":{"type":"string"},"email":{"type":"string"},"provider":{"type":"string"},"password":{"type":"string"},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string"},"confirmed":{"type":"boolean"},"blocked":{"type":"boolean"},"accepted":{"type":"boolean"},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"integer"},"companyDispositifs":{"type":"array","items":{"type":"string"}},"placeDispositifs":{"type":"array","items":{"type":"string"}},"campaigns":{"type":"array","items":{"type":"string"}},"companyApplications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}}},"NewDispositif":{"required":["name"],"properties":{"name":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"actif":{"type":"boolean","default":true},"expiration":{"type":"string","format":"date"},"places":{"type":"array","items":{"type":"string"}},"companies":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Espace":{"required":["id","name","surface","roomLength","width","height","mirror","danceBar","accomodation","technicalStaff","floor","address","latitude","longitude","city","danceCarpet"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"surface":{"type":"integer"},"roomLength":{"type":"integer"},"width":{"type":"integer"},"height":{"type":"integer"},"mirror":{"type":"boolean"},"danceBar":{"type":"boolean"},"accomodation":{"type":"boolean"},"technicalStaff":{"type":"boolean"},"floor":{"type":"string","enum":["plancherDanse","parquetTraditionnel","other"]},"otherFloor":{"type":"string"},"about":{"type":"string"},"details":{"type":"string"},"address":{"type":"string"},"latitude":{"type":"string"},"longitude":{"type":"string"},"files":{"type":"array","items":{"$ref":"#/components/schemas/UploadFile"}},"images":{"type":"array","items":{"$ref":"#/components/schemas/UploadFile"}},"users_permissions_user":{"$ref":"#/components/schemas/UsersPermissionsUser"},"disponibilities":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}},"scheduleDetails":{"type":"string"},"filledUntil":{"type":"string","format":"date"},"published":{"type":"boolean","default":true},"city":{"$ref":"#/components/schemas/City"},"country":{"type":"string"},"slug":{"type":"string"},"external_id":{"type":"integer"},"danceCarpet":{"type":"string","enum":["true","false","possible"]},"campaign_files":{"type":"array","items":{"required":["id","name","hash","mime","size","url","provider"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"alternativeText":{"type":"string"},"caption":{"type":"string"},"width":{"type":"integer"},"height":{"type":"integer"},"formats":{"type":"object"},"hash":{"type":"string"},"ext":{"type":"string"},"mime":{"type":"string"},"size":{"type":"number"},"url":{"type":"string"},"previewUrl":{"type":"string"},"provider":{"type":"string"},"provider_metadata":{"type":"object"},"related":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}}},"NewEspace":{"required":["name","surface","roomLength","width","height","mirror","danceBar","accomodation","technicalStaff","floor","address","country","latitude"],"properties":{"name":{"type":"string"},"surface":{"type":"number"},"roomLength":{"type":"number"},"width":{"type":"number"},"height":{"type":"number"},"mirror":{"type":"boolean"},"danceBar":{"type":"boolean"},"accomodation":{"type":"boolean"},"technicalStaff":{"type":"boolean"},"floor":{"type":"string","enum":["plancherDanse","parquetTraditionnel","other","todefine"]},"otherFloor":{"type":"string"},"about":{"type":"string"},"details":{"type":"string"},"address":{"type":"string"},"users_permissions_user":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"scheduleDetails":{"type":"string"},"filledUntil":{"type":"string","format":"date"},"published":{"type":"boolean","default":true},"bookings":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"external_id":{"type":"integer"},"danceCarpet":{"type":"string","enum":["true","false","possible"]},"slug":{"type":"string"},"city":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"deleted":{"type":"boolean","default":false},"applications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Faq-category":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"faq_questions":{"type":"array","items":{"required":["id","question","answer"],"properties":{"id":{"type":"string"},"question":{"type":"string"},"answer":{"type":"string"},"faq_category":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}}},"NewFaq-category":{"required":["name"],"properties":{"name":{"type":"string"},"faq_questions":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Faq-question":{"required":["id","question","answer"],"properties":{"id":{"type":"string"},"question":{"type":"string"},"answer":{"type":"string"},"faq_category":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"faq_questions":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}},"NewFaq-question":{"required":["question","answer"],"properties":{"question":{"type":"string"},"answer":{"type":"string"},"faq_category":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Home-carousel":{"required":["id","images"],"properties":{"id":{"type":"string"},"images":{"type":"array","items":{"required":["id","name","hash","mime","size","url","provider"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"alternativeText":{"type":"string"},"caption":{"type":"string"},"width":{"type":"integer"},"height":{"type":"integer"},"formats":{"type":"object"},"hash":{"type":"string"},"ext":{"type":"string"},"mime":{"type":"string"},"size":{"type":"number"},"url":{"type":"string"},"previewUrl":{"type":"string"},"provider":{"type":"string"},"provider_metadata":{"type":"object"},"related":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}}},"NewHome-carousel":{"properties":{"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Home-message":{"required":["id","text"],"properties":{"id":{"type":"string"},"text":{"type":"string"},"isVisible":{"type":"boolean","default":false},"title":{"type":"string"}}},"NewHome-message":{"required":["text"],"properties":{"text":{"type":"string"},"isVisible":{"type":"boolean","default":false},"title":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Message":{"required":["id","status"],"properties":{"id":{"type":"string"},"message":{"type":"string"},"created_at":{"type":"string"},"place":{"$ref":"#/components/schemas/UsersPermissionsUser"},"company":{"$ref":"#/components/schemas/UsersPermissionsUser"},"disponibilities":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}},"booking":{"$ref":"#/components/schemas/Booking"},"status":{"type":"string","enum":["accepted","created","requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","message"]},"author":{"type":"string","enum":["company","place"]}}},"NewMessage":{"required":["status"],"properties":{"message":{"type":"string"},"place":{"type":"string"},"company":{"type":"string"},"author":{"type":"string","enum":["company","place"]},"status":{"type":"string","enum":["accepted","created","requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","message","requestdisporemovedbyplace","bookingdisporemovedbyplace","disporemovedbycompany"]},"booking":{"type":"string"},"hasbeenread":{"type":"boolean","default":false},"notified":{"type":"boolean","default":false},"disponibilities":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"ReadNotif":{"required":["status"],"properties":{"bookingId":{"type":"string"},"targetId":{"type":"string"},"status":{"type":"string","enum":["message","request","booking"]}}},"NotifCount":{"properties":{"request":{"type":"number"},"booking":{"type":"number"},"message":{"type":"number"}}},"Page":{"required":["id","url"],"properties":{"id":{"type":"string"},"title":{"type":"string"},"text":{"type":"string"},"url":{"type":"string","minLength":1}}},"NewPage":{"required":["url"],"properties":{"title":{"type":"string"},"text":{"type":"string"},"url":{"type":"string","minLength":1},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"UploadFile":{"properties":{"id":{"type":"string"},"caption":{"type":"string"},"name":{"type":"string"},"sha256":{"type":"string"},"hash":{"type":"string"},"ext":{"type":"string"},"size":{"type":"number"},"mime":{"type":"string"},"url":{"type":"string"},"provider":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"related":{"type":"array","items":{"type":"string"}}}},"UsersPermissionsRole":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string","minLength":3},"description":{"type":"string"},"type":{"type":"string"},"permissions":{"type":"array","items":{"required":["id","type","controller","action","enabled"],"properties":{"id":{"type":"string"},"type":{"type":"string"},"controller":{"type":"string"},"action":{"type":"string"},"enabled":{"type":"boolean"},"policy":{"type":"string"},"role":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"users":{"type":"array","items":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","country","siret","ape","phone","license","type"],"properties":{"id":{"type":"string"},"email":{"type":"string"},"provider":{"type":"string"},"password":{"type":"string"},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string"},"confirmed":{"type":"boolean"},"blocked":{"type":"boolean"},"accepted":{"type":"boolean"},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"integer"},"companyDispositifs":{"type":"array","items":{"type":"string"}},"placeDispositifs":{"type":"array","items":{"type":"string"}},"campaigns":{"type":"array","items":{"type":"string"}},"companyApplications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}}},"NewUsersPermissionsRole":{"required":["name"],"properties":{"name":{"type":"string","minLength":3},"description":{"type":"string"},"type":{"type":"string"},"permissions":{"type":"array","items":{"type":"string"}},"users":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"UsersPermissionsUser":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","siret","ape","type"],"properties":{"id":{"type":"string"},"email":{"type":"string","minLength":6},"provider":{"type":"string"},"role":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"type":{"type":"string"},"permissions":{"type":"array","items":{"type":"string"}},"users":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"username":{"type":"string","minLength":3},"confirmed":{"type":"boolean","default":false},"accepted":{"type":"boolean","default":false},"blocked":{"type":"boolean","default":false},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"$ref":"#/components/schemas/Espace"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"string"},"bookings":{"type":"array","items":{"$ref":"#/components/schemas/Booking"}},"placeDispositifs":{"type":"array","items":{"$ref":"#/components/schemas/Dispositif"}},"companyDispositifs":{"type":"array","items":{"$ref":"#/components/schemas/Dispositif"}}}},"NewUsersPermissionsUser":{"required":["email","username","firstname","lastname","structureName","address","zipCode","city","siret","ape","type"],"properties":{"email":{"type":"string","minLength":6},"provider":{"type":"string"},"password":{"type":"string","format":"password","minLength":6},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string","minLength":3},"confirmed":{"type":"boolean","default":false},"blocked":{"type":"boolean","default":false},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Error":{"required":["code","message"],"properties":{"code":{"type":"integer","format":"int32"},"message":{"type":"string"}}}},"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}}},"tags":[{"name":"Actuality"},{"name":"Application"},{"name":"Booking"},{"name":"Campaign"},{"name":"City"},{"name":"Contact"},{"name":"Disponibility"},{"name":"Dispositif"},{"name":"Espace"},{"name":"Message"},{"name":"Page"},{"name":"Email - Email"},{"name":"Upload - File"},{"name":"UsersPermissions - Role"},{"name":"UsersPermissions - User"}]}, + spec: {"openapi":"3.0.0","info":{"version":"1.0.0","title":"DOCUMENTATION","description":"","termsOfService":"YOUR_TERMS_OF_SERVICE_URL","contact":{"name":"TEAM","email":"contact-email@something.io","url":"mywebsite.io"},"license":{"name":"Apache 2.0","url":"https://www.apache.org/licenses/LICENSE-2.0.html"},"x-generation-date":"02/29/2024 6:19:10 PM"},"x-strapi-config":{"path":"/documentation","showGeneratedFiles":true,"generateDefaultResponse":true},"servers":[{"url":"http://localhost:1337","description":"Development server"},{"url":"YOUR_STAGING_SERVER","description":"Staging server"},{"url":"YOUR_PRODUCTION_SERVER","description":"Production server"}],"externalDocs":{"description":"Find out more","url":"https://strapi.io/documentation/developer-docs/latest/getting-started/introduction.html"},"security":[{"bearerAuth":[]}],"paths":{"/actualities":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Actuality"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Actuality"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewActuality"}}}}}},"/actualities/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"parameters":[]}},"/actualities/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Actuality"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Actuality"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewActuality"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Actuality"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/applications/me/{campaignId}":{"get":{"deprecated":false,"description":"Get applications related to current user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Application"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"parameters":[{"name":"campaignId","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}},{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}],"operationId":"getMyApplications"}},"/applications":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Application"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewApplication"}}}}}},"/applications/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"parameters":[]}},"/applications/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Application"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewApplication"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Application"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/bookings/me/{bookingType}":{"get":{"deprecated":false,"description":"Get bookings related to current user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Booking"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"parameters":[{"name":"bookingType","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string","enum":["all","request","booking"]}}],"operationId":"getMyBookings"}},"/bookings":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Booking"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Booking"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewBooking"}}}}}},"/bookings/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"parameters":[]}},"/bookings/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Booking"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Booking"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewBooking"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/bookings/{id}/remove-dispo":{"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Booking"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"properties":{"dispos":{"type":"array","items":{"type":"string"}}}}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}],"operationId":"removeDispos"}},"/campaigns":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Campaign"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Campaign"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewCampaign"}}}}}},"/campaigns/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"parameters":[]}},"/campaigns/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Campaign"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Campaign"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewCampaign"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Campaign"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/cities":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/City"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/City"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewCity"}}}}}},"/cities/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"parameters":[]}},"/cities/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/City"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/City"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewCity"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["City"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/contacts":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Contact"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Contact"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewContact"}}}}}},"/contacts/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"parameters":[]}},"/contacts/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Contact"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Contact"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewContact"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Contact"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/disponibilities":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Disponibility"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewDisponibility"}}}}}},"/disponibilities/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"parameters":[]}},"/disponibilities/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Disponibility"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Disponibility"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewDisponibility"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Disponibility"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/bulk/disponibilities":{"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Disponibility"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}}}}}}},"/disponibilities/{id}/campaign/{campaignId}/confirm":{"post":{"deprecated":false,"description":"Confirm a campaign for a disponibility","responses":{"200":{"description":"Successful operation","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Disponibility"}}}},"400":{"description":"Invalid input, object invalid"},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Disponibility not found"},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"Confirm Campaign","tags":["Disponibility"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Disponibility"}}}},"parameters":[{"in":"path","name":"id","schema":{"type":"string"},"required":true,"description":"Disponibility ID"},{"in":"path","name":"campaignId","schema":{"type":"string"},"required":true,"description":"Campaign ID"}]}},"/dispositifs":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Dispositif"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Dispositif"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewDispositif"}}}}}},"/dispositifs/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"parameters":[]}},"/dispositifs/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Dispositif"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Dispositif"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewDispositif"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Dispositif"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/espaces/me":{"get":{"deprecated":false,"description":"Get places related to current user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Espace"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}],"operationId":"myPlaces"}},"/espaces":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Espace"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Espace"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"requestBody":{"description":"","required":true,"content":{"multipart/form-data":{"schema":{"type":"object"}}}}}},"/espaces/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]}},"/espaces/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Espace"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}},{"name":"availableOnly","in":"query","required":false,"description":"Return place with only available disponibilities","schema":{"type":"boolean"},"deprecated":false}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Espace"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"type":"object"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Espace"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/faq-categories":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Faq-category"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewFaq-category"}}}}}},"/faq-categories/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"parameters":[]}},"/faq-categories/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewFaq-category"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-category"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/faq-questions":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewFaq-question"}}}}}},"/faq-questions/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"parameters":[]}},"/faq-questions/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewFaq-question"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Faq-question"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/home-carousel":{"get":{"deprecated":false,"description":"Find all the home-carousel's records","responses":{"200":{"description":"Retrieve home-carousel document(s)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Home-carousel"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-carousel"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"put":{"deprecated":false,"description":"Update a single home-carousel record","responses":{"200":{"description":"Retrieve home-carousel document(s)","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-carousel"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewHome-carousel"}}}},"parameters":[]},"delete":{"deprecated":false,"description":"Delete a single home-carousel record","responses":{"200":{"description":"deletes a single home-carousel based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-carousel"],"parameters":[]}},"/home-message":{"get":{"deprecated":false,"description":"Find all the home-message's records","responses":{"200":{"description":"Retrieve home-message document(s)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Home-message"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-message"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}],"operationId":"getHomeMessage"},"put":{"deprecated":false,"description":"Update a single home-message record","responses":{"200":{"description":"Retrieve home-message document(s)","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-message"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewHome-message"}}}},"parameters":[]},"delete":{"deprecated":false,"description":"Delete a single home-message record","responses":{"200":{"description":"deletes a single home-message based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Home-message"],"parameters":[]}},"/conversation/me":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[]}},"/notifications/toggle":{"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReadNotif"}}}},"operationId":"toggleNotif"}},"/notifications/me":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NotifCount"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[{"name":"id","in":"query","description":"","deprecated":false,"schema":{"type":"string"}}],"operationId":"myNotifications"}},"/conversation/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Message"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}},{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]}},"/messages":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Message"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Message"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewMessage"}}}}}},"/messages/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[]}},"/messages/{id}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Message"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Message"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewMessage"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Message"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/pages":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Page"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Page"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewPage"}}}}}},"/pages/count":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[]}},"/pages/{url}":{"get":{"deprecated":false,"description":"","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Page"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[{"name":"url","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/pages/{id}":{"put":{"deprecated":false,"description":"Update a record","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Page"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewPage"}}}},"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete a record","responses":{"200":{"description":"deletes a single record based on the ID supplied","content":{"application/json":{"schema":{"type":"integer","format":"int64"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Page"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/email/":{"post":{"deprecated":false,"description":"Send an email","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Email - Email"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}}}},"/email/test":{"post":{"deprecated":false,"description":"Send an test email","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Email - Email"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}}}},"/email/settings":{"get":{"deprecated":false,"description":"Get the email settings","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Email - Email"],"parameters":[]}},"/upload/":{"post":{"deprecated":false,"description":"Upload one or multiple files","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"hash":{"type":"string","format":"uuid"},"sha256":{"type":"string"},"ext":{"type":"string"},"mime":{"type":"string"},"size":{"type":"number"},"url":{"type":"string","format":"uri"},"provider":{"type":"string"},"related":{"type":"array","items":{"type":"string"}}}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"requestBody":{"description":"","required":true,"content":{"multipart/form-data":{"schema":{"type":"object"}}}}}},"/upload/files/count":{"get":{"deprecated":false,"description":"Retrieve the total number of uploaded files","responses":{"200":{"description":"","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"parameters":[]}},"/upload/files":{"get":{"deprecated":false,"description":"Retrieve all file documents","responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UploadFile"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"parameters":[]}},"/upload/files/{id}":{"get":{"deprecated":false,"description":"Retrieve a single file depending on its id","responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UploadFile"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"delete":{"deprecated":false,"description":"Delete an uploaded file","responses":{"200":{"description":"Document deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UploadFile"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/upload/search/{id}":{"get":{"deprecated":false,"description":"Search for an uploaded file","responses":{"200":{"description":"","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UploadFile"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Upload - File"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/users/me":{"put":{"deprecated":false,"description":"Update current user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Unclassified"],"parameters":[],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"type":"object"}}}}},"get":{"deprecated":false,"description":"Retrieve the logged in user information","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"parameters":[]}},"/users/check-password":{"post":{"deprecated":false,"description":"Check current password","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"boolean"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Unclassified"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"properties":{"password":{"type":"string"}}}}}}}},"/users-permissions/roles/{id}":{"get":{"deprecated":false,"description":"Retrieve a role depending on its id","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsRole"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - Role"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/users-permissions/roles":{"get":{"deprecated":false,"description":"Retrieve all role documents","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UsersPermissionsRole"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - Role"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]},"post":{"deprecated":false,"description":"Create a new role","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsRole"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - Role"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewUsersPermissionsRole"}}}}}},"/users-permissions/roles/{role}":{"put":{"deprecated":false,"description":"Update a role","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsRole"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - Role"],"parameters":[{"name":"role","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewUsersPermissionsRole"}}}}},"delete":{"deprecated":false,"description":"Delete a role","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - Role"],"parameters":[{"name":"role","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/users-permissions/search/{id}":{"get":{"deprecated":false,"description":"Search for users","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"Retrieve a list of users by searching for their username or email","tags":["UsersPermissions - User"],"parameters":[{"name":"id","in":"path","description":"A string matching a user's email or username","deprecated":false,"required":true,"schema":{"type":"string"}}]}},"/connect/*":{"get":{"deprecated":false,"description":"Connect a provider","responses":{"200":{"description":"Your user is redirected"},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"Authenticate your user with a custom provider","tags":["Authentication"],"parameters":[{"name":"provider","in":"path","required":true,"deprecated":false,"description":"The name of the provider you want to use","schema":{"type":"string"}}],"security":[],"externalDocs":{"description":"Find out more about the authentication flow in the strapi documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#setting-up-the-provider-examples"}}},"/auth/local":{"post":{"deprecated":false,"description":"Login a user using the identifiers email and password","responses":{"200":{"description":"Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Users-PermissionsRegisterResponse"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Authentication"],"requestBody":{"description":"The identifier param can either be an email or a username","required":true,"content":{"application/json":{"schema":{"required":["identifier","password"],"properties":{"identifier":{"type":"string"},"password":{"type":"string"}}},"example":{"identifier":"hi@strapi.io","password":"superSecure123"}}}},"externalDocs":{"description":"Find out more in the strapi's documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#login"},"security":[],"operationId":"login"}},"/auth/local/register":{"post":{"deprecated":false,"description":"Register a new user with the default role","responses":{"200":{"description":"Successfully register a user","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Users-PermissionsRegisterResponse"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Authentication"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"required":["username","email","password"],"properties":{"username":{"type":"string","minLength":3},"email":{"type":"string","minLength":6},"password":{"type":"string","minLength":6}}}}}},"security":[],"operationId":"signup","externalDocs":{"description":"Find out more in the strapi's documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#registration"}}},"/auth/{provider}/callback":{"get":{"deprecated":false,"description":"Successfull redirection after approving a provider","responses":{"200":{"description":"Successfull redirection after approving a provider","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Users-PermissionsRegisterResponse"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Authentication"],"parameters":[{"name":"provider","in":"path","description":"The provider used to authenticate your user","deprecated":false,"required":true,"schema":{"type":"string"}}],"externalDocs":{"description":"Find out more in the strapi's documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#setting-up-the-provider-examples"}}},"/auth/forgot-password":{"post":{"deprecated":false,"description":"Send the reset password email link","responses":{"200":{"description":"Email sent"},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"Send an email to reset your password","tags":["Authentication"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"properties":{"email":{"type":"string"},"url":{"type":"string"}}},"example":{"email":"hi@strapi.io","url":"http://mon-site.com/rest-password"}}}},"security":[],"operationId":"forgotPassword","externalDocs":{"description":"Find out more in the strapi's documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#forgotten-reset-password"}}},"/auth/reset-password":{"post":{"deprecated":false,"description":"Reset user password with a code (resetToken)","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Users-PermissionsRegisterResponse"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Authentication"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"required":["code","password","passwordConfirmation"],"properties":{"code":{"type":"string"},"password":{"type":"string"},"passwordConfirmation":{"type":"string"}}}}}},"operationId":"resetPassword","security":[]}},"/auth/email-confirmation":{"get":{"deprecated":false,"description":"Validate a user account","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["Authentication"],"parameters":[{"name":"confirmation","in":"query","required":false,"description":"Token","schema":{"type":"string"},"deprecated":false}],"security":[]}},"/auth/send-email-confirmation":{"post":{"deprecated":false,"description":"Send a confirmation email to user","responses":{"200":{"description":"Successfully sent email","content":{"application/json":{"email":{"type":"string"},"sent":{"type":"boolean"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"required":["email"],"properties":{"email":{"type":"string","minLength":6}}}}}},"security":[],"externalDocs":{"description":"Find out more in the strapi's documentation","url":"https://strapi.io/documentation/developer-docs/latest/development/plugins/users-permissions.html#email-validation"}}},"/users":{"get":{"deprecated":false,"description":"Retrieve all user documents","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"parameters":[{"name":"_limit","in":"query","required":false,"description":"Maximum number of results possible","schema":{"type":"integer"},"deprecated":false},{"name":"_sort","in":"query","required":false,"description":"Sort according to a specific field.","schema":{"type":"string"},"deprecated":false},{"name":"_start","in":"query","required":false,"description":"Skip a specific number of entries (especially useful for pagination)","schema":{"type":"integer"},"deprecated":false},{"name":"=","in":"query","required":false,"description":"Get entries that matches exactly your input","schema":{"type":"string"},"deprecated":false},{"name":"_ne","in":"query","required":false,"description":"Get records that are not equals to something","schema":{"type":"string"},"deprecated":false},{"name":"_lt","in":"query","required":false,"description":"Get record that are lower than a value","schema":{"type":"string"},"deprecated":false},{"name":"_lte","in":"query","required":false,"description":"Get records that are lower than or equal to a value","schema":{"type":"string"},"deprecated":false},{"name":"_gt","in":"query","required":false,"description":"Get records that are greater than a value","schema":{"type":"string"},"deprecated":false},{"name":"_gte","in":"query","required":false,"description":"Get records that are greater than or equal a value","schema":{"type":"string"},"deprecated":false},{"name":"_contains","in":"query","required":false,"description":"Get records that contains a value","schema":{"type":"string"},"deprecated":false},{"name":"_containss","in":"query","required":false,"description":"Get records that contains (case sensitive) a value","schema":{"type":"string"},"deprecated":false},{"name":"_in","in":"query","required":false,"description":"Get records that matches any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false},{"name":"_nin","in":"query","required":false,"description":"Get records that doesn't match any value in the array of values","schema":{"type":"array","items":{"type":"string"}},"deprecated":false}]}},"/users/{id}":{"get":{"deprecated":false,"description":"Retrieve a single user depending on his id","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]},"put":{"deprecated":false,"description":"Update an existing user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsersPermissionsUser"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewUsersPermissionsUser"}}}}},"delete":{"deprecated":false,"description":"Delete an existing user","responses":{"200":{"description":"response","content":{"application/json":{"schema":{"properties":{"foo":{"type":"string"}}}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"default":{"description":"unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}},"summary":"","tags":["UsersPermissions - User"],"parameters":[{"name":"id","in":"path","description":"","deprecated":false,"required":true,"schema":{"type":"string"}}]}}},"components":{"schemas":{"Actuality":{"required":["id","title","content","image"],"properties":{"id":{"type":"string"},"title":{"type":"string"},"content":{"type":"string"},"created_at":{"type":"string"},"image":{"required":["id","name","hash","mime","size","url","provider"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"alternativeText":{"type":"string"},"caption":{"type":"string"},"width":{"type":"integer"},"height":{"type":"integer"},"formats":{"type":"object"},"hash":{"type":"string"},"ext":{"type":"string"},"mime":{"type":"string"},"size":{"type":"number"},"url":{"type":"string"},"previewUrl":{"type":"string"},"provider":{"type":"string"},"provider_metadata":{"type":"object"},"related":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"slug":{"type":"string"},"published_at":{"type":"string","format":"date-time"}}},"NewActuality":{"required":["title","content"],"properties":{"title":{"type":"string"},"content":{"type":"string"},"slug":{"type":"string"},"published_at":{"type":"string","format":"date-time"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Application":{"required":["id"],"properties":{"id":{"type":"string"},"disponibility":{"required":["id","start","end","type","status"],"properties":{"id":{"type":"string"},"when":{"type":"string","enum":["morning","afternoon","full"]},"start":{"type":"string"},"end":{"type":"string"},"espace":{"type":"string"},"type":{"type":"string","enum":["punctual","day","period"]},"status":{"type":"string","enum":["available","booked","pending","past","canceled","removed"]},"booking":{"type":"string"},"dispositif":{"type":"string"},"message":{"type":"string"},"campaign":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"staff":{"type":"object"},"accomodation":{"type":"integer"},"scene_grid":{"type":"boolean"},"exclude_days":{"type":"object"},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"creation_dancers":{"type":"integer"},"creation_title":{"type":"string"},"creation_file":{"type":"array","items":{"required":["id","name","hash","mime","size","url","provider"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"alternativeText":{"type":"string"},"caption":{"type":"string"},"width":{"type":"integer"},"height":{"type":"integer"},"formats":{"type":"object"},"hash":{"type":"string"},"ext":{"type":"string"},"mime":{"type":"string"},"size":{"type":"number"},"url":{"type":"string"},"previewUrl":{"type":"string"},"provider":{"type":"string"},"provider_metadata":{"type":"object"},"related":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"creation_summary":{"type":"string"},"creation_partnerships":{"type":"string"},"creation_techical_requirements":{"type":"string"},"creation_accomodation":{"type":"boolean"},"eligible":{"type":"boolean"},"already_supported":{"type":"boolean"},"cv":{"type":"string"},"references":{"type":"object"},"campaign":{"required":["id","duration","disponibility_start","disponibility_end","application_start","application_end","preselection_start","preselection_end","disponibilities_max"],"properties":{"id":{"type":"string"},"duration":{"type":"integer"},"disponibility_start":{"type":"string"},"disponibility_end":{"type":"string"},"application_start":{"type":"string"},"application_end":{"type":"string"},"preselection_start":{"type":"string"},"preselection_end":{"type":"string"},"reminder_days":{"type":"integer"},"disponibilities":{"type":"array","items":{"type":"string"}},"title":{"type":"string"},"description":{"type":"string"},"disponibilities_max":{"type":"integer"},"campaign_start":{"type":"string"},"campaign_end":{"type":"string"},"users_permissions_users":{"type":"array","items":{"type":"string"}},"applications_max":{"type":"integer"},"article_link":{"type":"string"},"eligibility":{"type":"string"},"chart_url":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"preselections_max":{"type":"integer"},"is_active":{"type":"boolean"},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"company":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","country","siret","ape","phone","license","type"],"properties":{"id":{"type":"string"},"email":{"type":"string"},"provider":{"type":"string"},"password":{"type":"string"},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string"},"confirmed":{"type":"boolean"},"blocked":{"type":"boolean"},"accepted":{"type":"boolean"},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"integer"},"companyDispositifs":{"type":"array","items":{"type":"string"}},"placeDispositifs":{"type":"array","items":{"type":"string"}},"campaigns":{"type":"array","items":{"type":"string"}},"companyApplications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"espace":{"required":["id","name","surface","roomLength","width","height","mirror","danceBar","accomodation","technicalStaff","floor","address","country","latitude"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"surface":{"type":"number"},"roomLength":{"type":"number"},"width":{"type":"number"},"height":{"type":"number"},"mirror":{"type":"boolean"},"danceBar":{"type":"boolean"},"accomodation":{"type":"boolean"},"technicalStaff":{"type":"boolean"},"floor":{"type":"string","enum":["plancherDanse","parquetTraditionnel","other","todefine"]},"otherFloor":{"type":"string"},"about":{"type":"string"},"details":{"type":"string"},"address":{"type":"string"},"files":{"type":"array","items":{"type":"string"}},"images":{"type":"array","items":{"type":"string"}},"users_permissions_user":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"scheduleDetails":{"type":"string"},"filledUntil":{"type":"string"},"published":{"type":"boolean"},"bookings":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"external_id":{"type":"integer"},"danceCarpet":{"type":"string","enum":["true","false","possible"]},"slug":{"type":"string"},"city":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"deleted":{"type":"boolean"},"applications":{"type":"array","items":{"type":"string"}},"campaign_files":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"status":{"type":"string","enum":["preselected","confirmed"]},"published_at":{"type":"string","format":"date-time"}}},"NewApplication":{"properties":{"disponibility":{"type":"string"},"creation_dancers":{"type":"integer"},"creation_title":{"type":"string"},"creation_summary":{"type":"string"},"creation_partnerships":{"type":"string"},"creation_techical_requirements":{"type":"string"},"creation_accomodation":{"type":"boolean"},"eligible":{"type":"boolean"},"already_supported":{"type":"boolean"},"cv":{"type":"string"},"references":{"type":"object"},"campaign":{"type":"string"},"company":{"type":"string"},"espace":{"type":"string"},"status":{"type":"string","enum":["preselected","confirmed"]},"published_at":{"type":"string","format":"date-time"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Booking":{"required":["id"],"properties":{"id":{"type":"string"},"status":{"type":"string","default":"pending","enum":["requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","past","accepted","pending"]},"disponibilities":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}},"espace":{"$ref":"#/components/schemas/Espace"},"company":{"$ref":"#/components/schemas/UsersPermissionsUser"},"place":{"$ref":"#/components/schemas/UsersPermissionsUser"},"notifications":{"$ref":"#/components/schemas/NotifCount"},"messages":{"type":"array","items":{"$ref":"#/components/schemas/Message"}}}},"NewBooking":{"properties":{"disponibilities":{"type":"array","items":{"type":"string"}},"status":{"type":"string","enum":["requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","past","accepted","pending","expired"]},"messages":{"type":"array","items":{"type":"string"}},"espace":{"type":"string"},"place":{"type":"string"},"company":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Campaign":{"required":["id","duration","disponibility_start","disponibility_end","application_start","application_end","preselection_start","preselection_end","disponibilities_max"],"properties":{"id":{"type":"string"},"duration":{"type":"integer"},"disponibility_start":{"type":"string","format":"date"},"disponibility_end":{"type":"string","format":"date"},"application_start":{"type":"string","format":"date"},"application_end":{"type":"string","format":"date"},"preselection_start":{"type":"string","format":"date"},"preselection_end":{"type":"string","format":"date"},"reminder_days":{"type":"integer"},"disponibilities":{"type":"array","items":{"required":["id","start","end","type","status"],"properties":{"id":{"type":"string"},"when":{"type":"string","enum":["morning","afternoon","full"]},"start":{"type":"string"},"end":{"type":"string"},"espace":{"type":"string"},"type":{"type":"string","enum":["punctual","day","period"]},"status":{"type":"string","enum":["available","booked","pending","past","canceled","removed"]},"booking":{"type":"string"},"dispositif":{"type":"string"},"message":{"type":"string"},"campaign":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"staff":{"type":"object"},"accomodation":{"type":"integer"},"scene_grid":{"type":"boolean"},"exclude_days":{"type":"object"},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"title":{"type":"string"},"description":{"type":"string"},"disponibilities_max":{"type":"integer"},"campaign_start":{"type":"string","format":"date"},"campaign_end":{"type":"string","format":"date"},"users_permissions_users":{"type":"array","items":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","country","siret","ape","phone","license","type"],"properties":{"id":{"type":"string"},"email":{"type":"string"},"provider":{"type":"string"},"password":{"type":"string"},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string"},"confirmed":{"type":"boolean"},"blocked":{"type":"boolean"},"accepted":{"type":"boolean"},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"integer"},"companyDispositifs":{"type":"array","items":{"type":"string"}},"placeDispositifs":{"type":"array","items":{"type":"string"}},"campaigns":{"type":"array","items":{"type":"string"}},"companyApplications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"applications_max":{"type":"integer"},"article_link":{"type":"string"},"eligibility":{"type":"string"},"chart_url":{"type":"string"},"applications":{"type":"array","items":{"required":["id"],"properties":{"id":{"type":"string"},"disponibility":{"type":"string"},"creation_dancers":{"type":"integer"},"creation_title":{"type":"string"},"creation_file":{"type":"array","items":{"type":"string"}},"creation_summary":{"type":"string"},"creation_partnerships":{"type":"string"},"creation_techical_requirements":{"type":"string"},"creation_accomodation":{"type":"boolean"},"eligible":{"type":"boolean"},"already_supported":{"type":"boolean"},"cv":{"type":"string"},"references":{"type":"object"},"campaign":{"type":"string"},"company":{"type":"string"},"espace":{"type":"string"},"status":{"type":"string","enum":["preselected","confirmed"]},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"preselections_max":{"type":"integer"},"is_active":{"type":"boolean"},"published_at":{"type":"string","format":"date-time"}}},"NewCampaign":{"required":["duration","disponibility_start","disponibility_end","application_start","application_end","preselection_start","preselection_end","disponibilities_max"],"properties":{"duration":{"type":"integer"},"disponibility_start":{"type":"string","format":"date"},"disponibility_end":{"type":"string","format":"date"},"application_start":{"type":"string","format":"date"},"application_end":{"type":"string","format":"date"},"preselection_start":{"type":"string","format":"date"},"preselection_end":{"type":"string","format":"date"},"reminder_days":{"type":"integer"},"disponibilities":{"type":"array","items":{"type":"string"}},"title":{"type":"string"},"description":{"type":"string"},"disponibilities_max":{"type":"integer"},"campaign_start":{"type":"string","format":"date"},"campaign_end":{"type":"string","format":"date"},"users_permissions_users":{"type":"array","items":{"type":"string"}},"applications_max":{"type":"integer"},"article_link":{"type":"string"},"eligibility":{"type":"string"},"chart_url":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"preselections_max":{"type":"integer"},"is_active":{"type":"boolean"},"published_at":{"type":"string","format":"date-time"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"City":{"required":["id","name","country"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"espaces":{"type":"array","items":{"required":["id","name","surface","roomLength","width","height","mirror","danceBar","accomodation","technicalStaff","floor","address","country","latitude"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"surface":{"type":"number"},"roomLength":{"type":"number"},"width":{"type":"number"},"height":{"type":"number"},"mirror":{"type":"boolean"},"danceBar":{"type":"boolean"},"accomodation":{"type":"boolean"},"technicalStaff":{"type":"boolean"},"floor":{"type":"string","enum":["plancherDanse","parquetTraditionnel","other","todefine"]},"otherFloor":{"type":"string"},"about":{"type":"string"},"details":{"type":"string"},"address":{"type":"string"},"files":{"type":"array","items":{"type":"string"}},"images":{"type":"array","items":{"type":"string"}},"users_permissions_user":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"scheduleDetails":{"type":"string"},"filledUntil":{"type":"string"},"published":{"type":"boolean"},"bookings":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"external_id":{"type":"integer"},"danceCarpet":{"type":"string","enum":["true","false","possible"]},"slug":{"type":"string"},"city":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"deleted":{"type":"boolean"},"applications":{"type":"array","items":{"type":"string"}},"campaign_files":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"country":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"}}},"NewCity":{"required":["name","country"],"properties":{"name":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Contact":{"required":["id","name","message","from"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"message":{"type":"string"},"from":{"type":"string"}}},"NewContact":{"required":["name","message","from"],"properties":{"name":{"type":"string"},"message":{"type":"string"},"from":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Disponibility":{"required":["id","start","end","type","status"],"properties":{"id":{"type":"string"},"when":{"type":"string","enum":["morning","afternoon","full"]},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"espace":{"required":["id","name","surface","roomLength","width","height","mirror","danceBar","accomodation","technicalStaff","floor","address","country","latitude"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"surface":{"type":"number"},"roomLength":{"type":"number"},"width":{"type":"number"},"height":{"type":"number"},"mirror":{"type":"boolean"},"danceBar":{"type":"boolean"},"accomodation":{"type":"boolean"},"technicalStaff":{"type":"boolean"},"floor":{"type":"string","enum":["plancherDanse","parquetTraditionnel","other","todefine"]},"otherFloor":{"type":"string"},"about":{"type":"string"},"details":{"type":"string"},"address":{"type":"string"},"files":{"type":"array","items":{"type":"string"}},"images":{"type":"array","items":{"type":"string"}},"users_permissions_user":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"scheduleDetails":{"type":"string"},"filledUntil":{"type":"string"},"published":{"type":"boolean"},"bookings":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"external_id":{"type":"integer"},"danceCarpet":{"type":"string","enum":["true","false","possible"]},"slug":{"type":"string"},"city":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"deleted":{"type":"boolean"},"applications":{"type":"array","items":{"type":"string"}},"campaign_files":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"type":{"type":"string","enum":["punctual","day","period"]},"status":{"type":"string","default":"available","enum":["available","booked","pending","past","canceled","removed"]},"booking":{"required":["id"],"properties":{"id":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"status":{"type":"string","enum":["requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","past","accepted","pending","expired"]},"messages":{"type":"array","items":{"type":"string"}},"espace":{"type":"string"},"place":{"type":"string"},"company":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"dispositif":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"actif":{"type":"boolean"},"expiration":{"type":"string"},"places":{"type":"array","items":{"type":"string"}},"companies":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"message":{"required":["id","status"],"properties":{"id":{"type":"string"},"message":{"type":"string"},"place":{"type":"string"},"company":{"type":"string"},"author":{"type":"string","enum":["company","place"]},"status":{"type":"string","enum":["accepted","created","requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","message","requestdisporemovedbyplace","bookingdisporemovedbyplace","disporemovedbycompany"]},"booking":{"type":"string"},"hasbeenread":{"type":"boolean"},"notified":{"type":"boolean"},"disponibilities":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"campaign":{"required":["id","duration","disponibility_start","disponibility_end","application_start","application_end","preselection_start","preselection_end","disponibilities_max"],"properties":{"id":{"type":"string"},"duration":{"type":"integer"},"disponibility_start":{"type":"string"},"disponibility_end":{"type":"string"},"application_start":{"type":"string"},"application_end":{"type":"string"},"preselection_start":{"type":"string"},"preselection_end":{"type":"string"},"reminder_days":{"type":"integer"},"disponibilities":{"type":"array","items":{"type":"string"}},"title":{"type":"string"},"description":{"type":"string"},"disponibilities_max":{"type":"integer"},"campaign_start":{"type":"string"},"campaign_end":{"type":"string"},"users_permissions_users":{"type":"array","items":{"type":"string"}},"applications_max":{"type":"integer"},"article_link":{"type":"string"},"eligibility":{"type":"string"},"chart_url":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"preselections_max":{"type":"integer"},"is_active":{"type":"boolean"},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"applications":{"type":"array","items":{"required":["id"],"properties":{"id":{"type":"string"},"disponibility":{"type":"string"},"creation_dancers":{"type":"integer"},"creation_title":{"type":"string"},"creation_file":{"type":"array","items":{"type":"string"}},"creation_summary":{"type":"string"},"creation_partnerships":{"type":"string"},"creation_techical_requirements":{"type":"string"},"creation_accomodation":{"type":"boolean"},"eligible":{"type":"boolean"},"already_supported":{"type":"boolean"},"cv":{"type":"string"},"references":{"type":"object"},"campaign":{"type":"string"},"company":{"type":"string"},"espace":{"type":"string"},"status":{"type":"string","enum":["preselected","confirmed"]},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"staff":{"type":"object"},"accomodation":{"type":"integer"},"scene_grid":{"type":"boolean"},"exclude_days":{"type":"object"},"published_at":{"type":"string","format":"date-time"}}},"NewDisponibility":{"required":["start","end","type","status"],"properties":{"when":{"type":"string","enum":["morning","afternoon","full"]},"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"},"espace":{"type":"string"},"type":{"type":"string","enum":["punctual","day","period"]},"status":{"type":"string","default":"available","enum":["available","booked","pending","past","canceled","removed"]},"booking":{"type":"string"},"dispositif":{"type":"string"},"message":{"type":"string"},"campaign":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"staff":{"type":"object"},"accomodation":{"type":"integer"},"scene_grid":{"type":"boolean"},"exclude_days":{"type":"object"},"published_at":{"type":"string","format":"date-time"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Dispositif":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"disponibilities":{"type":"array","items":{"required":["id","start","end","type","status"],"properties":{"id":{"type":"string"},"when":{"type":"string","enum":["morning","afternoon","full"]},"start":{"type":"string"},"end":{"type":"string"},"espace":{"type":"string"},"type":{"type":"string","enum":["punctual","day","period"]},"status":{"type":"string","enum":["available","booked","pending","past","canceled","removed"]},"booking":{"type":"string"},"dispositif":{"type":"string"},"message":{"type":"string"},"campaign":{"type":"string"},"applications":{"type":"array","items":{"type":"string"}},"staff":{"type":"object"},"accomodation":{"type":"integer"},"scene_grid":{"type":"boolean"},"exclude_days":{"type":"object"},"published_at":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"actif":{"type":"boolean","default":true},"expiration":{"type":"string","format":"date"},"places":{"type":"array","items":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","country","siret","ape","phone","license","type"],"properties":{"id":{"type":"string"},"email":{"type":"string"},"provider":{"type":"string"},"password":{"type":"string"},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string"},"confirmed":{"type":"boolean"},"blocked":{"type":"boolean"},"accepted":{"type":"boolean"},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"integer"},"companyDispositifs":{"type":"array","items":{"type":"string"}},"placeDispositifs":{"type":"array","items":{"type":"string"}},"campaigns":{"type":"array","items":{"type":"string"}},"companyApplications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"companies":{"type":"array","items":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","country","siret","ape","phone","license","type"],"properties":{"id":{"type":"string"},"email":{"type":"string"},"provider":{"type":"string"},"password":{"type":"string"},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string"},"confirmed":{"type":"boolean"},"blocked":{"type":"boolean"},"accepted":{"type":"boolean"},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"integer"},"companyDispositifs":{"type":"array","items":{"type":"string"}},"placeDispositifs":{"type":"array","items":{"type":"string"}},"campaigns":{"type":"array","items":{"type":"string"}},"companyApplications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}}},"NewDispositif":{"required":["name"],"properties":{"name":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"actif":{"type":"boolean","default":true},"expiration":{"type":"string","format":"date"},"places":{"type":"array","items":{"type":"string"}},"companies":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Espace":{"required":["id","name","surface","roomLength","width","height","mirror","danceBar","accomodation","technicalStaff","floor","address","latitude","longitude","city","danceCarpet"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"surface":{"type":"integer"},"roomLength":{"type":"integer"},"width":{"type":"integer"},"height":{"type":"integer"},"mirror":{"type":"boolean"},"danceBar":{"type":"boolean"},"accomodation":{"type":"boolean"},"technicalStaff":{"type":"boolean"},"floor":{"type":"string","enum":["plancherDanse","parquetTraditionnel","other"]},"otherFloor":{"type":"string"},"about":{"type":"string"},"details":{"type":"string"},"address":{"type":"string"},"latitude":{"type":"string"},"longitude":{"type":"string"},"files":{"type":"array","items":{"$ref":"#/components/schemas/UploadFile"}},"images":{"type":"array","items":{"$ref":"#/components/schemas/UploadFile"}},"users_permissions_user":{"$ref":"#/components/schemas/UsersPermissionsUser"},"disponibilities":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}},"scheduleDetails":{"type":"string"},"filledUntil":{"type":"string","format":"date"},"published":{"type":"boolean","default":true},"city":{"$ref":"#/components/schemas/City"},"country":{"type":"string"},"slug":{"type":"string"},"external_id":{"type":"integer"},"danceCarpet":{"type":"string","enum":["true","false","possible"]},"campaign_files":{"type":"array","items":{"required":["id","name","hash","mime","size","url","provider"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"alternativeText":{"type":"string"},"caption":{"type":"string"},"width":{"type":"integer"},"height":{"type":"integer"},"formats":{"type":"object"},"hash":{"type":"string"},"ext":{"type":"string"},"mime":{"type":"string"},"size":{"type":"number"},"url":{"type":"string"},"previewUrl":{"type":"string"},"provider":{"type":"string"},"provider_metadata":{"type":"object"},"related":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}}},"NewEspace":{"required":["name","surface","roomLength","width","height","mirror","danceBar","accomodation","technicalStaff","floor","address","country","latitude"],"properties":{"name":{"type":"string"},"surface":{"type":"number"},"roomLength":{"type":"number"},"width":{"type":"number"},"height":{"type":"number"},"mirror":{"type":"boolean"},"danceBar":{"type":"boolean"},"accomodation":{"type":"boolean"},"technicalStaff":{"type":"boolean"},"floor":{"type":"string","enum":["plancherDanse","parquetTraditionnel","other","todefine"]},"otherFloor":{"type":"string"},"about":{"type":"string"},"details":{"type":"string"},"address":{"type":"string"},"users_permissions_user":{"type":"string"},"disponibilities":{"type":"array","items":{"type":"string"}},"scheduleDetails":{"type":"string"},"filledUntil":{"type":"string","format":"date"},"published":{"type":"boolean","default":true},"bookings":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"external_id":{"type":"integer"},"danceCarpet":{"type":"string","enum":["true","false","possible"]},"slug":{"type":"string"},"city":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"deleted":{"type":"boolean","default":false},"applications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Faq-category":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"faq_questions":{"type":"array","items":{"required":["id","question","answer"],"properties":{"id":{"type":"string"},"question":{"type":"string"},"answer":{"type":"string"},"faq_category":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}}},"NewFaq-category":{"required":["name"],"properties":{"name":{"type":"string"},"faq_questions":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Faq-question":{"required":["id","question","answer"],"properties":{"id":{"type":"string"},"question":{"type":"string"},"answer":{"type":"string"},"faq_category":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"faq_questions":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}},"NewFaq-question":{"required":["question","answer"],"properties":{"question":{"type":"string"},"answer":{"type":"string"},"faq_category":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Home-carousel":{"required":["id","images"],"properties":{"id":{"type":"string"},"images":{"type":"array","items":{"required":["id","name","hash","mime","size","url","provider"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"alternativeText":{"type":"string"},"caption":{"type":"string"},"width":{"type":"integer"},"height":{"type":"integer"},"formats":{"type":"object"},"hash":{"type":"string"},"ext":{"type":"string"},"mime":{"type":"string"},"size":{"type":"number"},"url":{"type":"string"},"previewUrl":{"type":"string"},"provider":{"type":"string"},"provider_metadata":{"type":"object"},"related":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}}},"NewHome-carousel":{"properties":{"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Home-message":{"required":["id","text"],"properties":{"id":{"type":"string"},"text":{"type":"string"},"isVisible":{"type":"boolean","default":false},"title":{"type":"string"}}},"NewHome-message":{"required":["text"],"properties":{"text":{"type":"string"},"isVisible":{"type":"boolean","default":false},"title":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Message":{"required":["id","status"],"properties":{"id":{"type":"string"},"message":{"type":"string"},"created_at":{"type":"string"},"place":{"$ref":"#/components/schemas/UsersPermissionsUser"},"company":{"$ref":"#/components/schemas/UsersPermissionsUser"},"disponibilities":{"type":"array","items":{"$ref":"#/components/schemas/Disponibility"}},"booking":{"$ref":"#/components/schemas/Booking"},"status":{"type":"string","enum":["accepted","created","requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","message"]},"author":{"type":"string","enum":["company","place"]}}},"NewMessage":{"required":["status"],"properties":{"message":{"type":"string"},"place":{"type":"string"},"company":{"type":"string"},"author":{"type":"string","enum":["company","place"]},"status":{"type":"string","enum":["accepted","created","requestcanceled","requestcanceledbyplace","bookingcanceledbyplace","askcancel","message","requestdisporemovedbyplace","bookingdisporemovedbyplace","disporemovedbycompany"]},"booking":{"type":"string"},"hasbeenread":{"type":"boolean","default":false},"notified":{"type":"boolean","default":false},"disponibilities":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"ReadNotif":{"required":["status"],"properties":{"bookingId":{"type":"string"},"targetId":{"type":"string"},"status":{"type":"string","enum":["message","request","booking"]}}},"NotifCount":{"properties":{"request":{"type":"number"},"booking":{"type":"number"},"message":{"type":"number"}}},"Page":{"required":["id","url"],"properties":{"id":{"type":"string"},"title":{"type":"string"},"text":{"type":"string"},"url":{"type":"string","minLength":1}}},"NewPage":{"required":["url"],"properties":{"title":{"type":"string"},"text":{"type":"string"},"url":{"type":"string","minLength":1},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"UploadFile":{"properties":{"id":{"type":"string"},"caption":{"type":"string"},"name":{"type":"string"},"sha256":{"type":"string"},"hash":{"type":"string"},"ext":{"type":"string"},"size":{"type":"number"},"mime":{"type":"string"},"url":{"type":"string"},"provider":{"type":"string"},"updatedAt":{"type":"string"},"createdAt":{"type":"string"},"related":{"type":"array","items":{"type":"string"}}}},"UsersPermissionsRole":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string","minLength":3},"description":{"type":"string"},"type":{"type":"string"},"permissions":{"type":"array","items":{"required":["id","type","controller","action","enabled"],"properties":{"id":{"type":"string"},"type":{"type":"string"},"controller":{"type":"string"},"action":{"type":"string"},"enabled":{"type":"boolean"},"policy":{"type":"string"},"role":{"type":"string"},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}},"users":{"type":"array","items":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","country","siret","ape","phone","license","type"],"properties":{"id":{"type":"string"},"email":{"type":"string"},"provider":{"type":"string"},"password":{"type":"string"},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string"},"confirmed":{"type":"boolean"},"blocked":{"type":"boolean"},"accepted":{"type":"boolean"},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"integer"},"companyDispositifs":{"type":"array","items":{"type":"string"}},"placeDispositifs":{"type":"array","items":{"type":"string"}},"campaigns":{"type":"array","items":{"type":"string"}},"companyApplications":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}}}}},"NewUsersPermissionsRole":{"required":["name"],"properties":{"name":{"type":"string","minLength":3},"description":{"type":"string"},"type":{"type":"string"},"permissions":{"type":"array","items":{"type":"string"}},"users":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"UsersPermissionsUser":{"required":["id","email","username","firstname","lastname","structureName","address","zipCode","city","siret","ape","type"],"properties":{"id":{"type":"string"},"email":{"type":"string","minLength":6},"provider":{"type":"string"},"role":{"required":["id","name"],"properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"type":{"type":"string"},"permissions":{"type":"array","items":{"type":"string"}},"users":{"type":"array","items":{"type":"string"}},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"username":{"type":"string","minLength":3},"confirmed":{"type":"boolean","default":false},"accepted":{"type":"boolean","default":false},"blocked":{"type":"boolean","default":false},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"$ref":"#/components/schemas/Espace"}},"type":{"type":"string","enum":["company","place"]},"external_id":{"type":"string"},"bookings":{"type":"array","items":{"$ref":"#/components/schemas/Booking"}},"placeDispositifs":{"type":"array","items":{"$ref":"#/components/schemas/Dispositif"}},"companyDispositifs":{"type":"array","items":{"$ref":"#/components/schemas/Dispositif"}}}},"NewUsersPermissionsUser":{"required":["email","username","firstname","lastname","structureName","address","zipCode","city","siret","ape","type"],"properties":{"email":{"type":"string","minLength":6},"provider":{"type":"string"},"password":{"type":"string","format":"password","minLength":6},"resetPasswordToken":{"type":"string"},"confirmationToken":{"type":"string"},"role":{"type":"string"},"username":{"type":"string","minLength":3},"confirmed":{"type":"boolean","default":false},"blocked":{"type":"boolean","default":false},"firstname":{"type":"string"},"lastname":{"type":"string"},"structureName":{"type":"string"},"socialReason":{"type":"string"},"address":{"type":"string"},"zipCode":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"siret":{"type":"string"},"ape":{"type":"string"},"phone":{"type":"string"},"license":{"type":"string"},"website":{"type":"string"},"legalRepresentative":{"type":"string"},"statusRepresentative":{"type":"string"},"insuranceNumber":{"type":"string"},"insuranceName":{"type":"string"},"choreographer":{"type":"string"},"espaces":{"type":"array","items":{"type":"string"}},"type":{"type":"string","enum":["company","place"]},"created_by":{"type":"string"},"updated_by":{"type":"string"}}},"Error":{"required":["code","message"],"properties":{"code":{"type":"integer","format":"int32"},"message":{"type":"string"}}}},"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}}},"tags":[{"name":"Actuality"},{"name":"Application"},{"name":"Booking"},{"name":"Campaign"},{"name":"City"},{"name":"Contact"},{"name":"Disponibility"},{"name":"Dispositif"},{"name":"Espace"},{"name":"Message"},{"name":"Page"},{"name":"Email - Email"},{"name":"Upload - File"},{"name":"UsersPermissions - Role"},{"name":"UsersPermissions - User"}]}, dom_id: '#swagger-ui', docExpansion: "none", deepLinking: true, diff --git a/back/extensions/users-permissions/documentation/1.0.0/users-permissions-User.json b/back/extensions/users-permissions/documentation/1.0.0/users-permissions-User.json index 31c0e5ab..70f448fb 100644 --- a/back/extensions/users-permissions/documentation/1.0.0/users-permissions-User.json +++ b/back/extensions/users-permissions/documentation/1.0.0/users-permissions-User.json @@ -1672,6 +1672,9 @@ "preselections_max": { "type": "integer" }, + "is_active": { + "type": "boolean" + }, "published_at": { "type": "string" }, diff --git a/back/package.json b/back/package.json index c50c948f..96404071 100644 --- a/back/package.json +++ b/back/package.json @@ -22,6 +22,7 @@ "csv-parser": "^3.0.0", "form-data": "^4.0.0", "knex": "0.21.18", + "node-cron": "^3.0.3", "pg": "^8.5.1", "strapi": "3.6.8", "strapi-admin": "3.6.8", diff --git a/back/yarn.lock b/back/yarn.lock index 04ccb696..468f109c 100644 --- a/back/yarn.lock +++ b/back/yarn.lock @@ -7688,6 +7688,13 @@ node-addon-api@^3.1.0: resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.1.0.tgz#98b21931557466c6729e51cb77cd39c965f42239" integrity sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw== +node-cron@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/node-cron/-/node-cron-3.0.3.tgz#c4bc7173dd96d96c50bdb51122c64415458caff2" + integrity sha512-dOal67//nohNgYWb+nWmg5dkFdIwDm8EpeGYMekPMrngV3637lqnX0lbUcCtgibHTz6SEz7DAIjKvKDFYCnO1A== + dependencies: + uuid "8.3.2" + node-fetch@2.6.1, node-fetch@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" @@ -11764,6 +11771,11 @@ uuid@3.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== +uuid@8.3.2, uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + uuid@^3.1.0, uuid@^3.2.1, uuid@^3.3.2, uuid@^3.3.3, uuid@^3.4.0: version "3.4.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" @@ -11774,11 +11786,6 @@ uuid@^7.0.3: resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b" integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg== -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - v8-compile-cache@^2.1.1: version "2.3.0" resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" diff --git a/web/components/Account/Application/Company/ApplicationCompanyListItem.tsx b/web/components/Account/Application/Company/ApplicationCompanyListItem.tsx index 772d1bea..64fb742a 100644 --- a/web/components/Account/Application/Company/ApplicationCompanyListItem.tsx +++ b/web/components/Account/Application/Company/ApplicationCompanyListItem.tsx @@ -9,6 +9,7 @@ import { client } from '~api/client-api' import useToast from '~hooks/useToast' import { useQueryClient } from 'react-query' import useCampaignContext from '~components/Campaign/useCampaignContext' +import { useRouter } from 'next/router' interface Props { application: Application @@ -19,12 +20,16 @@ const ApplicationCompanyListItem = ({ application }: Props) => { const { errorToast, successToast } = useToast() const { t } = useTranslation('application') const queryClient = useQueryClient() + const { query } = useRouter() const onDelete = async () => { try { await client.applications.applicationsDelete(application.id) successToast(t('company.delete_success')) - queryClient.refetchQueries(['myApplications']) + queryClient.refetchQueries([ + 'myApplications', + query?.disponibility as string, + ]) } catch (e) { errorToast(t('company.delete_error')) } diff --git a/web/components/Account/Application/Place/ApplicationPlaceFetcher.tsx b/web/components/Account/Application/Place/ApplicationPlaceFetcher.tsx index f3f95639..2458e898 100644 --- a/web/components/Account/Application/Place/ApplicationPlaceFetcher.tsx +++ b/web/components/Account/Application/Place/ApplicationPlaceFetcher.tsx @@ -12,7 +12,7 @@ const ApplicationPlaceFetcher = ({ searchParams }) => { refetch, isFetching, } = useMyApplications({ - name: ['myApplications', searchParams?.disponibility_eq as string], + name: ['myApplications', query?.disponibility as string], campaignId: query.campaign as string, searchParams: { ...searchParams, _sort: 'company.structureName:asc' }, options: { diff --git a/web/components/Account/Application/Place/ApplicationsHelpers/ConfirmSelections.tsx b/web/components/Account/Application/Place/ApplicationsHelpers/ConfirmSelections.tsx index c78c452c..61a30250 100644 --- a/web/components/Account/Application/Place/ApplicationsHelpers/ConfirmSelections.tsx +++ b/web/components/Account/Application/Place/ApplicationsHelpers/ConfirmSelections.tsx @@ -3,7 +3,7 @@ import PreselectionsWarning from 'public/assets/img/preselectionsWarning.svg' import { useTranslation } from 'next-i18next' import useToast from '~hooks/useToast' import { client } from '~api/client-api' -import { Application } from '~typings/api' +import { Application, Disponibility } from '~typings/api' import { useQueryClient } from 'react-query' import { useRouter } from 'next/router' @@ -17,24 +17,19 @@ const ConfirmSelections = ({ const preselections = preselectedApplications?.length const { t } = useTranslation('application') const { errorToast, successToast } = useToast() - + const { campaign } = query const confirmSelections = async () => { try { - await Promise.all( - preselectedApplications.map(async (application) => { - return client.applications.applicationsUpdate( - application.id, - // @ts-expect-error - { - ...application, - status: 'confirmed', - }, - ) - }), + await client.disponibilities.campaignConfirmCreate( + preselectedApplications[0]?.disponibility.id as string, + campaign as string, + //@ts-expect-error + preselectedApplications[0]?.disponibility, ) + queryClient.refetchQueries([ 'myApplications', - query.disponibility_eq as string, + query?.disponibility as string, ]) successToast(t('place.helper.confirm_success')) } catch (e) { diff --git a/web/components/Account/Application/Place/DetailDrawer/ApplicationPreselectButton.tsx b/web/components/Account/Application/Place/DetailDrawer/ApplicationPreselectButton.tsx index 2a55f636..a0c095c5 100644 --- a/web/components/Account/Application/Place/DetailDrawer/ApplicationPreselectButton.tsx +++ b/web/components/Account/Application/Place/DetailDrawer/ApplicationPreselectButton.tsx @@ -31,7 +31,7 @@ const ApplicationPreselectButton = ({ }) queryClient.refetchQueries([ 'myApplications', - query.disponibility_eq as string, + query?.disponibility as string, ]) successToast( t( diff --git a/web/components/Account/Application/Place/DisponibilitiesSelector/DisponibilitiesSelector.tsx b/web/components/Account/Application/Place/DisponibilitiesSelector/DisponibilitiesSelector.tsx index 6ebf699d..dda530a2 100644 --- a/web/components/Account/Application/Place/DisponibilitiesSelector/DisponibilitiesSelector.tsx +++ b/web/components/Account/Application/Place/DisponibilitiesSelector/DisponibilitiesSelector.tsx @@ -22,7 +22,7 @@ const DisponibilitiesSelector = () => { ) const { data: applications } = useMyApplications({ - name: ['myApplications', searchParams?.disponibility_eq as string], + name: ['myApplications', query?.disponibility as string], campaignId: query.campaign as string, searchParams: { ...searchParams, _sort: 'company.structureName:asc' }, options: { diff --git a/web/components/Account/Place/PlaceList.tsx b/web/components/Account/Place/AdminPlaceList.tsx similarity index 88% rename from web/components/Account/Place/PlaceList.tsx rename to web/components/Account/Place/AdminPlaceList.tsx index af0cc635..efcf9bce 100644 --- a/web/components/Account/Place/PlaceList.tsx +++ b/web/components/Account/Place/AdminPlaceList.tsx @@ -5,14 +5,15 @@ import Link from '~components/Link' import { Box, Button, Text, Flex, VStack } from '@chakra-ui/react' import { useTranslation } from 'next-i18next' import Add from 'public/assets/img/add.svg' -import PlaceListItem from '~components/Account/Place/ListItem/PlaceListItem' + import MigrationMessage from '~components/MigrationMessage' +import AdminPlaceListItem from '~components/Account/Place/ListItem/AdminPlaceListItem' interface Props { places: Espace[] } -const PlaceList = ({ places }: Props) => { +const AdminPlaceList = ({ places }: Props) => { const { t } = useTranslation('place') const [isVisible, setVisible] = useState(false) @@ -50,7 +51,7 @@ const PlaceList = ({ places }: Props) => { {places.map((place, index) => ( - { ) } -export default PlaceList +export default AdminPlaceList diff --git a/web/components/Account/Place/ListItem/PlaceListItem.tsx b/web/components/Account/Place/ListItem/AdminPlaceListItem.tsx similarity index 96% rename from web/components/Account/Place/ListItem/PlaceListItem.tsx rename to web/components/Account/Place/ListItem/AdminPlaceListItem.tsx index 076d2050..101cf9e3 100644 --- a/web/components/Account/Place/ListItem/PlaceListItem.tsx +++ b/web/components/Account/Place/ListItem/AdminPlaceListItem.tsx @@ -20,7 +20,7 @@ interface Props { isFirst?: boolean } -const PlaceListItem = ({ place, setVisible, isFirst }: Props) => { +const AdminPlaceListItem = ({ place, setVisible, isFirst }: Props) => { const isComplete = useIsComplete(place) const { currentCampaign, isCampaignPlace } = useCampaignContext() @@ -31,6 +31,7 @@ const PlaceListItem = ({ place, setVisible, isFirst }: Props) => { }, [isComplete]) const { campaignDisposNum } = useCampaignDispo(place?.disponibilities) + const showCampaignDisponibilities = (currentCampaign?.mode === 'disponibilities' || campaignDisposNum) && isCampaignPlace @@ -93,4 +94,4 @@ const PlaceListItem = ({ place, setVisible, isFirst }: Props) => { ) } -export default PlaceListItem +export default AdminPlaceListItem diff --git a/web/components/Campaign/CampaignProvider.tsx b/web/components/Campaign/CampaignProvider.tsx index 54515164..31f4d063 100644 --- a/web/components/Campaign/CampaignProvider.tsx +++ b/web/components/Campaign/CampaignProvider.tsx @@ -29,8 +29,7 @@ const CampaignProvider = ({ children }: ICampaignProvider) => { const activeCampaignsQueryParameters = useMemo( () => ({ - disponibility_start_lte: today.toISOString(), - preselection_end_gte: today.toISOString(), + is_active: true, _sort: 'id:desc', }), [], diff --git a/web/components/Place/PlaceGridCard.tsx b/web/components/Place/PlaceGridCard.tsx index 9d64cb96..8c5995fd 100644 --- a/web/components/Place/PlaceGridCard.tsx +++ b/web/components/Place/PlaceGridCard.tsx @@ -55,13 +55,15 @@ const PlaceGridCard = ({ place, searchParams, gridMode }: Props) => { const hasCampaignDispo = currentCampaign?.mode === 'applications' && !!campaignDisposNum + if (!place) return null + return ( { className="placeCard" role="group" h="100%" - id={`place-${place.id}`} + id={`place-${place?.id}`} > { overflow="hidden" pos="relative" > - {place.images.length > 0 ? ( - + {place?.images.length > 0 ? ( + ) : ( )} @@ -110,10 +112,10 @@ const PlaceGridCard = ({ place, searchParams, gridMode }: Props) => { > - {place.name} + {place?.name} - {place.users_permissions_user.structureName} + {place?.users_permissions_user?.structureName} {place?.disponibilities?.length === 0 && gridMode !== 'campaign' && ( @@ -161,7 +163,7 @@ const PlaceGridCard = ({ place, searchParams, gridMode }: Props) => { {t('card.city')} - {place.city?.name} + {place?.city?.name} @@ -182,7 +184,7 @@ const PlaceGridCard = ({ place, searchParams, gridMode }: Props) => { {t('card.dim')} - {`${place.roomLength} x ${place.width} m`} + {`${place?.roomLength} x ${place?.width} m`} diff --git a/web/pages/compte/espaces/index.tsx b/web/pages/compte/espaces/index.tsx index cb655eb9..2a53c2b0 100644 --- a/web/pages/compte/espaces/index.tsx +++ b/web/pages/compte/espaces/index.tsx @@ -3,7 +3,6 @@ import { SSRConfig } from 'next-i18next' import { GetServerSideProps } from 'next' import { serverSideTranslations } from 'next-i18next/serverSideTranslations' import InfoPlace from '~components/Account/Info/InfoPlace' -import PlaceList from '~components/Account/Place/PlaceList' import Loading from '~components/Loading' import { useMyPlaces } from '~hooks/useMyPlaces' import { UsersPermissionsUser } from '~typings/api' @@ -14,6 +13,7 @@ import PlacesAdminCampaignHelper from '~components/Campaign/Places/Admin/PlacesA import useCampaignContext from '~components/Campaign/useCampaignContext' import { format } from '~utils/date' import { Box } from '@chakra-ui/react' +import AdminPlaceList from '~components/Account/Place/AdminPlaceList' interface Props { user: UsersPermissionsUser } @@ -45,7 +45,7 @@ const AccountPlace = ({ user }: Props) => { {!places || places?.length === 0 ? ( ) : ( - + )} ) diff --git a/web/typings/api.ts b/web/typings/api.ts index 09f61e7f..2c67902c 100644 --- a/web/typings/api.ts +++ b/web/typings/api.ts @@ -127,6 +127,7 @@ export interface Application { chart_url?: string; applications?: string[]; preselections_max?: number; + is_active?: boolean; published_at?: string; created_by?: string; updated_by?: string; @@ -393,6 +394,7 @@ export interface Campaign { updated_by?: string; }[]; preselections_max?: number; + is_active?: boolean; /** @format date-time */ published_at?: string; @@ -436,6 +438,7 @@ export interface NewCampaign { chart_url?: string; applications?: string[]; preselections_max?: number; + is_active?: boolean; /** @format date-time */ published_at?: string; @@ -638,6 +641,7 @@ export interface Disponibility { chart_url?: string; applications?: string[]; preselections_max?: number; + is_active?: boolean; published_at?: string; created_by?: string; updated_by?: string; @@ -1993,6 +1997,21 @@ export namespace Disponibilities { export type RequestHeaders = {}; export type ResponseBody = Disponibility; } + /** + * @description Confirm a campaign for a disponibility + * @tags Disponibility + * @name CampaignConfirmCreate + * @summary Confirm Campaign + * @request POST:/disponibilities/{id}/campaign/{campaignId}/confirm + * @secure + */ + export namespace CampaignConfirmCreate { + export type RequestParams = { id: string; campaignId: string }; + export type RequestQuery = {}; + export type RequestBody = Disponibility; + export type RequestHeaders = {}; + export type ResponseBody = Disponibility; + } } export namespace Bulk { @@ -4382,6 +4401,26 @@ export class Api extends HttpClient + this.request({ + path: `/disponibilities/${id}/campaign/${campaignId}/confirm`, + method: "POST", + body: data, + secure: true, + type: ContentType.Json, + format: "json", + ...params, + }), }; bulk = { /**