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.
- Retrieve the total number of targets
Retrieve bounced targets
Retrieve notifications routed by target (experimental)
Retrieve all segments associated with a target
Add a target to a segment
Remove a target from a segment
Retrieve a target (experimental)
Update a target
Delete a target
Retrieve a target (experimental)
Update a target
Create a target
Delete Targets by bulk
Put the target in redlist's mail
Put the target in redlist's sms
get the targets in redlist mail
get the targets in redlist sms
Update a bounce of the target
Delete a bounce of a target
Resolve a list of target identities into a Footprint representation
Retrieve the total number...
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
- Production serverhttps://api-cm.np6.com/targets
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://api-cm.np6.com/targets \
-H 'Content-Type: application/json' \
-H 'X-Key: string' \
-d '{
"type": "segment"
}'- Production serverhttps://api-cm.np6.com/targets/count
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api-cm.np6.com/targets/countResponse
application/json
{ "targetsCount": 0 }
Bodyapplication/json
The origin of the redlist
Unknown type : 0 Listed by API : 1 Listed by imports : 2 Listed by form : 3 Listed in unsubscribe redlist : 4 Listed in complaint : 5 Listed in SMS Stop : 6 Listed in SMS Blacklist : 7 Listed in SMS admnistrative : 8 Listed in SMS specific : 9
Enum0123456789
- Production serverhttps://api-cm.np6.com/targets/{id}/redlist/mail
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api-cm.np6.com/targets/{id}/redlist/mail' \
-H 'Content-Type: application/json' \
-H 'X-Key: string' \
-d '{
"id": "string",
"timestamp": "2019-08-24T14:15:22Z",
"origin": 0,
"detail": {}
}'