The compilable's id to update
- Delete a compilable
Retrieve all compilables
Create a compilable
Retrieve the specified compilable
Update a compilable
Update a compilable
Retrieve the specified compilable flaws
Duplicate the specified compilable
Execute the specified compilable
Preview the specified compilable using the specified configuration
Delete a compilable
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
Bodyapplication/json
Data used to update the compilable
Defines the stamp informations of the compilable
Defines the underlying scriptable value describing the compilable
- Production serverhttps://api-cm.np6.com/scripting/compilables/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api-cm.np6.com/scripting/compilables/{id}' \
-H 'Content-Type: application/json' \
-H 'X-Key: string' \
-d '{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"description": "string",
"state": "string",
"stamp": {
"creation": "2019-08-24T14:15:22Z",
"modification": "2019-08-24T14:15:22Z"
},
"value": {
"type": "string"
}
}'Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "description": "string", "state": "string", "stamp": { "creation": "2019-08-24T14:15:22Z", "modification": "2019-08-24T14:15:22Z" }, "value": { "type": "string" } }
- Production serverhttps://api-cm.np6.com/scripting/compilables/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api-cm.np6.com/scripting/compilables/{id}' \
-H 'X-Key: string'- Production serverhttps://api-cm.np6.com/scripting/compilables/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://api-cm.np6.com/scripting/compilables/{id}' \
-H 'X-Key: string'Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "description": "string", "state": "string", "stamp": { "creation": "2019-08-24T14:15:22Z", "modification": "2019-08-24T14:15:22Z" }, "value": { "type": "string" } }