Skip to content

Commit

Permalink
Make service url mandatory when initializing the client
Browse files Browse the repository at this point in the history
  • Loading branch information
NipunaRanasinghe committed Mar 27, 2024
1 parent 9e888b9 commit 1861b2d
Show file tree
Hide file tree
Showing 6 changed files with 451 additions and 453 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ zendesk:ConnectionConfig zendeskConfig = {
}
};
zendesk:Client zendesk = check new (zendeskConfig);
zendesk:Client zendesk = check new (zendeskConfig, "https://<your-domain>.zendesk.com");
```

### Step 3: Invoke the connector operation
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ zendesk:ConnectionConfig zendeskConfig = {
}
};
zendesk:Client zendesk = check new (zendeskConfig);
zendesk:Client zendesk = check new (zendeskConfig, "https://<your-domain>.zendesk.com");
```

### Step 3: Invoke the connector operation
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ zendesk:ConnectionConfig zendeskConfig = {
}
};
zendesk:Client zendesk = check new (zendeskConfig);
zendesk:Client zendesk = check new (zendeskConfig, "https://<your-domain>.zendesk.com");
```

### Step 3: Invoke the connector operation
Expand Down
Loading

0 comments on commit 1861b2d

Please sign in to comment.