Explore documents
Search documents and folders with filters, sorting, and pagination.
HTTP request
GET /api/now/v1/documents/explore
Path parameters
None.
Query parameters
| Name | Description |
|---|---|
page | Optional — set via the verb's QueryParameters type. |
limit | Optional — set via the verb's QueryParameters type. |
query | Optional — set via the verb's QueryParameters type. |
table_name | Optional — set via the verb's QueryParameters type. |
folder_sys_id | Optional — set via the verb's QueryParameters type. |
record_sys_id | Optional — set via the verb's QueryParameters type. |
Request body
Don't supply a request body for this method.
Response
A collection envelope of Document.
Example
response, err := client.Now().Documents().Explore().Get(ctx, nil)
if err != nil {
log.Fatal(err)
}