Skip to content

Commit cb8e618

Browse files
authored
iterating on ApiID and VersionID descriptions
Signed-off-by: Simon Yu <[email protected]>
1 parent 1fc3414 commit cb8e618

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ func main() {
4040
// Configure the Global SDK
4141
speakeasy.Configure(speakeasy.Config {
4242
APIKey: "YOUR API KEY HERE", // retrieve from Speakeasy API dashboard.
43-
ApiID: "YOUR API ID HERE", // this is an ID you provide that you would like to associate captured requests with.
44-
VersionID: "YOUR VERSION ID HERE", // this is a Version you provide that you would like to associate captured requests with.
43+
ApiID: "YOUR API ID HERE", // enter a name that you'd like to associate captured requests with. This name will show up in the Speakeasy dashboard. e.g. "PetStore" might be a good ApiID for a Pet Store's API. No spaces allowed.
44+
VersionID: "YOUR VERSION ID HERE", // enter a version that you would like to associate captured requests with. The combination of ApiID (name) and VersionID will uniquely identify your requests in the Speakeasy Dashboard. e.g. "v1.0.0". You can have multiple versions for the same ApiID (if running multiple versions of your API)
4545
})
4646

4747
// Associate the SDK's middleware with your router
@@ -241,4 +241,4 @@ func MyHandler(w http.ResponseWriter, r *http.Request) {
241241

242242
// the rest of your handlers code
243243
}
244-
```
244+
```

0 commit comments

Comments
 (0)