List form entries
/entriesList form-entries from a specific form using basic pagination.
Parameters
Path and query values accepted by this endpoint.
Parameters
3 fields
idpageNumberpageSizePrimary response
The first documented success or example-bearing response.
Fields
2 fields
entriesFormEntry[]
entriesFields
5 fields
idformIddatacreatedAtupdatedAtmetadataPaginationMetadata
metadataContains pagination metadata
Fields
8 fields
currentPageThe current 1-index based page index. First page is one (1) not zero (0)!
pageSizeThe amount of records on this page.
pageCountTotal available of pages
totalEntriesTotal available records
isLastPageIndicates if this is the last page or not
isFirstPageIndicates if this is the first page or not
hasNextPageIndicates whether a next page is available or not
hasPreviousPageIndicates whether a previous page is available or not
More responses (2)
Validation, and error responses.
More responses (2)
Validation, and error responses.
This response does not include a documented body.
This response does not include a documented body.
cURL
bashcurl --request GET \
--url 'https://api.mountly.io/entries?id=<id>&pageNumber=<pageNumber>&pageSize=<pageSize>' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'200 example
json{
"entries": [
null
],
"metadata": {
"currentPage": null,
"pageSize": null,
"pageCount": null,
"totalEntries": null,
"isLastPage": null,
"isFirstPage": null,
"hasNextPage": null,
"hasPreviousPage": null
}
}