Help Guide
{
"openapi": "3.1.0",
"info": {
"title": "Transcribe Audio",
"description": "API for transcribing audio from a file URL provided by the user.",
"version": "v1.0.0"
},
"servers": [
{
"url": "https://connect.pabbly.com/workflow/sendwebhookdata"
}
],
"paths": {
"/IjU3NjUwNTZlMDYzMzA0MzM1MjZjNTUzNTUxMzMi_pc": {
"post": {
"description": "Transcribes the audio file from a URL provided by the user.",
"operationId": "TranscribeAudio",
"requestBody": {
"description": "Payload containing the URL of the audio file to be transcribed.",
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"AudioFileURL": {
"type": "string",
"format": "uri",
"description": "URL of the audio file to be transcribed, provided by the user."
}
},
"required": [
"AudioFileURL"
]
}
}
}
},
"responses": {
"200": {
"description": "Transcription successful."
},
"400": {
"description": "Invalid request or AudioFileURL."
}
},
"deprecated": false
}
}
},
"components": {
"schemas": {}
}
}
This is the response with the working schema that I used while building my GPT.