1. Document library
Spencer Integration API
  • Spencer Integration API
  • Identity
    • Request access token
      POST
  • News
    • Fetch news publications
      GET
    • Fetch news publications for userlist
      GET
    • Create news draft
      POST
  • Users
    • Create user
      POST
    • Fetch user
      GET
    • Update user
      PUT
    • Delete user
      DELETE
    • Check if user exists
      HEAD
    • Add user profile picture
      POST
    • Create user tag
      POST
    • Update user tag
      PUT
    • Check if user tag exists
      HEAD
  • Document library
    • Fetch node
      GET
  • Notifications
    • Create notification
      POST
  1. Document library

Fetch node

GET
/agent/integration/api/v1/document-library/nodes/{id}
Fetches the metadata of a document library node.
A node can be either a folder or document.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Request Code Samples

Shell
HTTP
Request Request Example
Shell
HTTP
curl --location '/agent/integration/api/v1/document-library/nodes/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "id": "string",
    "type": "document",
    "spencer_id": "3b499c22-397c-4e82-9cba-4451795c80fa",
    "spencer_url": "http://example.com"
}
🟠401
🟠403
🟠404
Previous
Check if user tag exists
Next
Create notification
Built with