This API retrieves a paginated list of audio notes for the authenticated user.
GET /api/v1/audioscribe/notes/
Parameter | Type | Description |
---|---|---|
page | Integer | Page number for pagination. Defaults to 0 if not provided. |
The response is a JSON array of note objects. Each object contains the following fields:
Field | Type | Description |
---|---|---|
id | Integer | Unique identifier of the note. |
title | String | Title of the audio note. |
note | String | Note content. |
originalTranscript | String | Transcript of your audio. |
tags | String | Associated tags (currently empty). |
createdAt | String | ISO format creation date and time. |
This API retrieves details of a specific audio note for the authenticated user.
GET /api/v1/audioscribe/notes/<int:id>/
Parameter | Type | Description |
---|---|---|
id | Integer | Unique identifier of the note. |
The response is a JSON object containing the following fields:
Field | Type | Description |
---|---|---|
id | Integer | Unique identifier of the note. |
title | String | Title of the audio note. |
note | String | Note content. |
originalTranscript | String | Transcript of your audio. |
tags | String | Associated tags (currently empty). |
createdAt | String | ISO format creation date and time. |
This section describes how users can configure a webhook URL for their account. Once configured, the system will send a notification to the specified webhook URL every time a new audio note is created.
Webhooks are in Beta. Please contact us at support@dictanote.co to set this up. We support integration via Zapier and manual configuration.
When a new audio note is created, the system automatically sends a POST request to the configured webhook URL. The request contains a JSON object with details of the audio note.
The JSON data sent to the webhook URL includes the following fields:
Field | Type | Description |
---|---|---|
id | Integer | Unique identifier of the audio note. |
title | String | Title of the audio note. |
note | String | Note content. |
originalTranscript | String | Transcript of your audio. |
tags | String | Associated tags (if any). |
createdAt | String | ISO format creation date and time of the note. |
The response from the webhook endpoint is not used to control the behavior of the system. However, it is recommended for the endpoint to respond with a status code of 200 OK to indicate successful receipt of the notification.