Search Results for

    Show / Hide Table of Contents

    WebApiResultSet

    Has a 'value' array of WebApiRecord.

    For fetch xml queries '@Microsoft.Dynamics.CRM.fetchxmlpagingcookie' can be used to get the next page of records.

    For standard WebApi queries, '@odata.nextLink' can be passed to client.get to retrieve the next page of records.

    interface WebApiResultSet {
        '@odata.context': string;
        '@odata.nextLink'?: string;
        '@Microsoft.Dynamics.CRM.fetchxmlpagingcookie'?: string;
        value: WebApiRecord[];
    }
    
    In This Article
    Back to top Hitachi Solutions JS Library