Get Vimeo Connections
Vimeo Integration
Get Vimeo Connections
Retrieve all configured Vimeo connections
GET
Get Vimeo Connections
Documentation Index
Fetch the complete documentation index at: https://docs.pictory.ai/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Retrieve a paginated list of all Vimeo connections associated with your account. The response includes connection metadata while excluding sensitive credentials (client secrets and access tokens) for security.You need a valid API key to use this endpoint. Get your API key from the API Access page in your Pictory dashboard.
API Endpoint
Request Parameters
Headers
API key for authentication (starts with
pictai_)Query Parameters
Base64-encoded pagination token for retrieving the next page of results. Returned in the previous response when more results are available.Example:
"eyJsYXN0RXZhbHVhdGVkS2V5Ijp7fX0="Response
Returns a paginated array of Vimeo connection objects in theItems field. Each connection includes connectionId, name, description, clientIdentifier, type, enabled status, timestamps, and version number. If more results are available, a nextPageKey is included for pagination. For security, sensitive credentials (clientSecret and accessToken) are never returned in API responses.
Response Examples
Code Examples
Pagination
This endpoint supports pagination for handling large result sets:- First Request: Make initial request without the
nextPageKeyparameter - Check for More Results: If the response includes
nextPageKey, additional results are available - Subsequent Requests: Include the
nextPageKeyvalue as a query parameter to retrieve the next page
Error Handling
401 Unauthorized
401 Unauthorized
Empty Results
Empty Results
Cause: No Vimeo connections exist in your accountSolution:
- This is expected if you have not created any Vimeo connections yet
- Use the Create Vimeo Connection endpoint to add your first connection
- Verify you are using the correct API key for your account
Pagination Issues
Pagination Issues
Cause: Getting the same results when using
nextPageKey or pagination not workingSolution:- Ensure you are passing the
nextPageKeyvalue exactly as returned (Base64-encoded) - Do not modify or decode the
nextPageKeyvalue before sending it - If no
nextPageKeyis returned in the response, you have reached the end of results - The
nextPageKeyis only valid for the current result set
