API v1 vs OpenAPI Document on Azure Functions
If you need a Documents & Productivity API that's easy to integrate, go with API v1.
OpenAPI Document on Azure Functions
This is the OpenAPI Document on Azure Functions
API v1
- Simple API key authentication
- HTTPS supported
OpenAPI Document on Azure Functions
- Requires No authentication
- No HTTPS support
| Feature | API v1 | OpenAPI Document on Azure Functions |
|---|---|---|
| Authentication | apiKey | No |
| HTTPS | Yes | No |
| CORS | Unknown | Unknown |
When to use which?
API v1 supports HTTPS, which is required for production deployments and secure data handling.