Products
Create Product
Create a new Product record.
POST
Create Product
A Product represents an item that can be sold to customers. Products can be sold via contracts (Documentation Index
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
ContractProduct entity), added to bookings (BookingProduct entity), or purchased directly (CoworkerProduct entity).
Products support both one-off sales and recurring charges. Recurring charges can be set to daily, weekly, monthly, or yearly frequencies, or charged every time a contract is invoiced. For invoice-linked recurring charges, prefer using ContractProduct to associate the sale directly with a specific contract rather than relying on the customer’s MainContract.
Use AvailableAs to control whether a product can be sold as a one-off purchase, a recurring charge, or both. The SystemProductType field categorises the product (e.g. day pass, credit bundle, booking product, stationery, or other).
Products can optionally track stock levels, be restricted to specific pricing plans (tariffs), and be limited to members or contacts only.
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 Product-Create role.Enums
eProductType — SystemProductType values
eProductType — SystemProductType values
| Value | Name |
|---|---|
| 0 | None |
| 1 | DayPass |
| 2 | CreditBundle |
| 3 | Stationery |
| 4 | BookingFeature |
| 5 | BookingProducts |
| 99 | Other |
eRecurrentProductOptions — AvailableAs values
eRecurrentProductOptions — AvailableAs values
| Value | Name |
|---|---|
| 0 | None |
| 1 | RecurrentOrOneOff |
| 2 | OnlyRecurrent |
| 3 | OnlyOneOff |
Request Body
Required Fields
ID of the business linked to this record.
Product name.
Category of the product: DayPass, CreditBundle, Stationery, BookingFeature, BookingProducts, or Other.
Product description.
Display order. Defaults to
0.Product price.
ID of the currency linked to this record.
Controls whether the product can be sold as a one-off purchase, a recurring charge, or both (RecurrentOrOneOff, OnlyRecurrent, OnlyOneOff).
Optional Fields
Custom text shown on the invoice line instead of the product name.
SKU code.
Comma-separated tags for categorising and filtering.
Whether the product is visible to customers on the members portal and mobile app. Defaults to
true.Whether the product is visible to customers in the NexKiosk app.
Whether this product is available to any AI channels (Email, Chat or WhatsApp) for recommendations for day passes;.
Additional notes about the product that are included in AI channel recommendations and responses to provide more context to customers.
Whether to show the price of this product in AI channel recommendations and responses based on users’ budget preferences.
Override price to show in AI channel recommendations and responses based on users’ budget preferences (if not set, the regular Price value is used).
Sync to Square Point of Sale.
ID of the tax rate linked to this record.
ID of the reduced tax rate linked to this record.
ID of the exempt tax rate linked to this record.
ID of the financial account linked to this record.
Restrict purchase to contacts (customers without an active contract).
Restrict purchase to customers with an active contract (members).
List of tariffs linked to this record.
Whether the product is archived. Archived products cannot be sold but existing charges remain active.
Mark the product as featured or highlighted.
Enable stock tracking for this product. When enabled, each sale reduces the stock count.
Allow sales to continue even when stock reaches zero.
Stock level at which a low-stock alert is triggered.
Whether to pro-rate the price when the product is added or removed part-way through a billing period.
URL of a new file to upload as the image.
Set to true to remove the current image file.
Whether to invoice the customer directly rather than their company or team.
Sync to NexKiosk.
Automatically create a delivery record for the customer when this product is purchased.
Code Examples
Response
200
HTTP status code.
200 on success.A human-readable message confirming the creation.
Contains the
Id of the newly created record.true if the product was created successfully.null on success.Example Response
400
A summary of the validation error(s), in the format
PropertyName: error message.null on validation failure.Array of validation errors.
false when the request fails validation.Example Response
Create Product