Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ To use the Zoom meetings connector, you must have access to the Zoom API through
* `YOUR_REDIRECT_URI` with your configured redirect URI

### Step 5: Verify Your Setup
```curl
```curl
curl -X GET "https://api.zoom.us/v2/users/me" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```
```

This will give you the user ID needed for API calls.

Expand Down Expand Up @@ -124,7 +124,7 @@ To use the `Zoom` connector in your Ballerina application, update the `.bal` fil

Now, utilize the available connector operations.

```ballerina
```ballerina
meetings:InlineResponse20028 response = check zoomClient->/users/[originalId]/meetings();
meetings:InlineResponse20028Meetings[]? meetings = response.meetings;
if meetings is () {
Expand All @@ -138,21 +138,21 @@ To use the `Zoom` connector in your Ballerina application, update the `.bal` fil
io:println("-------------------------------");
}
}
```
```

### Step 4: Run the Ballerina application

```bash
```bash
bal run
```
```

## Examples

The `Zoom Meetings` connector provides practical examples illustrating usage in various scenarios. Explore these [examples](https://github.com/module-ballerinax-zoom.meetings/tree/main/examples/), covering the following use cases:
The `Zoom Meetings` connector provides practical examples illustrating usage in various scenarios. Explore these [examples](https://github.com/ballerina-platform/module-ballerinax-zoom.meetings/tree/main/examples/), covering the following use cases:

1. [Create a Zoom meeting](https://github.com/module-ballerinax-zoom.meetings/tree/main/examples/create-new-meeting) – Creates a new Zoom meeting using the API.
1. [**Create a Zoom meeting**](https://github.com/ballerina-platform/module-ballerinax-zoom.meetings/tree/main/examples/create-new-meeting) – Creates a new Zoom meeting using the API.

2. [List scheduled meetings](https://github.com/module-ballerinax-zoom.meetings/tree/main/examples/list-all-meetings) – Displays the list of meetings scheduled under a specified Zoom user account.
2. [**List scheduled meetings**](https://github.com/ballerina-platform/module-ballerinax-zoom.meetings/tree/main/examples/list-all-meetings) – Displays the list of meetings scheduled under a specified Zoom user account.

### Setting up the prerequisites
1. Download and install Java SE Development Kit (JDK) version 21. You can download it from either of the following sources:
Expand Down
12 changes: 6 additions & 6 deletions ballerina/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ To use the Zoom meetings connector, you must have access to the Zoom API through
* `YOUR_REDIRECT_URI` with your configured redirect URI

### Step 5: Verify Your Setup
```curl
```curl
curl -X GET "https://api.zoom.us/v2/users/me" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```
```

This will give you the user ID needed for API calls.

Expand Down Expand Up @@ -118,7 +118,7 @@ To use the `Zoom` connector in your Ballerina application, update the `.bal` fil

Now, utilize the available connector operations.

```ballerina
```ballerina
meetings:InlineResponse20028 response = check zoomClient->/users/[originalId]/meetings();
meetings:InlineResponse20028Meetings[]? meetings = response.meetings;
if meetings is () {
Expand All @@ -132,13 +132,13 @@ To use the `Zoom` connector in your Ballerina application, update the `.bal` fil
io:println("-------------------------------");
}
}
```
```

### Step 4: Run the Ballerina application

```bash
```bash
bal run
```
```

## Examples

Expand Down
2 changes: 1 addition & 1 deletion ballerina/tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Prerequisites
You need a Access token from Zoom developer account.

To do this, refer to [Ballerina Zoom Connector](https://github.com/ballerina-platform/module-ballerinax-zoom.meetings/README.md).
To do this, refer to [Ballerina Zoom Connector](https://github.com/ballerina-platform/module-ballerinax-zoom.meetings/tree/main/README.md).

And You need Find Your User ID to run some of the tests by running this curl command.
```curl
Expand Down
1 change: 1 addition & 0 deletions examples/create-new-meeting/.github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This example demonstrates how the **Zoom Meetings API** can be used to **create

**1. Setup Zoom developer account**

Refer to the [Setup guide](https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-zoom.meetings/refs/heads/main/README.md) to obtain necessary credentials (client Id, client secret, tokens).
Refer to the [Setup guide](https://github.com/ballerina-platform/module-ballerinax-zoom.meetings/tree/main/README.md) to obtain necessary credentials (client Id, client secret, tokens).

**2. Configuration**

Expand Down
1 change: 1 addition & 0 deletions examples/list-all-meetings/.github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This example demonstrates how to **retrieve and list all Zoom meetings** for a g

**1. Setup Zoom developer account**

Refer to the [Setup guide](https://raw.githubusercontent.com/ballerina-platform/module-ballerinax-zoom.meetings/refs/heads/main/README.md) to obtain necessary credentials (client Id, client secret, tokens).
Refer to the [Setup guide](https://github.com/ballerina-platform/module-ballerinax-zoom.meetings/tree/main/README.md) to obtain necessary credentials (client Id, client secret, tokens).

**2. Configuration**

Expand Down
Loading