Property | Description |
---|---|
Records per Call | The number of records to fetch per call. |
Limit | The total number of records to return across all calls. |
First Offset | The offset value to provide in the first call. |
End of Data Indicator | This property specifies how the REST service reports that the page is the final page. This property has the following possible values: • Number of Records - A field in the response, or in a header value, provides the total number of records being returned. • Is Last - A boolean field in the response, or in a header value, specifies that the current page is the last page. • Has More - A boolean field in the response, or in a header value, specifies that the current page is not the last page. • No Indicator - Nothing in the data indicates that a page is the last page. Instead, an empty or missing array implies there is no more data. |
End of Data Location | Location in response as where to find the total number of records. Select end of data location from below: • Header • Body |
Number of Records Path | Header name or the path for which the total number of records are found. This property is applicable only when the Pagination Type is set to Offset and End of Data Indicator is set to Number of Records. See JSON Paths to specify path. |
Is Last Path | Header name or the path where the is last indicator is found. This is a boolean field or header that has the value of true to indicate that the last page has been reached See JSON Paths to specify path. |
Has More Path | Header name or the path where the has more indicator is found. This is a boolean field or header that has the value of true to indicate that there are more pages to be fetched. See JSON Paths to specify path. |
Records Path | This property provides the path where the array of records is found in the data. If the path does not exist, or contains an empty array, this signals that there is no more data. This property is applicable when the End of Data Indicator is set to No Indicator. See JSON Paths to specify path. |
Property | Description |
---|---|
Records per Call | The number of records to fetch per call. |
First Page | The page value to provide in the first call. |
Number of Pages Location | Location where to find total number of pages. Select number of pages location from below: • Header • Body |
End of Data Indicator | This property specifies how the REST service reports that the page is the final page. This property has the following possible values: • Number of Pages - A field in the response, or in a header value, provides the total number of pages being returned. • Is Last - A boolean field in the response, or in a header value, specifies that the current page is the last page. • Has More - A boolean field in the response, or in a header value, specifies that the current page is not the last page. • No Indicator - Nothing in the data indicates that a page is the last page. Instead, an empty or missing array implies there is no more data. |
Number of Pages Path | Header name or the path for which the URL for the next page is found. This property is applicable only when the Pagination Type is set to Page and End of Data Indicator is set to Number of Pages. See JSON Paths to specify path. |
Is Last Path | Header name or the path where the is last indicator is found. This is a boolean field or header that has the value of true to indicate that the last page has been reached. See JSON Paths to specify path. |
Has More Path | Header name or the path where the has more indicator is found. This is a boolean field or header that has the value of true to indicate that there are more pages to be fetched. See JSON Paths to specify path. |
Records Path | This property provides the path where the array of records is found in the data. If the path does not exist, or contains an empty array, this signals that there is no more data. This property is applicable when the End of Data Indicator is set to No Indicator. See JSON Paths to specify path. |
Property | Description |
---|---|
Next Page Link Location | The name of the header or the path in the body for the field containing the URL for the next page. Select the next page link location from below: • Header • Body |
Next Page Link Path | Header name or the path for which the URL for the next page is found. See JSON Paths to specify path. |
Property | Description |
---|---|
Next Token Location | The name of the header or the path in the body for the field containing the token for the next page. Select the next token location from below: • Header • Body |
Next Token Path | Header name or the path for which the token for the next page is found. See JSON Paths to specify path. |
Pagination Token Location | Location where the pagination token for subsequent calls would be configured. Select the pagination token location from below: • Parameter • Header |
Pagination Token name | Name of the pagination token to be passed in the next subsequent calls. |
Value | Description |
---|---|
{{record_count}} | The value of the Records per Call property. |
{{offset}} | The next offset value. On each call this will be incremented by the value of the Records per Call property. |
{{page}} | The next page number. On each call this will be incremented. |
{{pagination_token}} | The pagination token from the prior call. On the first call, the query parameter or header will not be set. On subsequent calls, it will be set to the value of the pagination token from the previous call. |