How does a user create an Incident ticket through the REST API in BMC Remedy AR System Server?
|
To create a new Incident ticket through the REST API, the request must be submitted to the HPD:IncidentInterface_Create form. The HPD:Help Desk form must not be used for direct creation. Ensure that REST API is configured correctly on the AR System Server and that an authentication token is generated for the login account. For details about REST API configuration, refer to the corresponding Knowledge Article.
Submit a POST request to the following endpoint: http/https://<servername>:<port>/api/arsys/v1/entry/HPD:IncidentInterface_Create?fields=values(Request ID, Incident Number, Urgency, Priority)
Using AR-JWT Authentication Headers: Using OAuth2 Authentication Headers: Content-Type: application/json
A. Create an Incident (without assignment) Create Incident using rest (without assignment of the case while creating):-
{ "Description":"Test111", }
B. Create an Incident and Assign It to a Specific Group { Replace all placeholder values with values that are appropriate for the environment.
If an error occurs during submission:
Related Information:- Check this article to know more about REST API: For more information check below documents. Calling third-party REST APIs in a Remedy application Integrating ITSM with third-party applications by using the REST API
|