-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated commit 'Merge pull request #33 from sailpoint/NERRA-1445
NERRA-1445: document after_id usage for Profiles GET' by github action: 10352271020
- Loading branch information
1 parent
3147419
commit 5e5b6e8
Showing
6 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: after_id | ||
in: metadata | ||
description: Represents the ID where the query should begin from. If blank, it represents the first ID. When used, forces sorting by ID ascending and does not allow use of `offset`. | ||
required: false | ||
schema: | ||
type: string | ||
format: uuid | ||
example: 4eaa719f-4312-4c5b-9264-d0eb04d4a02a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
type: object | ||
properties: | ||
limit: | ||
type: integer | ||
offset: | ||
type: integer | ||
total: | ||
type: integer | ||
next: | ||
type: string | ||
example: /endpoint?limit=10&offset=60 | ||
previous: | ||
type: string | ||
example: /endpoint?limit=10&offset=40 | ||
after_id: | ||
type: string | ||
format: uuid | ||
example: 4eaa719f-4312-4c5b-9264-d0eb04d4a02a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters