Consumer, Webhook, AM Employee, AM Equipment Item, HRIS Employee resources have support for bulk retrieval via list APIs. UAPI uses cursor-based pagination via the optional cursor and limit parameters.

To fetch the first page of results, call the list API without a cursor parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in meta.next. If meta.next is null you're at the end of the list.

Query Parameters

NameTypeRequiredDescription
cursorStringNoCursor to start from. You can find cursors for next page in the meta property of the response.
limitNumberNoNumber of results to return.

Response Body

NameTypeDescription
meta.nextStringCursor to navigate to the next page of results through the API
meta.currentStringCursor to navigate to the current page of results through the API
meta.itemsOnPageNumberNumber of items returned in the data property of the response