@odata.nextLink

I built an integration using Microsoft Graph so I'm limited in retrieving 100 records per request. I know I need use the @odata.nextLink in the next GET call. In Power Automate I just loop through the calls using the @odata.nextLink and append each set of results in a array variable. How do I do this in Appian?

Thank you,

Americo

  Discussion posts and replies are publicly visible

Parents Reply
  • Below is the format  of the output response from the integration rule!MC_SP_GetPresbyterateSharepointList which is call to a sharepoint list. The Odata link is in the body section of output.

    Then built expression rule with the uri as rule input. Since odata prefixed with @ sign need to enclose with ' '

    rule!MC_SP_GetPresbyterateSharepointList(ri!uri).result.body.'@odata.nextLink'

Children