-
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 #37 from sailpoint/NERRA-1555
NERRA-1555: document after_id usage for Profiles GET' by github action: 10688263706
- Loading branch information
1 parent
da38b2d
commit f1edf4d
Showing
5 changed files
with
43 additions
and
2 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: query | ||
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`. When after_id is specified it changes the mode of the API such that any filter parameters other than profile_type_id, limit, and offset are not supported and will be either silently ignored or result in an HTTP 400 error. For example you can not include and after_id along with an archived=false in the same request. | ||
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,30 @@ | ||
type: object | ||
properties: | ||
limit: | ||
type: integer | ||
description: The maximum number of records to return in the search | ||
example: /endpoint?limit=10 | ||
format: int32 | ||
offset: | ||
type: integer | ||
description: The number of records to skip before starting to return results. | ||
example: /endpoint?offset=60 | ||
format: int32 | ||
total: | ||
type: integer | ||
description: The total number of records available matching the search criteria. | ||
example: /endpoint?total=10 | ||
format: int32 | ||
next: | ||
type: string | ||
description: The ID of the first record in the next set of results | ||
example: /endpoint?limit=10&offset=60 | ||
previous: | ||
type: string | ||
description: The ID of the last record in the previous set of results | ||
example: /endpoint?limit=10&offset=40 | ||
after_id: | ||
type: string | ||
format: uuid | ||
example: 4eaa719f-4312-4c5b-9264-d0eb04d4a02a | ||
description: The ID from which the search will start, ignoring all records before it. |