Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Additional configuration APIs

These ServiceNow CPQ configuration APIs let you retrieve or delete an existing configuration. They complement the runtime APIs and are useful for viewing full configuration details and for removing configurations no longer needed. Use them alongside the standard create, update, reconfigure, and BOM APIs to support end-to-end configuration workflows.

This article is a followup to Runtime APIs. For more information on authentication and setup,see that article.

These API endpoints to get a configuration and delete a configuration from ServiceNow CPQ are included for completeness.

Get configuration

ServiceNow CPQ configurations can be retrieved from the ServiceNow CPQ servers by sending a GET request, which will return the entire configuration in the response. If you only need the product data of the outputs, consider using one of the GET BOM API calls.

Note: This does not load a configuration into the ServiceNow CPQ rules engine for updates to fields and re-running of rules. If you need to make updates to an existing configuration, use the Reconfigure API call.

HTTP methodGET
URLhttps://<tenant>.<sector>.cpq/api/<uuid>
Path parameters<uuid>
Query parametersN/A

Sample URL:

https://dev1.test.cpq/api/71e62fe7-e59b-4a91-94af-64718e0d4eae

Sample response:

{
"fields": [<ARRAY OF FIELD OBJECTS>],
"uuid": "08176434-9b1e-4fc8-b2c4-8aba2c35fda3", "revision": 0,
"relatedChanges": [
{
"key": "products",
"type": "PRODUCT"
}
],
"valid": true, "messages": [], "productChange": true,
"products": [<ARRAY OF PRODUCTS IN CONFIGURATION>],
"total": 30,
"layouts": [<ARRAY OF LAYOUTS>]
}

Delete configuration

ServiceNow CPQ configurations can be deleted, but it is not typically necessary. This API deletes the configuration from ServiceNow CPQ and will not be available for future retrieval of the configuration, BOM, or updates to the configuration.

Note: This API will only delete the configuration from the ServiceNow CPQ servers. If the configuration has been persisted in another application (i.e. Quotelines have been created in Salesforce, Orders have been placed in Ecommerce), no changes will be made to that data.

HTTP methodDELETE
URLhttps://<tenant>.<sector>.cpq/api/<uuid>
Path parameters<uuid>
Query parametersN/A

Sample URL:

https://dev1.test.cpq/api/71e62fe7-e59b-4a91-94af-64718e0d4eae

Sample response:

{}

Sample use cases

A new customer comes to a website, configures a product, and checks out.

  1. Start a new configuration → Create New Configuration API call
  2. Make updates to the configuration → Update Configuration API call
  3. Save the final configuration back to ServiceNow CPQ → Save Configuration API call

A customer returns and wants to place an order for a product similar to one that they have purchased before.

  1. Perform a reconfiguration, using an existing ServiceNow CPQ Configuration Id → Reconfigure API Call
  2. Save back to ServiceNow CPQ → Save Configuration API call

An order for a complex manufactured product is placed, and the engineering team needs to know what parts they need and which sub-assemblies to build.

Retrieve the “Manufacturing” bill of materials for an existing configuration → Get BOM API call.