Connected Services
how to list the third party services a user has connected
Get User Connections
Retrieve user connections with comprehensive pagination, filtering, and sorting support.
Usage Examples
Basic pagination
GET /v1/connections - First page with default settings
GET /v1/connections?page=2&limit=10 - Second page, 10 items per page
Sorting
GET /v1/connections?sortBy=updatedAt&sortOrder=desc - Sort by last update (newest first)
GET /v1/connections?sortBy=createdAt&sortOrder=asc - Sort by creation date (oldest first)
Filtering
GET /v1/connections?status=active - Show only active connections
GET /v1/connections?status=expired - Show only expired connections
Combined queries
GET /v1/connections?page=2&limit=50&status=active&sortBy=updatedAt&sortOrder=desc
Required scope: connections Access restriction: BlueNexus frontend OR whitelabel customer client only
Enter JWT access token
MongoDB-style filter object (passed as URL-encoded JSON string). Only allows filtering by safe, non-sensitive fields: status, providerId, and date ranges. Strict validation prevents abuse.
{"value":"{\"status\":\"active\"}","description":"Filter by connection status (active|expired|revoked|error)"}Page number (1-based)
1Example: 1Number of connections to return (1-100)
20Example: 20Field to sort by
createdAtExample: createdAtPossible values: Sort order
descExample: descPossible values: Paginated list of user connections with status information
Internal server error
Get connection details.
Required scope: connections Access restriction: BlueNexus frontend OR whitelabel customer client only
Enter JWT access token
Connection ID
Connection details
Internal server error
Last updated

