Document Access
Search Account Documents
Returns a list of all documents belonging to the requesting user's account, sorted by created date. This API is exclusive to Enterprise Shield accounts. The endpoint supports pagination and has a per-account rate limit of 300 requests per 5 seconds.
post/v1/accounts/me/documents/search
Headers
Lucid-Request-Asstring required
If the requesting user is an account owner or document admin with the required permissions and they make the request with the value of “admin” as this header and include an admin scope, the request will be made using their admin permissions.
Request body
Example request
{
"product": [
"lucidchart"
]
}Response
With paginated list of Account Documents
Example response
[
{
"documentId": "110808fd-4553-4316-bccf-4f25ff59a532",
"title": "document title",
"adminViewUrl": "https://lucid.app/lucidchart/110808fd-4553-4316-bccf-4f25ff59a532/adminView",
"created": "2019-04-22T13:47:23Z",
"owner": {
"ownerType": "user",
"id": "123456"
},
"lastModified": "2020-06-26T16:29:37Z",
"customTags": [
"in progress"
],
"product": "lucidchart",
"status": "Complete",
"parent": 123456788,
"trashed": null,
"userCollaboratorIds": [
206418105,
206418104,
206418103
],
"teamCollaboratorIds": [
111000660,
111000661,
111000659
]
}
]