Is there a way to search/join multiple tables within one URI/call using PowerShell?
I'm trying to query the task table for any open TASK items and 'GET' back certain field values. The problem is that there are custom fields on the TASK item which are linked to other tables not on the TASK record/TASK table.
URI
$task = "https://instance.service-now.com/api/now/table/sc_task"
Adding filters to the URI
$task = "https://instance.service-now.com/api/now/table/sc_task?sysparm_query=yadadada"
..but I'm looking to be able to join multiple tables so I can "dot walk" to other tables other than sc_task.
I've been having a lot of trouble so any help will be much appreciated!
Thank you!