Skip to content
Release: Australia · Updated: 2025-09-26 · Official documentation · View source

Sales CRM Pricing API

The Sales CRM Pricing API provides methods to calculate prices for transaction lines containing products.

The Sales CRM Pricing is used to calculate prices for transaction lines containing products. It also supports computing rollups at the transaction header level by aggregating values from all lines. In addition, the Pricing Engine can be used within a configurator to determine the price of products as they are selected or configured.

The caller has flexibility through various controls to specify whether the engine should compute:

  • Prices only
  • Costs
  • Adjustments (discounts, markup)
  • Rollups at line and/or header level

This API belongs to the sn_csm_pricing namespace and requires the [sn_csm_pricing.pricing_integrator] role.

Prerequisite: You need to set up a product offering that consists of these properties:

  • Required:
    • Product offering characteristics
    • Unit of measure
    • Price list
    • Price list lines
    • Attribute adjustments
  • Optional
    • Context variables
    • Rule matrices

External ID support

With external ID resolution, you can use your own identifiers or codes for selected reference fields instead of a ServiceNow sys_id. For example, you might be integrating with other CRM or ERP systems that do not have a ServiceNow sys_id for its objects. You can use external codes for the following reference fields, including but not limited to:

  • Product offering
  • Price list
  • Unit of measure

Note: External ID resolution applies to REST API pricing requests only and does not affect UI-based flows. Pricing execution can use internal system IDs, external IDs, or a combination of both IDs in pricing requests as configured in the context variable mapping.

Context variable configuration and mapping

As an admin, before submitting a REST API pricing request, create the context variables that define the reference fields for external IDs or codes that are participating in external ID resolution. You also add the external IDs or codes to the reference tables called by pricing requests. For details on defining context variables, see External ID support in Sales CRM Pricing API.

How external IDs work in pricing requests

Request intake

The caller sends a Pricing REST API request that can include:

  • External IDs or codes
  • ServiceNow sys_ids
  • A combination of both

Requests must include ("use_external_code": true) in the settings object to enable external code resolution.

Parent Topic:REST API reference