id: v2024-custom-forms
title: CustomForms
pagination_label: CustomForms
sidebar_label: CustomForms
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CustomForms', 'V2024CustomForms']
slug: /tools/sdk/powershell/v2024/methods/custom-forms
tags: ['SDK', 'Software Development Kit', 'CustomForms', 'V2024CustomForms']
CustomForms
Use this API to build and manage custom forms.
With this functionality in place, administrators can create and view form definitions and form instances.
Forms are composed of sections and fields. Sections split the form into logical groups of fields and fields are the data collection points within the form. Configure conditions to modify elements of the form as the responder provides input. Create form inputs to pass information from a calling feature, like a workflow, to your form.
Forms can be used within workflows as an action or as a trigger. The Form Action allows you to assign a form as a step in a running workflow, suspending the workflow until the form is submitted or times out, and the workflow resumes. The Form Submitted Trigger initiates a workflow when a form is submitted. The trigger can be configured to initiate on submission of a full form, a form element with any value, or a form element with a particular value.
Refer to Forms for more information about using forms in Identity Security Cloud.
All URIs are relative to https://sailpoint.api.identitynow.com/v2024
create-form-definition
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| Body |
Body |
CreateFormDefinitionRequest |
(optional) |
Body is the request payload to create form definition request |
Return type
FormDefinitionResponse
Responses
| Code |
Description |
Data Type |
| 201 |
Returns a new form definition |
FormDefinitionResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: application/json
- Accept: application/json
Example
$XSailPointExperimental = "true" # String | Use this header to enable this experimental API. (default to "true")
$Body = @"{
"owner" : {
"name" : "Grant Smith",
"id" : "2c9180867624cbd7017642d8c8c81f67",
"type" : "IDENTITY"
},
"formConditions" : [ {
"ruleOperator" : "AND",
"effects" : [ {
"config" : {
"defaultValueLabel" : "Access to Remove",
"element" : "8110662963316867"
},
"effectType" : "HIDE"
}, {
"config" : {
"defaultValueLabel" : "Access to Remove",
"element" : "8110662963316867"
},
"effectType" : "HIDE"
} ],
"rules" : [ {
"sourceType" : "ELEMENT",
"valueType" : "STRING",
"source" : "department",
"value" : "Engineering",
"operator" : "EQ"
}, {
"sourceType" : "ELEMENT",
"valueType" : "STRING",
"source" : "department",
"value" : "Engineering",
"operator" : "EQ"
} ]
}, {
"ruleOperator" : "AND",
"effects" : [ {
"config" : {
"defaultValueLabel" : "Access to Remove",
"element" : "8110662963316867"
},
"effectType" : "HIDE"
}, {
"config" : {
"defaultValueLabel" : "Access to Remove",
"element" : "8110662963316867"
},
"effectType" : "HIDE"
} ],
"rules" : [ {
"sourceType" : "ELEMENT",
"valueType" : "STRING",
"source" : "department",
"value" : "Engineering",
"operator" : "EQ"
}, {
"sourceType" : "ELEMENT",
"valueType" : "STRING",
"source" : "department",
"value" : "Engineering",
"operator" : "EQ"
} ]
} ],
"formInput" : [ {
"description" : "A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic",
"id" : "00000000-0000-0000-0000-000000000000",
"label" : "input1",
"type" : "STRING"
}, {
"description" : "A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic",
"id" : "00000000-0000-0000-0000-000000000000",
"label" : "input1",
"type" : "STRING"
} ],
"name" : "My form",
"description" : "My form description",
"usedBy" : [ {
"name" : "Access Request Form",
"id" : "61940a92-5484-42bc-bc10-b9982b218cdf",
"type" : "WORKFLOW"
}, {
"name" : "Access Request Form",
"id" : "61940a92-5484-42bc-bc10-b9982b218cdf",
"type" : "WORKFLOW"
} ],
"formElements" : [ {
"id" : "00000000-0000-0000-0000-000000000000",
"validations" : [ {
"validationType" : "REQUIRED"
}, {
"validationType" : "REQUIRED"
} ],
"elementType" : "TEXT",
"config" : {
"label" : "Department"
},
"key" : "department"
}, {
"id" : "00000000-0000-0000-0000-000000000000",
"validations" : [ {
"validationType" : "REQUIRED"
}, {
"validationType" : "REQUIRED"
} ],
"elementType" : "TEXT",
"config" : {
"label" : "Department"
},
"key" : "department"
} ]
}"@
# Creates a form definition.
try {
New-V2024FormDefinition-V2024XSailPointExperimental $XSailPointExperimental
# Below is a request that includes all optional parameters
# New-V2024FormDefinition -V2024XSailPointExperimental $XSailPointExperimental -V2024Body $Body
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling New-V2024FormDefinition"
Write-Host $_.ErrorDetails
}
[Back to top]
create-form-definition-dynamic-schema
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| Body |
Body |
FormDefinitionDynamicSchemaRequest |
(optional) |
Body is the request payload to create a form definition dynamic schema |
Return type
FormDefinitionDynamicSchemaResponse
Responses
| Code |
Description |
Data Type |
| 200 |
Returns a form elements dynamic schema |
FormDefinitionDynamicSchemaResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the item not found |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: application/json
- Accept: application/json
Example
[Back to top]
create-form-definition-file-request
Parameter {formDefinitionID} should match a form definition ID.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| Path |
FormDefinitionID |
String |
True |
FormDefinitionID String specifying FormDefinitionID |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| File |
System.IO.FileInfo |
True |
File specifying the multipart |
|
Return type
FormDefinitionFileUploadResponse
Responses
| Code |
Description |
Data Type |
| 201 |
Returns a new form definition file |
FormDefinitionFileUploadResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the item not found |
SearchFormDefinitionsByTenant400Response |
| 413 |
An error with payload size too large |
SearchFormDefinitionsByTenant400Response |
| 415 |
An error with unsupported media type |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
| 503 |
An external service is not available |
SearchFormDefinitionsByTenant400Response |
- Content-Type: multipart/form-data
- Accept: application/json
Example
[Back to top]
create-form-instance
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| Body |
Body |
CreateFormInstanceRequest |
(optional) |
Body is the request payload to create a form instance |
Return type
FormInstanceResponse
Responses
| Code |
Description |
Data Type |
| 201 |
Returns a new form instance |
FormInstanceResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: application/json
- Accept: application/json
Example
[Back to top]
delete-form-definition
Parameter {formDefinitionID} should match a form definition ID.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| Path |
FormDefinitionID |
String |
True |
Form definition ID |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
Return type
SystemCollectionsHashtable
Responses
| Code |
Description |
Data Type |
| 204 |
Returns an empty body |
SystemCollectionsHashtable |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the item not found |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: Not defined
- Accept: application/json
Example
[Back to top]
export-form-definitions-by-tenant
No parameters required.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| Query |
Offset |
Int64 |
(optional) (default to 0) |
Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in V3 API Standard Collection Parameters. The offset value is record-based, not page-based, and the index starts at 0. |
| Query |
Limit |
Int64 |
(optional) (default to 250) |
Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in V3 API Standard Collection Parameters. If it is not specified, a default limit is used. |
| Query |
Filters |
String |
(optional) |
Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: name: eq, gt, sw, in description: eq, gt, sw, in created: eq, gt, sw, in modified: eq, gt, sw, in |
| Query |
Sorters |
String |
(optional) (default to "name") |
Sort results using the standard syntax described in V3 API Standard Collection Parameters Sorting is supported for the following fields: name, description, created, modified |
Return type
ExportFormDefinitionsByTenant200ResponseInner[]
Responses
| Code |
Description |
Data Type |
| 200 |
Returns a list of form definition objects by tenant used by SP-Config |
ExportFormDefinitionsByTenant200ResponseInner[] |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: Not defined
- Accept: application/json
Example
[Back to top]
get-file-from-s3
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| Path |
FormDefinitionID |
String |
True |
FormDefinitionID Form definition ID |
| Path |
FileID |
String |
True |
FileID String specifying the hashed name of the uploaded file we are retrieving. |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
Return type
System.IO.FileInfo
Responses
| Code |
Description |
Data Type |
| 200 |
Returns a file that is referred to by fileID and associated with the formDefinitionID |
System.IO.FileInfo |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the item not found |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
| 503 |
An external service is not available |
SearchFormDefinitionsByTenant400Response |
- Content-Type: Not defined
- Accept: application/json, image/jpeg, image/png, application/octet-stream
Example
[Back to top]
get-form-definition-by-key
Parameter {formDefinitionID} should match a form definition ID.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| Path |
FormDefinitionID |
String |
True |
Form definition ID |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
Return type
FormDefinitionResponse
Responses
| Code |
Description |
Data Type |
| 200 |
Returns a form definition |
FormDefinitionResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the item not found |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: Not defined
- Accept: application/json
Example
[Back to top]
get-form-instance-by-key
Parameter {formInstanceID} should match a form instance ID.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| Path |
FormInstanceID |
String |
True |
Form instance ID |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
Return type
FormInstanceResponse
Responses
| Code |
Description |
Data Type |
| 200 |
Returns a form instance by its key |
FormInstanceResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the item not found |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: Not defined
- Accept: application/json
Example
[Back to top]
get-form-instance-file
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| Path |
FormInstanceID |
String |
True |
FormInstanceID Form instance ID |
| Path |
FileID |
String |
True |
FileID String specifying the hashed name of the uploaded file we are retrieving. |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
Return type
System.IO.FileInfo
Responses
| Code |
Description |
Data Type |
| 200 |
Returns a file that is referred to by fileID and associated with the formInstanceID |
System.IO.FileInfo |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the item not found |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
| 503 |
An external service is not available |
SearchFormDefinitionsByTenant400Response |
- Content-Type: Not defined
- Accept: application/json, image/jpeg, image/png, application/octet-stream
Example
[Back to top]
import-form-definitions
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| Body |
Body |
[]ExportFormDefinitionsByTenant200ResponseInner |
(optional) |
Body is the request payload to import form definitions |
Return type
ImportFormDefinitions202Response
Responses
| Code |
Description |
Data Type |
| 202 |
Returns statuses of those form definition objects imported |
ImportFormDefinitions202Response |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: application/json
- Accept: application/json
Example
[Back to top]
patch-form-definition
Parameter {formDefinitionID} should match a form definition ID.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| Path |
FormDefinitionID |
String |
True |
Form definition ID |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| Body |
Body |
[]System.Collections.Hashtable |
(optional) |
Body is the request payload to patch a form definition, check: https://jsonpatch.com |
Return type
FormDefinitionResponse
Responses
| Code |
Description |
Data Type |
| 200 |
Returns the form definition updated |
FormDefinitionResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: application/json
- Accept: application/json
Example
[Back to top]
patch-form-instance
Parameter {formInstanceID} should match a form instance ID.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| Path |
FormInstanceID |
String |
True |
Form instance ID |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| Body |
Body |
[]System.Collections.Hashtable |
(optional) |
Body is the request payload to patch a form instance, check: https://jsonpatch.com |
Return type
FormInstanceResponse
Responses
| Code |
Description |
Data Type |
| 200 |
Returns the form instance updated |
FormInstanceResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the item not found |
SearchFormDefinitionsByTenant400Response |
| 409 |
An error with the request property conflicts with stored |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: application/json
- Accept: application/json
Example
[Back to top]
search-form-definitions-by-tenant
No parameters required.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| Query |
Offset |
Int64 |
(optional) (default to 0) |
Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in V3 API Standard Collection Parameters. The offset value is record-based, not page-based, and the index starts at 0. |
| Query |
Limit |
Int64 |
(optional) (default to 250) |
Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in V3 API Standard Collection Parameters. If it is not specified, a default limit is used. |
| Query |
Filters |
String |
(optional) |
Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: name: eq, gt, sw, in description: eq, gt, sw, in created: eq, gt, sw, in modified: eq, gt, sw, in |
| Query |
Sorters |
String |
(optional) (default to "name") |
Sort results using the standard syntax described in V3 API Standard Collection Parameters Sorting is supported for the following fields: name, description, created, modified |
Return type
ListFormDefinitionsByTenantResponse
Responses
| Code |
Description |
Data Type |
| 200 |
Returns a list of form definitions by tenant |
ListFormDefinitionsByTenantResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: Not defined
- Accept: application/json
Example
[Back to top]
search-form-element-data-by-element-id
Parameter {formInstanceID} should match a form instance ID.
Parameter {formElementID} should match a form element ID at the data source configuration.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| Path |
FormInstanceID |
String |
True |
Form instance ID |
| Path |
FormElementID |
String |
True |
Form element ID |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| Query |
Limit |
Int64 |
(optional) (default to 250) |
Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in V3 API Standard Collection Parameters. If it is not specified, a default limit is used. |
| Query |
Filters |
String |
(optional) |
Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: value: eq, ne, in Supported composite operators: not Only a single not may be used, and it can only be used with the in operator. The not composite operator must be used in front of the field. For example, the following is valid: not value in (""ID01"") |
| Query |
Query |
String |
(optional) |
String that is passed to the underlying API to filter other (non-ID) fields. For example, for access profile data sources, this string will be passed to the access profile api and used with a ""starts with"" filter against several fields. |
Return type
ListFormElementDataByElementIDResponse
Responses
| Code |
Description |
Data Type |
| 200 |
Retrieves dynamic data to aid in correctly completing a valid form by form element ID from data source configuration |
ListFormElementDataByElementIDResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the item not found |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: Not defined
- Accept: application/json
Example
[Back to top]
search-form-instances-by-tenant
No parameters required.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
Return type
ListFormInstancesByTenantResponse
Responses
| Code |
Description |
Data Type |
| 200 |
Returns a list of form instances by tenant |
ListFormInstancesByTenantResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: Not defined
- Accept: application/json
Example
[Back to top]
search-pre-defined-select-options
No parameters required.
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
Return type
ListPredefinedSelectOptionsResponse
Responses
| Code |
Description |
Data Type |
| 200 |
Returns a list of available predefined select options |
ListPredefinedSelectOptionsResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: Not defined
- Accept: application/json
Example
[Back to top]
show-preview-data-source
Parameters
| Param Type |
Name |
Data Type |
Required |
Description |
| Path |
FormDefinitionID |
String |
True |
Form definition ID |
| XSailPointExperimental |
String |
True (default to "true") |
Use this header to enable this experimental API. |
|
| Query |
Limit |
Int64 |
(optional) (default to 10) |
Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in V3 API Standard Collection Parameters. If it is not specified, a default limit is used. |
| Query |
Filters |
String |
(optional) |
Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: value: eq, ne, in Supported composite operators: not Only a single not may be used, and it can only be used with the in operator. The not composite operator must be used in front of the field. For example, the following is valid: not value in (""ID01"") |
| Query |
Query |
String |
(optional) |
String that is passed to the underlying API to filter other (non-ID) fields. For example, for access profile data sources, this string will be passed to the access profile api and used with a ""starts with"" filter against several fields. |
| Body |
FormElementPreviewRequest |
FormElementPreviewRequest |
(optional) |
Body is the request payload to create a form definition dynamic schema |
Return type
PreviewDataSourceResponse
Responses
| Code |
Description |
Data Type |
| 200 |
Returns a preview of a form definition data source |
PreviewDataSourceResponse |
| 400 |
An error with the request occurred |
SearchFormDefinitionsByTenant400Response |
| 401 |
An error with the authorization occurred |
SearchFormDefinitionsByTenant400Response |
| 403 |
An error with the user permissions occurred |
SearchFormDefinitionsByTenant400Response |
| 404 |
An error with the item not found |
SearchFormDefinitionsByTenant400Response |
| 429 |
Too many requests |
ModelError |
| 500 |
An internal server error occurred |
SearchFormDefinitionsByTenant400Response |
- Content-Type: application/json
- Accept: application/json
Example
[Back to top]