bookoly icon

bookoly

Interact with the bookoly API

Overview

This node integrates with the Bookoly API to perform various operations related to Bookoly resources. Specifically, for the "Video" resource and the "Get a Specific Video" operation, it retrieves detailed information about a single video by its unique ID. This is useful when you want to fetch metadata or details of a particular video stored in the Bookoly system.

Practical examples include:

  • Fetching video details to display on a website or app.
  • Retrieving video metadata for processing or reporting.
  • Using video information as part of an automation workflow that manages multimedia content.

Properties

Name Meaning
Video ID The ID of the video to retrieve

Output

The node outputs a JSON object containing the data of the requested video. The structure corresponds to the video details returned by the Bookoly API for the specified video ID. This typically includes fields such as title, description, URL, duration, and other metadata relevant to the video.

If the node supports binary data output (not explicitly shown here), it would represent the actual video file or associated media content, but based on the provided code and properties, the output is JSON metadata only.

Dependencies

  • Requires an active connection to the Bookoly API.
  • Needs an API key credential configured in n8n to authenticate requests to the Bookoly service.
  • The base URL for API requests is https://bookoly.com/api/v1.

Troubleshooting

  • No handler found error: If the node throws an error like No handler found for video.getVideo, ensure that the resource and operation names are correctly set and supported by the node.
  • Failed to execute getVideo: This error indicates issues during the API call, such as network problems, invalid video ID, or authentication failures. Verify the video ID is correct and the API credentials are valid.
  • Empty or missing video data: Confirm that the video ID exists in the Bookoly system and that the user has permission to access it.

Links and References

Discussion