Home > Software engineering >  Create a task in a change request via the service now API?
Create a task in a change request via the service now API?

Time:12-04

Does anyone know if it's possible to create individual tasks in a change request via the ServiceNow API? I see where I can create a change itself, but struggling with creating individual tasks in said change request.

CodePudding user response:

Request:

POST https://my_instance.service-now.com/api/now/table/change_task

Body:

{"change_request":"{CHANGE_SYS_ID}","short_description":"Short description goes here","description":"Description goes here"}
  • Related