Change
This endpoint is used to fetch all the change in the current organization
Items Per Page
Page Number
Sorting Order
Sorting Key
GET /ux/sd/change/change/?items_per_page=1&page=1 HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]
This endpoint is used to save a new change for the current organization
No response body
No content
POST /ux/sd/change/change/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 914
{
"summary": "VPN Issue",
"description": "",
"catalogue": "",
"impact_service": "",
"impact_service_name": "service1",
"service_classification": "",
"service_classification_name": "",
"state": "Open",
"state_id": 1,
"status": "New",
"status_id": 1,
"urgency_id": 3,
"urgency": "Low",
"priority_id": 5,
"priority": "Very Low",
"impact": "Department",
"impact_id": 3,
"change_source": {
"id": 1,
"name": "Web"
},
"resolution_type": "",
"change_type": {
"id": 1,
"name": "Change",
"prefix": "REQ"
},
"requester_id": "",
"requester_name": "Test req",
"requester_email": "[email protected]",
"requester_phone": "7778889999",
"reporter_name": "",
"reporter_email": "",
"reporter_phone": "",
"watcher": "",
"hold_config": {},
"support_group": "",
"assignee": "",
"escalation": {},
"tag": [],
"assets": [],
"config": {},
"reference": {},
"template_info": {},
"closure_info": {},
"approval_config": {},
"custom_field": [
{}
],
"attachment": {},
"api_link": {},
"lock_config": {},
"field_service_config": {},
"closure_note": ""
}
No response body
No content
This endpoint is used to fetch a request details in the current organization
GET /ux/sd/change/change/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
This endpoint is used to edit an existing change for the current organization
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.
PUT /ux/sd/change/change/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 933
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
This endpoint is used to delete an existing change for the current organization
No response body
No content
DELETE /ux/sd/change/change/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No response body
No content
This endpoint is used to add new attachments.
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.
POST /ux/sd/change/change/add-attachment/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 933
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
This endpoint is used to fetch the attachments.
GET /ux/sd/change/change/attachment/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request to be viewed or edited.
GET /ux/sd/change/change/change-data/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request to be viewed or edited.
GET /ux/sd/change/change/change-impact/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request to be viewed or edited.
GET /ux/sd/change/change/change-risk/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request to be viewed or edited.
GET /ux/sd/change/change/change-task/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request 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.
POST /ux/sd/change/change/delete_change/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 933
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
This endpoint is used to fetch the history.
GET /ux/sd/change/change/history/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
function to get impact list :param request: :return: object
GET /ux/sd/change/change/impact-list/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request to be viewed or edited.
GET /ux/sd/change/change/options/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
This endpoint is used to get the rich text data.
GET /ux/sd/change/change/process-rich-text/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request to be viewed or edited.
GET /ux/sd/change/change/requester_search/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request to be viewed or edited.
GET /ux/sd/change/change/risk-list/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request to be viewed or edited.
GET /ux/sd/change/change/risk_assessment_completion/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request 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.
POST /ux/sd/change/change/risk_assessment_completion/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 933
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request 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.
POST /ux/sd/change/change/save-change-impact/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 933
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request 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.
POST /ux/sd/change/change/save-change-risk/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 933
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request 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.
POST /ux/sd/change/change/save-change-risk-assessment/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 933
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request 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.
POST /ux/sd/change/change/save-change-task/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 933
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
This endpoint is used to save the rich text data.
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.
POST /ux/sd/change/change/save-rich-text/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 933
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request to be viewed or edited.
GET /ux/sd/change/change/task-list/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request 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.
POST /ux/sd/change/change/workflow_options_map/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 933
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Request to be viewed or edited.
GET /ux/sd/change/change/workflow_status/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"change_id": "text",
"display_id": "text",
"is_archive": true,
"unread_mail": true,
"requester": {
"keys": "text",
"values": "text",
"queryparam": true
},
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"reporter_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"basic_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"impacted_asset": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"close_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_watcher": [],
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"tag": [],
"kb": [],
"custom_field_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"creation_time": "2025-08-31T16:08:45.818Z",
"created_by_id": "text",
"last_update_time": "2025-08-31T16:08:45.818Z",
"updated_by_id": "text",
"change_manager": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T16:08:45.818Z",
"is_change_ci_lock": 1,
"location": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
API endpoint that allows Incident to be viewed or edited.
No response body
No content
GET /ux/sd/change/conversation/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No response body
No content
API endpoint that allows Incident to be viewed or edited.
No response body
No content
POST /ux/sd/change/conversation/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No response body
No content
API endpoint that allows Incident to be viewed or edited.
No response body
No content
GET /ux/sd/change/conversation/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No response body
No content
API endpoint that allows Incident to be viewed or edited.
No response body
No content
PUT /ux/sd/change/conversation/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No response body
No content
API endpoint that allows Incident to be viewed or edited.
No response body
No content
DELETE /ux/sd/change/conversation/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No response body
No content