ApplyURL in Carerix Templates
De standaard ApplyURL-instelling wordt gebruikt in sjablonen wanneer dezelfde URL-structuur nodig is voor meerdere sjablonen. De CxScript om de ApplyURL op te halen in sjablonen is:
<cx:write value="$activity.toPublication.applyUrl" />
Gebruik alleen aangepaste CxScript-code in sjablonen wanneer specifieke variaties of extra flexibiliteit nodig zijn voor bepaalde gevallen.
Configuratiestappen
ApplyURL vinden
Standaard Apply URL instellen
Ga naar 'Onderhoud' | 'Instellingen'
Zoek het 'Attributen en velden' blok en vind het "applyUrl" veld
De standaardinstelling is leeg, aangezien deze afhankelijk is van het domein van de klant
⚠️ Let op: Het is cruciaal om deze ApplyURL correct in te stellen om ervoor te zorgen dat de links in (email)sjablonen altijd goed werken en klanten en kandidaten geen dode links tegenkomen.
Implementatiemethoden
Aangepaste website (API-verbinding)
Voor websites die gebruik maken van Carerix GraphQL of REST API:
Formaat is flexibel op basis van vereisten
Coördineer URL-structuur met webontwikkelaar
Zorg voor correcte paginadoorverwijzing op de website
Voorbeeld van applyUrl
:
https://www.example.com/joborder/<cx:write value="$publication.publicationID"/>/<cx:write value="$publication.titleInformation.urlEncodedString"/>.html
WordPress Plugin voorbeeld
https://www.example.com/?pub_id=<cx:write value="$publication.publicationID"/>
Resulteert in: https://www.example.com/?pub_id=123
SRSx Website
https://www.example.com/vacature-<cx:write value="$publication.publicationID"/>
Resulteert in: https://www.example.com/vacature-123
Geavanceerd voorbeeld
Voor vacaturesites die verschillende URL-formaten vereisen, zoals Indeed:
<cx:if condition="publication.toMedium.code='indeed'">https://<cx:write value="$utilities.userDefaults.Customer" invoke="lowercaseString"/>.carerix.com/cxtools/jobdetails/<cx:write value="$publication.publicationID"/><cx:write value="$publication.publicationID"/> </cx:if> <cx:else>https://www.example.com/joborder-<cx:write value="$publication.publicationID"/></cx:else>
Belangrijke overwegingen
Correcte configuratie is cruciaal om dode links te voorkomen
De juiste implementatie (API, SRSx, WordPress)
Coördineer met webontwikkelaars voor correcte doorverwijzing
Test links voordat je vacatures uitstuurt