DAXTRACODE: DaXtra Code
A DaXtra source code mapping external candidate/vacancy sources to internal tracking codes for recruitment analytics.
DAXTRACODE definition shipped with DemandFlow. Administrators can add, remove, rename, or re-type fields, change which ones are required, and alter the layout from the Definitions screen in Settings. Your tenant's current schema may differ from what is shown here. To read the current definition at any time, GET the DEFINITION object whose id matches DAXTRACODE.Entity properties
| Property | Value |
|---|---|
| Entity code | DAXTRACODE |
| Display name | DaXtra Code |
| Plural | DaXtra Codes |
| Level | 250 |
Use cases
DAXTRACODE stores source codes for the DaXtra integration, a recruitment technology platform that aggregates candidates and vacancies from multiple job boards and sources. Each record maps a DaXtra-specific code (dcode) to an internal code and a human-readable name, enabling source tracking analytics (e.g. which job boards produce the best candidates). The isVacancy and isCandidate checkboxes classify whether a source applies to vacancy sourcing, candidate sourcing, or both, which controls where the source appears in the UI. PPL (Contact) records reference this entity via the source objectLookup, linking each contact to the channel through which they were sourced. The comments field captures notes about the source's effectiveness or configuration details. This entity supports recruitment ROI analysis by tracking sourcing channel performance.
Fields
DaXtra Code
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
dcode | text | Yes | DaXtra code. |
code | text | Code. | |
comments | text (multi-line) | Comments. | |
isVacancy | boolean | Vacancy source. | |
isCandidate | boolean | Candidate source. |
Relationships
- No declared relationships in the default definition.
Creating a DaXtra Code via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "DAXTRACODE",
"level": 250,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example name",
"dcode": "Example value",
"code": "Example value",
"comments": "Example value"
}
Listing DaXtra Codes records
GET /v1/entities/DAXTRACODE/SUB:<your-sub-id>