Update - CMDB API - using criteria through postman
Params :
Body - form-data - Refer to Input_data values from our
API documentation in the application (Admin -> API - Documentation) -> CMDP - Update CI
{"mode":"full","isActive":false}
Related Articles
Add request API Using Postman
You need to send the technician_key and format in Params and the data in Body. Also, you have to encode the body and send it. Please refer to the below for your reference which is sent using postman. Example : ...
Close a request using API - Postman example
INPUT_DATA Value as follows {"operation": {"details": { "closeAccepted": "Accepted", "closeComment": "The closing comment" }}} PUT API example ...
Add attachments using API
Attachment cannot be added when a request is created, it can be only added after request creation URL : http://localhost:8080/api/v3/attachments?TECHNICIAN_KEY=XXXXXXXXX Body
CMDB API - Add CI along with users name
<?xml version="1.0" encoding="UTF-8"?> <API version="1.0" locale="en"> <records> <record> <parameter> <name>CI Name</name> <value>saharsh</value> </parameter> <parameter> ...
API to GET Requests in POSTMAN when trying to input data
When you're using GET method and trying to input data, the JSON data has to be encoded like below: %7B%22operation%22%3A%7B%22details%22%3A%7B%22from%22%3A%220%22%2C%22limit%22%3A%2250%22%2C%22filterby%22%3A%22All_Requests%22%7D%7D%7D The same can be ...