Skip to content

NP6 API Reference (8.1.0)

This documentation provides comprehensive access to the full range of functionalities offered by the NP6 platform through a standardized RESTful interface.

If you have any questions or need assistance, please contact our support team at https://support.chapsvision.com.

Languages
Servers
Production server
https://api-cm.np6.com
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations

Request

Headers
X-Keystringrequired

A unique API key used to authenticate requests to the NP6 platform. This key must be included in every API call to validate the identity and permissions of the client. Keep your API key secure and do not expose it in public code or logs.

curl -i -X GET \
  https://api-cm.np6.com/marketing/pressure/topics \
  -H 'X-Key: string'

Responses

A list of topic

Bodyapplication/jsonArray [
idstring(uuid)

Defines the id of the topic

labelstring

Defines the name of the topic

descriptionstring

Defines the description of the topic

stampobject

Defines the stamp informations of the topic (creation and modification date)

creationstring(date-time)

Defines a date, used to store the creation date of a related data

modificationstring(date-time)

Defines a date, used to store the last modification date of a related data

createdBystring

Defines the created by identity

modifiedBystring

Defines the modified by identity

]
Response
application/json
[ { "id": "aae42f42-3759-4e80-94c5-e47daab1487b", "label": "Black friday", "description": "Black friday", "stamp": { "creation": "2026-02-05T09:27:59.755Z", "modification": "2026-02-05T09:27:59.755Z" }, "createdBy": "Connected user", "modifiedBy": "Connected user" }, { "id": "aae42f42-3759-4e80-94c5-e47daab1487c", "label": "Singles Day", "description": "Singles Day", "stamp": { "creation": "2026-02-05T09:27:59.755Z", "modification": "2026-02-05T09:27:59.755Z" }, "createdBy": "Connected user", "modifiedBy": "Connected user" } ]

Retrieve the mandatory topic option

Request

Headers
X-Keystringrequired

A unique API key used to authenticate requests to the NP6 platform. This key must be included in every API call to validate the identity and permissions of the client. Keep your API key secure and do not expose it in public code or logs.

curl -i -X GET \
  https://api-cm.np6.com/settings/marketing/pressure/topic \
  -H 'X-Key: string'

Responses

The value of the mandatory topic option

Bodyapplication/json
boolean
Response
application/json
true

Request

Headers
X-Keystringrequired

A unique API key used to authenticate requests to the NP6 platform. This key must be included in every API call to validate the identity and permissions of the client. Keep your API key secure and do not expose it in public code or logs.

Bodyapplication/json

Value of the option

boolean
curl -i -X PUT \
  https://api-cm.np6.com/settings/marketing/pressure/topic \
  -H 'Content-Type: application/json' \
  -H 'X-Key: string' \
  -d '{}'

Responses

The value of the mandatory topic option

Bodyapplication/json
boolean
Response
application/json
true