Configuration Template
This endpoint is used to fetch all the configuration template in the current organization
Items Per Page
Page Number
Sorting Order
Sorting Key
GET /ux/nccm/configuration_template/?items_per_page=1&page=1 HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
]
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
true
POST /ux/nccm/configuration_template/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 605
{
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
GET /ux/nccm/configuration_template/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
true
PUT /ux/nccm/configuration_template/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 605
{
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
No response body
No content
DELETE /ux/nccm/configuration_template/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No response body
No content
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
true
POST /ux/nccm/configuration_template/create-csv/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 605
{
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
true
POST /ux/nccm/configuration_template/csv_cols/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 605
{
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
GET /ux/nccm/configuration_template/download_csv/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
GET /ux/nccm/configuration_template/download_xls/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
GET /ux/nccm/configuration_template/file_details/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
true
POST /ux/nccm/configuration_template/is_disabled/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 605
{
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
true
POST /ux/nccm/configuration_template/is_enabled/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 605
{
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
true
POST /ux/nccm/configuration_template/multidelete/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 605
{
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
GET /ux/nccm/configuration_template/options/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
true
POST /ux/nccm/configuration_template/production_ready/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 605
{
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
true
POST /ux/nccm/configuration_template/toggle-template-quickadd/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 605
{
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
true
POST /ux/nccm/configuration_template/upload-csv/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 605
{
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}
{
"id": "text",
"created_by_name": "text",
"modified_by_name": "text",
"status": "text",
"is_private": "text",
"user_list": "text",
"teams_list": "text",
"configuration_template_visibility": "text",
"simple_script_exe_visibility": "text",
"created_by_profile": "text",
"modified_by_profile": "text",
"template_id": "text",
"organization": "text",
"name": "text",
"description": "text",
"vendor": "text",
"os_name": "text",
"model": "text",
"series": "text",
"template_type": "text",
"script_type": 1,
"is_approval_required": true,
"is_production_enabled": true,
"quick_add": true,
"script_commands": "text",
"script_profile_commands": "text",
"configuration_store": "text",
"shell": "text",
"last_update_time": "2025-08-31T16:03:07.835Z",
"template_group": "text",
"created_by": "text",
"modified_by": "text",
"creation_time": "2025-08-31T16:03:07.835Z",
"is_deleted": true,
"is_enabled": true,
"assigned_users": [],
"assigned_group": [],
"creator": "text"
}