Skip to content

Commit

Permalink
Update README.md to remove json language identifier (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
SandraRodgers authored Oct 11, 2023
1 parent 9443c2f commit 0899ff9
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ project = await deepgram.projects.get(PROJECT_ID)

### Get a Project Response

```json
```
{
project_id: String,
name: String,
Expand All @@ -302,7 +302,7 @@ updateResponse = await deepgram.projects.update(project)

### Update a Project Response

```json
```
{
message: String;
}
Expand Down Expand Up @@ -330,7 +330,7 @@ response = await deepgram.keys.list(PROJECT_ID)

### List Keys Response

```json
```
{
api_keys: [
{
Expand Down Expand Up @@ -363,7 +363,7 @@ response = await deepgram.keys.create(PROJECT_ID, COMMENT_FOR_KEY, SCOPES)

### Create API Key Response

```json
```
{
api_key_id: string,
key: string,
Expand Down Expand Up @@ -416,7 +416,7 @@ response = await deepgram.members.list_members(PROJECT_ID)

### Get Members Response

```json
```
{
members: [
{
Expand Down Expand Up @@ -449,7 +449,7 @@ response = await deepgram.members.remove_member(PROJECT_ID, MEMBER_ID)

### Remove Member Response

```json
```
{
message: string;
}
Expand Down Expand Up @@ -477,7 +477,7 @@ response = await deepgram.scopes.get_scope(PROJECT_ID, MEMBER_ID)

### Get Member Scopes Response

```json
```
{
scopes: string[]
}
Expand All @@ -503,7 +503,7 @@ response = await deepgram.scopes.update_scope(PROJECT_ID, MEMBER_ID, 'member')

### Update Scope Response

```json
```
{
message: string;
}
Expand Down Expand Up @@ -531,7 +531,7 @@ response = await deepgram.invitations.list_invitations(PROJECT_ID)

### List Invites Response

```json
```
{
members: [
{
Expand Down Expand Up @@ -564,7 +564,7 @@ response = await deepgram.invitations.send_invitation(PROJECT_ID, {

### Send Invite Response

```json
```
{
message: string;
}
Expand Down Expand Up @@ -592,7 +592,7 @@ response = await deepgram.invitations.remove_invitation(

### Delete Invite Response

```json
```
{
message: string;
}
Expand All @@ -616,7 +616,7 @@ response = await deepgram.invitations.leave_project(PROJECT_ID)

### Leave Project Response

```json
```
{
message: string;
}
Expand Down Expand Up @@ -670,7 +670,7 @@ response = await deepgram.usage.list_requests(PROJECT_ID, {

### Get All Requests Response

```json
```
{
page: Number,
limit: Number,
Expand Down Expand Up @@ -739,7 +739,7 @@ response = await deepgram.usage.get_request(PROJECT_ID, REQUEST_ID)

### Get Request Response

```json
```
{
request_id: String;
created: String;
Expand Down Expand Up @@ -852,7 +852,7 @@ response = await deepgram.usage.get_usage(PROJECT_ID, {

### Get Usage Response

```json
```
{
start: String,
end: String,
Expand Down Expand Up @@ -906,7 +906,7 @@ response = await deepgram.usage.get_fields(PROJECT_ID, {

#### Get Fields Response

```json
```
{
tags: String[],
models: String[],
Expand Down Expand Up @@ -939,7 +939,7 @@ response = await deepgram.billing.list_balance(PROJECT_ID)

### Get All Balances Response

```json
```
{
balances: [
{
Expand Down Expand Up @@ -971,7 +971,7 @@ const response = deepgram.billing.get_balance(PROJECT_ID, BALANCE_ID)

### Get Balance Response

```json
```
{
balance: {
balance_id: string;
Expand Down

0 comments on commit 0899ff9

Please sign in to comment.