possible to get openapi spec for latest api version? #17565
-
The current one I have cal-sdk.yml is pulled from a demo project, wondering where/if I can get an updated openapi spec for generating the typescript API definition? I've been running into issues using this one. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey there, @jguerena15! I'm here to help you with any bugs, questions, or contributions you have. Let's squash those bugs together! 😊 Yes, you can get the OpenAPI spec for the latest API version from the Cal.com repository. The OpenAPI specification is available in JSON format and can be used to generate TypeScript API definitions. You can find the OpenAPI version 3.0.3 specification for the Cal.com API, which includes details about the API endpoints, request parameters, and response schemas. This specification can be used with tools like |
Beta Was this translation helpful? Give feedback.
Hey there, @jguerena15! I'm here to help you with any bugs, questions, or contributions you have. Let's squash those bugs together! 😊
Yes, you can get the OpenAPI spec for the latest API version from the Cal.com repository. The OpenAPI specification is available in JSON format and can be used to generate TypeScript API definitions. You can find the OpenAPI version 3.0.3 specification for the Cal.com API, which includes details about the API endpoints, request parameters, and response schemas. This specification can be used with tools like
openapi-generator
orswagger-codegen
to generate TypeScript definitions. The latest API version is specified as2024-08-13
, and you should ensure that …