NetBackup status code: 2251
Explanation: The API request contains an invalid cursor value. In the example request shown, the page[after] value is the next cursor value. If this value is incorrect, the server can't find the cursor and then NetBackup cannot load the next page.
Example API request with cursor value:
https://localhost/netbackup/troubleshooting/error-logs?page[after]= 28002872c601fd648f3154e58532558e429c9632035c3bf042a6accdd77d8356&page [limit]=5
This issue doesn't occur in the web UI because the web UI takes the next value from the response and uses it as the page[after] value for the next page. However, when you use the APIs you can change this page[after] value.
Recommended Action: Review the previous API response and use the correct value for the page[after] value. If the request contains an invalid value, in the error log locate the pagination meta tag in the response. The value of "next" is the value that you want to use for page[after].
"meta": {
"pagination":
{ "next": "28002872c601fd648f3154e58532558e429c9632035c3bf042a6accdd77d8356", "limit": 5 }
}Click here to view technical notes and other information on the Cohesity Technical Support website about this status code.