Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
arvindkrishnakumar-okta committed Jul 7, 2020
1 parent a343eb4 commit 4fb60d7
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions MIGRATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,13 @@ With this removal of `expand` parameter, the caller has two options of achieving

- Make a second API call to the Group API and fetch the results.
- You can call the Groups API endpoint (or any Okta management API endpoint) using a syntax like below example:

```java
```
// List Groups API, see: https://developer.okta.com/docs/reference/api/groups/#list-groups
ExtensibleResource result = client.http()
.addQueryParameter("expand", "<<value>>")
.get("/api/v1/groups", ExtensibleResource.class);
GroupsList result = client.http()
.addQueryParameter("expand", true)
.get("/api/v1/groups", GroupsList.class);
```

Note that the support for `expand` parameter support might go away anytime in future.
- Note that the support for `expand` parameter might go away anytime in future.

### Package `com.okta.sdk.resource.application.SwaThreeFieldApplicationSettingsApplication`

Expand Down

0 comments on commit 4fb60d7

Please sign in to comment.