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/

Good to know

Email & SMS

Operations

Notification

Operations

Archives

Operations

Email & SMS

Operations

Notification

Operations

Display

Operations

Email & SMS

Operations

Notification

Operations

Workflow

Operations

Campaign

Operations

Campaign

Operations

Contact

Operations

Field

Operations

Enumeration

Operations

Segment

Operations

Import

Operations

Subscription

Operations

Contact

Operations

Webtask

Operations

Compilable

Operations

Mobile Application

Operations

Category

Operations

Marketing Pressure

Operations

Retrieve all topics

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": "2025-04-01T12:40:41.754Z", "modification": "2025-04-01T12:40:41.754Z" }, "createdBy": "Connected user", "modifiedBy": "Connected user" }, { "id": "aae42f42-3759-4e80-94c5-e47daab1487c", "label": "Singles Day", "description": "Singles Day", "stamp": { "creation": "2025-04-01T12:40:41.754Z", "modification": "2025-04-01T12:40:41.754Z" }, "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

Set 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.

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