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.
Attached is the SAMPLE JSON file
"subject": "Unable to fetch mails",
"description": "I am unable to fetch mails from the mail server",
"impact_details": "Routine tasks are pending due to mail server problem",
"content": "Mail Fetching Server problem has been fixed"
"name": "Sample Account",
Example :
Also please check our API documentation bundled in the application under Admin -> API -> Documentation -> You can try your calls also to it.
New to ADSelfService Plus?
Related Articles
Close a request using API - Postman example
INPUT_DATA Value as follows {"operation": {"details": { "closeAccepted": "Accepted", "closeComment": "The closing comment" }}} PUT API example - ...
Request Merge API using Postman.
Currently, the Merge API is not included in our documentation. However, I have tested the following API in Postman, and it is working fine on our end. API used: /api/v3/requests/<request_id>/merge_requests {"merge_requests":[{"id":"1"},{"id":"2"}]} ...
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
Add Attachment API assistance for other tools
Our sample html to test Add Attachment API works well. However many customers are having trouble converting it to code/other tools (Powershell, python, Postman, Curl). Hence we are posting this article to get it using Postman for other tools. We can ...
Reply a request through v3 API (Postman)
The API documentation for replying a request is under Admin > API Documentation > Request > Add notification Syntax of the URL: http(or https)://<servername>:<portnumber>/api/v3/requests/<Request ID>/notifications?TECHNICIAN_KEY=<API Key> Call: Post ...