Retrieves all VoIP provider integrations for your organization with support for pagination. Returns polymorphic responses with provider-specific details based on the provider type. The providerType field acts as a discriminator to identify the specific provider implementation.
Number of items to skip for pagination
0 <= x <= 2147483647Number of items to return (max 100)
1 <= x <= 100Returns providers successfully with polymorphic serialization
Generic paginated response containing a subset of items along with pagination metadata. Enables efficient navigation through large datasets by returning data in manageable pages rather than loading all results at once.
Items in the current page. Contains the subset of results for this page based on the Skip and Take parameters.
Total number of items available across all pages. Use this to calculate the total number of pages and build pagination controls. Represents the complete result set size regardless of pagination.
Number of items skipped from the beginning of the result set to reach this page. For example, Skip=20 with Take=10 returns items 21-30. Use this to understand the current position in the overall result set.
Maximum number of items included in this page. Indicates the requested page size. The actual Items count may be less than Take on the last page or when fewer results are available.