Skip to main content
GET
/
api
/
crm
/
crmboardcolumns
/
{id}
Get one CrmBoardColumn
curl --request GET \
  --url https://spaces.nexudus.com/api/crm/crmboardcolumns/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "CrmBoardId": 123,
  "CrmBoardName": "<string>",
  "CrmBoardBusinessId": 123,
  "CrmBoardBusinessName": "<string>",
  "CrmBoardBusinessCurrencyId": 123,
  "CrmBoardBusinessCurrencyCode": "<string>",
  "Name": "<string>",
  "Position": 123,
  "TourRequests": true,
  "ToursConfirmed": true,
  "TourCompleted": true,
  "WinOpportunity": true,
  "LoseOpportunity": true,
  "SignUps": true,
  "Bookings": true,
  "Cancellations": true,
  "ProposalsSent": true,
  "ProposalsAccepted": true,
  "DocumentsSigned": true,
  "EventRegistrations": true,
  "ContactMessages": true,
  "CannedResponseId": 123,
  "TaskListId": 123,
  "UseTaskListAsResponsible": true,
  "ActivateAccount": true,
  "DeleteAccount": true,
  "DeactivateAccount": true,
  "ConfirmTour": true,
  "ProductPurchased": true,
  "Products": [
    123
  ],
  "ResourceBooked": true,
  "Resources": [
    123
  ],
  "EventCheckins": true,
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}
A CrmBoardColumn represents a stage (step) within a CRM board. In the Nexudus UI these are called CRM Stages. Each stage has two main components:
  • Auto assignment — controls which opportunities are automatically added to this stage. Enable one of the boolean triggers (e.g. TourRequests, SignUps, Cancellations, ProductPurchased) to auto-populate the stage when the corresponding event occurs.
  • Auto actions — controls what happens when an opportunity reaches this stage. Assign a message macro (CannedResponseId), a task list (TaskListId), and/or an account action (ActivateAccount, DeactivateAccount, DeleteAccount, ConfirmTour, WinOpportunity, LoseOpportunity).
Stages are ordered by Position within their parent board. Opportunities move through stages either automatically (when conditions are met) or manually.

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the CrmBoardColumn-Read role.

Path Parameters

id
integer
required
The Id of the CrmBoardColumn record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/crm/crmboardcolumns/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

CrmBoardId
integer
Crm Board Id.
CrmBoardName
string
Parent CRM board name.
CrmBoardBusinessId
integer
Business ID of the parent CRM board.
CrmBoardBusinessName
string
Business name of the parent CRM board.
CrmBoardBusinessCurrencyId
integer
Currency ID of the parent CRM board’s business.
CrmBoardBusinessCurrencyCode
string
Currency code of the parent CRM board’s business.
Name
string
Stage name (e.g. ‘Contract Signature’, ‘Keys Handout’, ‘Office Tour’).
Position
integer
Display order of this stage within the board (0-based).
TourRequests
boolean
Auto-assign: add anyone completing a tour request form to this stage.
ToursConfirmed
boolean
Auto-assign: add anyone confirming a tour to this stage.
TourCompleted
boolean
Auto-assign: add anyone completing a tour to this stage.
WinOpportunity
boolean
Auto-action: mark opportunity as won when added to this stage.
LoseOpportunity
boolean
Auto-action: mark opportunity as lost when added to this stage.
SignUps
boolean
Auto-assign: add anyone completing a sign-up form to this stage.
Bookings
boolean
Auto-assign: add anyone placing a booking to this stage.
Cancellations
boolean
Auto-assign: add anyone cancelling their contract to this stage.
ProposalsSent
boolean
Auto-assign: add anyone sent a proposal to this stage.
ProposalsAccepted
boolean
Auto-assign: add anyone accepting a proposal to this stage.
DocumentsSigned
boolean
Auto-assign: add anyone e-signing a document to this stage.
EventRegistrations
boolean
Auto-assign: add anyone registering for an event to this stage.
ContactMessages
boolean
Auto-assign: add anyone sending a contact message to this stage.
CannedResponseId
integer
Auto-action: message macro to send when an opportunity reaches this stage.
TaskListId
integer
Auto-action: task list to create when an opportunity reaches this stage.
UseTaskListAsResponsible
boolean
Assign the task list’s own responsible users instead of the opportunity owner.
ActivateAccount
boolean
Auto-action: activate the account of opportunities added to this stage.
DeleteAccount
boolean
Auto-action: permanently delete the account and all customer details of opportunities added to this stage.
DeactivateAccount
boolean
Auto-action: deactivate the account of opportunities added to this stage.
ConfirmTour
boolean
Auto-action: confirm the tour of opportunities added to this stage.
ProductPurchased
boolean
Auto-assign: add anyone purchasing a specific product to this stage. Requires Products list.
Products
integer[]
Product IDs that trigger auto-assignment when ProductPurchased is enabled.
ResourceBooked
boolean
Auto-assign: add anyone placing a booking for a specific resource to this stage. Requires Resources list.
Resources
integer[]
Resource IDs that trigger auto-assignment when ResourceBooked is enabled.
EventCheckins
boolean
Auto-assign: add any event attendee who checks in for an event to this stage.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "CrmBoardId": 0,
  "CrmBoardName": null,
  "CrmBoardBusinessId": null,
  "CrmBoardBusinessName": null,
  "CrmBoardBusinessCurrencyId": null,
  "CrmBoardBusinessCurrencyCode": null,
  "Name": "",
  "Position": 0,
  "TourRequests": false,
  "ToursConfirmed": false,
  "TourCompleted": false,
  "WinOpportunity": false,
  "LoseOpportunity": false,
  "SignUps": false,
  "Bookings": false,
  "Cancellations": false,
  "ProposalsSent": false,
  "ProposalsAccepted": false,
  "DocumentsSigned": false,
  "EventRegistrations": false,
  "ContactMessages": false,
  "CannedResponseId": null,
  "TaskListId": null,
  "UseTaskListAsResponsible": false,
  "ActivateAccount": false,
  "DeleteAccount": false,
  "DeactivateAccount": false,
  "ConfirmTour": false,
  "ProductPurchased": false,
  "Products": [],
  "ResourceBooked": false,
  "Resources": [],
  "EventCheckins": false,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "CrmBoardColumn Example",
  "LocalizationDetails": null,
  "CustomFields": null
}