Search code examples
apiservicenow

Create a task in a change request via the service now API?


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.


Solution

  • 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"}