Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.8 KB

File metadata and controls

55 lines (38 loc) · 1.8 KB

ALERTUS Transciption System

Guidelines

ALERTUS Transciption System uses Google-Speech-to-Text to transcribe audio file to readable text

HOW TO SETUP:

RESTful URLs

* To register a user:
    * POST /api/user/create

  Authorization Bearer Token is needed to access the next endpoints,  register first !!

 * To update a user info:
    * PUT /api/user/update

* To update or refresh a user auth Token:
    * PUT /api/user/update

* To get all Transcription:
    * GET /api/transcribeResponses

* To get all Transcription for a Session:
    * GET /api/transcribe/Session/{SessionId}
       
* To get all Transcription for a Recording:
    * GET /api/transcribe/Recording/{RecordingId}

* To get One Transcription By Id:
    * GET /api/transcribe/{id}

* To transcribe audio from url:
    * POST /api/transcribeFromUrl

HTTP Verbs

HTTP METHOD POST GET PUT DELETE
CRUD OP CREATE READ UPDATE DELETE

Thank You ❤️ 🙏