diff --git a/api_beta/api/openapi.yaml b/api_beta/api/openapi.yaml index e56b3109..43401286 100644 --- a/api_beta/api/openapi.yaml +++ b/api_beta/api/openapi.yaml @@ -2958,6 +2958,8 @@ paths: Filtering is supported for the following fields and operators: + **accessRequestId**: *in* + **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* example: accountActivityItemId eq "2c918086771c86df0177401efcdf54c0" in: query diff --git a/api_beta/api_access_requests.go b/api_beta/api_access_requests.go index 5c673e66..51f34190 100644 --- a/api_beta/api_access_requests.go +++ b/api_beta/api_access_requests.go @@ -777,7 +777,7 @@ func (r ApiListAccessRequestStatusRequest) Offset(offset int32) ApiListAccessReq return r } -// Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* +// Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *in* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* func (r ApiListAccessRequestStatusRequest) Filters(filters string) ApiListAccessRequestStatusRequest { r.filters = &filters return r diff --git a/api_beta/docs/AccessRequestsAPI.md b/api_beta/docs/AccessRequestsAPI.md index 729b1a5d..585bb5fa 100644 --- a/api_beta/docs/AccessRequestsAPI.md +++ b/api_beta/docs/AccessRequestsAPI.md @@ -300,7 +300,7 @@ func main() { count := false // bool | If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored. (optional) (default to false) limit := int32(100) // int32 | Max number of results to return. (optional) (default to 250) offset := int32(10) // int32 | Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified. (optional) - filters := "accountActivityItemId eq "2c918086771c86df0177401efcdf54c0"" // string | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* (optional) + filters := "accountActivityItemId eq "2c918086771c86df0177401efcdf54c0"" // string | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *in* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* (optional) sorters := "created" // string | Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name** (optional) requestState := "request-state=EXECUTING" // string | Filter the results by the state of the request. The only valid value is *EXECUTING*. (optional) @@ -334,7 +334,7 @@ Name | Type | Description | Notes **count** | **bool** | If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored. | [default to false] **limit** | **int32** | Max number of results to return. | [default to 250] **offset** | **int32** | Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified. | - **filters** | **string** | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* | + **filters** | **string** | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *in* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* | **sorters** | **string** | Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name** | **requestState** | **string** | Filter the results by the state of the request. The only valid value is *EXECUTING*. | diff --git a/api_v2024/api/openapi.yaml b/api_v2024/api/openapi.yaml index b2f52d41..8f71209f 100644 --- a/api_v2024/api/openapi.yaml +++ b/api_v2024/api/openapi.yaml @@ -2840,6 +2840,8 @@ paths: Filtering is supported for the following fields and operators: + **accessRequestId**: *in* + **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* example: accountActivityItemId eq "2c918086771c86df0177401efcdf54c0" in: query diff --git a/api_v2024/api_access_requests.go b/api_v2024/api_access_requests.go index a9e3e6d5..fbb151a1 100644 --- a/api_v2024/api_access_requests.go +++ b/api_v2024/api_access_requests.go @@ -1151,7 +1151,7 @@ func (r ApiListAccessRequestStatusRequest) Offset(offset int32) ApiListAccessReq return r } -// Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* +// Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *in* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* func (r ApiListAccessRequestStatusRequest) Filters(filters string) ApiListAccessRequestStatusRequest { r.filters = &filters return r diff --git a/api_v2024/docs/AccessRequestsAPI.md b/api_v2024/docs/AccessRequestsAPI.md index 12c7d703..41b3604a 100644 --- a/api_v2024/docs/AccessRequestsAPI.md +++ b/api_v2024/docs/AccessRequestsAPI.md @@ -436,7 +436,7 @@ func main() { count := false // bool | If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored. (optional) (default to false) limit := int32(100) // int32 | Max number of results to return. (optional) (default to 250) offset := int32(10) // int32 | Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified. (optional) - filters := "accountActivityItemId eq "2c918086771c86df0177401efcdf54c0"" // string | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* (optional) + filters := "accountActivityItemId eq "2c918086771c86df0177401efcdf54c0"" // string | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *in* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* (optional) sorters := "created" // string | Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name** (optional) requestState := "request-state=EXECUTING" // string | Filter the results by the state of the request. The only valid value is *EXECUTING*. (optional) @@ -470,7 +470,7 @@ Name | Type | Description | Notes **count** | **bool** | If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored. | [default to false] **limit** | **int32** | Max number of results to return. | [default to 250] **offset** | **int32** | Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified. | - **filters** | **string** | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* | + **filters** | **string** | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *in* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* | **sorters** | **string** | Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name** | **requestState** | **string** | Filter the results by the state of the request. The only valid value is *EXECUTING*. | diff --git a/api_v3/api/openapi.yaml b/api_v3/api/openapi.yaml index 86ec3265..7c023e78 100644 --- a/api_v3/api/openapi.yaml +++ b/api_v3/api/openapi.yaml @@ -2451,6 +2451,8 @@ paths: Filtering is supported for the following fields and operators: + **accessRequestId**: *in* + **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* example: accountActivityItemId eq "2c918086771c86df0177401efcdf54c0" in: query diff --git a/api_v3/api_access_requests.go b/api_v3/api_access_requests.go index f2fad8a5..9ee8c0ad 100644 --- a/api_v3/api_access_requests.go +++ b/api_v3/api_access_requests.go @@ -602,7 +602,7 @@ func (r ApiListAccessRequestStatusRequest) Offset(offset int32) ApiListAccessReq return r } -// Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* +// Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *in* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* func (r ApiListAccessRequestStatusRequest) Filters(filters string) ApiListAccessRequestStatusRequest { r.filters = &filters return r diff --git a/api_v3/docs/AccessRequestsAPI.md b/api_v3/docs/AccessRequestsAPI.md index 31312966..391352cc 100644 --- a/api_v3/docs/AccessRequestsAPI.md +++ b/api_v3/docs/AccessRequestsAPI.md @@ -233,7 +233,7 @@ func main() { count := false // bool | If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored. (optional) (default to false) limit := int32(100) // int32 | Max number of results to return. (optional) (default to 250) offset := int32(10) // int32 | Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified. (optional) - filters := "accountActivityItemId eq "2c918086771c86df0177401efcdf54c0"" // string | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* (optional) + filters := "accountActivityItemId eq "2c918086771c86df0177401efcdf54c0"" // string | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *in* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* (optional) sorters := "created" // string | Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name** (optional) requestState := "request-state=EXECUTING" // string | Filter the results by the state of the request. The only valid value is *EXECUTING*. (optional) @@ -267,7 +267,7 @@ Name | Type | Description | Notes **count** | **bool** | If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored. | [default to false] **limit** | **int32** | Max number of results to return. | [default to 250] **offset** | **int32** | Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified. | - **filters** | **string** | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* | + **filters** | **string** | Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *in* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* | **sorters** | **string** | Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name** | **requestState** | **string** | Filter the results by the state of the request. The only valid value is *EXECUTING*. |