Skip to main content

Providers API

The Providers API allows you to manage telephony providers and their configurations in your Unpod platform. It covers both listing available telephony providers and full CRUD operations for provider configurations.
Prerequisites: Make sure you have your API Token and Org-Handle ready. See Authentication for details.

What You Can Do

EndpointMethodDescription
/api/v2/platform/telephony/providers/GETList all available telephony providers
/api/v2/platform/telephony/providers-configurations/POSTCreate a new provider configuration
/api/v2/platform/telephony/providers-configurations/GETGet all provider configurations
/api/v2/platform/telephony/providers-configurations/{id}/GETGet a specific provider configuration
/api/v2/platform/telephony/providers-configurations/{id}/PATCHUpdate a provider configuration
/api/v2/platform/telephony/providers-configurations/{id}/DELETEDelete a provider configuration

Base URL

https://unpod.dev/api/v2/platform/

Authentication

Authorization: Token your-api-token
Org-Handle: your-org-handle

Common Error Codes

Status CodeDescription
200Success - Request completed successfully
204No Content - Resource deleted successfully
401Unauthorized - Invalid or missing API token
403Forbidden - Access denied
404Not Found - Configuration not found
500Internal Server Error