Skip to main content

ParameterStorage

The Parameter Storage is SailPoint's centralized repository for authentication, authorization, and connection configurations, stored as typed Parameters.

The APIs can be used to input Parameters, which can then be referenced by other services, such as Workflow configurations. When these services are executed, the relevant values are fetched via an internal API (not documented here).

The usage of Parameters can be monitored via References managed by Parameter Storage. References provide an indirect mapping between a Parameter and its usage (e.g., within a Workflow), allowing for reports such as "Parameter X is used in Workflow Y" via APIs.

A Parameter is a named instance of typed configuration, where the state is stored as Fields. These Fields are either Public (cleartext, searchable) or Private (encrypted).

Parameter Types are grouped and fall into three Categories: Authentication, Authorization, and Connection.

Parameters are strongly typed; each Type's fields are named and exposed to the consumer. This means that if a service states that it expects a Credential Type, it will receive a Parameter with a Username and Password.

Fields are named, typed variables within a Parameter; the Fields on a Parameter depend on the Parameter's Type. Fields contain customer-provided data that will be referenced by another service, and their typing determines whether they're stored in cleartext or encrypted.

The Specification documents the supported Categories, Types, Fields, Field Names, and their relationships.

A Reference is an indirect pointer to a Parameter, where each usage of a Parameter has a corresponding Reference. This allows for usage tracking and safe deletion.

All URIs are relative to https://sailpoint.api.identitynow.com/v2025

MethodHTTP requestDescription
New-V2025ParameterPOST /parameter-storage/parametersAdd a new parameter.
Remove-V2025ParameterDELETE /parameter-storage/parameters/{id}Delete a parameter.
Get-V2025AttestationDocumentGET /parameter-storage/attestationGet an attestation document.
Get-V2025ParameterGET /parameter-storage/parameters/{id}Get a specific parameter.
Get-V2025ParameterReferencesGET /parameter-storage/parameters/{id}/referencesGet parameter references.
Get-V2025ParameterStorageSpecificationGET /parameter-storage/specificationGet specifications for parameter types.
Search-V2025ParametersGET /parameter-storage/parametersQuery stored parameters.
Update-V2025ParameterPATCH /parameter-storage/parameters/{id}Update a parameter.

create-parameter

Add a new parameter.

API Spec

Parameters

Param TypeNameData TypeRequiredDescription
BodyParameterStorageNewParameterParameterStorageNewParameter(optional)The parameter to add to the store.

Return type

ParameterStorageParameter

Responses

CodeDescriptionData Type
201Created Parameter.ParameterStorageParameter
400Client Error - Returned if the request body is invalid.ErrorResponseDto
401Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.ListAccessProfiles401Response
403Forbidden - Returned if the user you are running as, doesn't have access to this end-point.ErrorResponseDto
429Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.ListAccessProfiles429Response
500Internal Server Error - Returned if there is an unexpected error.ErrorResponseDto

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

Example

$ParameterStorageNewParameter = @"{
"privateFields" : "ZW5jcnlwdGVkIHBhc3N3b3JkIGhlcmUu",
"name" : "Credentials for server.",
"description" : "Credentials for server.",
"publicFields" : "{\"username\": \"username\"}",
"ownerId" : "c0b4568a4fe7458c434ee77d1fbt156b",
"type" : "1.1"
}"@

# Add a new parameter.

try {
New-V2025Parameter

# Below is a request that includes all optional parameters
# New-V2025Parameter -ParameterStorageNewParameter $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling New-V2025Parameter"
Write-Host $_.ErrorDetails
}

[Back to top]

delete-parameter

Delete a parameter. Will only delete parameters without existing references.

API Spec

Parameters

Param TypeNameData TypeRequiredDescription
PathIdStringTrueThe ID of the parameter to be deleted.

Return type

(empty response body)

Responses

CodeDescriptionData Type
200Parameter deleted.
400Client Error - Returned if the request body is invalid.ErrorResponseDto
401Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.ListAccessProfiles401Response
403Forbidden - Returned if the user you are running as, doesn't have access to this end-point.ErrorResponseDto
404Not Found - returned if the request URL refers to a resource or object that does not existErrorResponseDto
409Conflict - Indicates that the request could not be processed because of conflict in the current state of the resource.
429Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.ListAccessProfiles429Response
500Internal Server Error - Returned if there is an unexpected error.ErrorResponseDto

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, schema

Example

$Id = "58de858b-83d9-4563-9e15-7393594c684a" # String | The ID of the parameter to be deleted.

# Delete a parameter.

try {
Remove-V2025Parameter -Id $Id

# Below is a request that includes all optional parameters
# Remove-V2025Parameter -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Remove-V2025Parameter"
Write-Host $_.ErrorDetails
}

[Back to top]

get-attestation-document

Get an attestation document, and perform x25519 handshake to enabled end-to-end encrypted transport of parameter private fields.

API Spec

Parameters

Param TypeNameData TypeRequiredDescription
QueryKeyStringTrueBase64Url encoded public key

Return type

ParameterStorageAttestationDocument

Responses

CodeDescriptionData Type
200Returns the attestation document. This contains the public key needed to add a parameter to the store.ParameterStorageAttestationDocument
400Client Error - Returned if the request body is invalid.ErrorResponseDto
401Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.ListAccessProfiles401Response
403Forbidden - Returned if the user you are running as, doesn't have access to this end-point.ErrorResponseDto
429Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.ListAccessProfiles429Response
500Internal Server Error - Returned if there is an unexpected error.ErrorResponseDto

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

$Key = "cHVibGljIGtleSBnb2VzIGhlcmU=" # String | Base64Url encoded public key

# Get an attestation document.

try {
Get-V2025AttestationDocument -Key $Key

# Below is a request that includes all optional parameters
# Get-V2025AttestationDocument -Key $Key
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-V2025AttestationDocument"
Write-Host $_.ErrorDetails
}

[Back to top]

get-parameter

Get a parameter by ID. This will only return the public fields for the parameter.

API Spec

Parameters

Param TypeNameData TypeRequiredDescription
PathIdStringTrueThe ID of the parameter to be fetched

Return type

ParameterStorageParameter

Responses

CodeDescriptionData Type
200Return Parameter.ParameterStorageParameter
400Client Error - Returned if the request body is invalid.ErrorResponseDto
401Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.ListAccessProfiles401Response
403Forbidden - Returned if the user you are running as, doesn't have access to this end-point.ErrorResponseDto
404Not Found - returned if the request URL refers to a resource or object that does not existErrorResponseDto
429Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.ListAccessProfiles429Response
500Internal Server Error - Returned if there is an unexpected error.ErrorResponseDto

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

$Id = "58de858b-83d9-4563-9e15-7393594c684a" # String | The ID of the parameter to be fetched

# Get a specific parameter.

try {
Get-V2025Parameter -Id $Id

# Below is a request that includes all optional parameters
# Get-V2025Parameter -Id $Id
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-V2025Parameter"
Write-Host $_.ErrorDetails
}

[Back to top]

get-parameter-references

Get the references for a given parameter.

API Spec

Parameters

Param TypeNameData TypeRequiredDescription
PathIdStringTrueThe ID of the parameter which you want to fetch the references for.
QuerySortersString(optional)Sort results using the standard syntax described in V3 API Standard Collection Parameters Sorting is supported for the following fields: id, consumerId, parameterId, name, usageHint
QueryLimitInt32(optional) (default to 250)Max number of results to return. See V3 API Standard Collection Parameters for more information.
QueryOffsetInt32(optional) (default to 0)Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.

Return type

ParameterStorageReference[]

Responses

CodeDescriptionData Type
200Return references for given parameter.ParameterStorageReference[]
400Client Error - Returned if the request body is invalid.ErrorResponseDto
401Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.ListAccessProfiles401Response
403Forbidden - Returned if the user you are running as, doesn't have access to this end-point.ErrorResponseDto
404Not Found - returned if the request URL refers to a resource or object that does not existErrorResponseDto
429Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.ListAccessProfiles429Response
500Internal Server Error - Returned if there is an unexpected error.ErrorResponseDto

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

$Id = "58de858b-83d9-4563-9e15-7393594c684a" # String | The ID of the parameter which you want to fetch the references for.
$Sorters = "consumerId,name" # 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: **id, consumerId, parameterId, name, usageHint** (optional)
$Limit = 250 # Int32 | Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 250)
$Offset = 0 # Int32 | Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 0)

# Get parameter references.

try {
Get-V2025ParameterReferences -Id $Id

# Below is a request that includes all optional parameters
# Get-V2025ParameterReferences -Id $Id -Sorters $Sorters -Limit $Limit -Offset $Offset
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-V2025ParameterReferences"
Write-Host $_.ErrorDetails
}

[Back to top]

get-parameter-storage-specification

experimental

This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.

Get the specifications for all parameter types. All parameters must conform to this specification document.

API Spec

Parameters

Param TypeNameData TypeRequiredDescription
AcceptLanguageString(optional) (default to "en")The i18n internationalization code for the language that the spec is in. Defaults to english.

Return type

(empty response body)

Responses

CodeDescriptionData Type
200Returns the JSON spec in the language chosen.
400Client Error - Returned if the request body is invalid.ErrorResponseDto
401Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.ListAccessProfiles401Response
403Forbidden - Returned if the user you are running as, doesn't have access to this end-point.ErrorResponseDto
429Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.ListAccessProfiles429Response
500Internal Server Error - Returned if there is an unexpected error.ErrorResponseDto

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

$AcceptLanguage = "en" # String | The i18n internationalization code for the language that the spec is in. Defaults to english. (optional) (default to "en")

# Get specifications for parameter types.

try {
Get-V2025ParameterStorageSpecification

# Below is a request that includes all optional parameters
# Get-V2025ParameterStorageSpecification -AcceptLanguage $AcceptLanguage
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-V2025ParameterStorageSpecification"
Write-Host $_.ErrorDetails
}

[Back to top]

search-parameters

Query a stored parameter.

API Spec

Parameters

Param TypeNameData TypeRequiredDescription
QueryFiltersString(optional)Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: id: eq, ne name: eq, in, co description: co ownerId: eq type: eq, sw
QuerySortersString(optional)Sort results using the standard syntax described in V3 API Standard Collection Parameters Sorting is supported for the following fields: id, name, ownerId, type, description, lastModifiedAt, lastModifiedBy, privateFieldsLastModifiedAt, privateFieldsLastModifiedAt
QueryOffsetInt32(optional) (default to 0)Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.
QueryLimitInt32(optional) (default to 250)Max number of results to return. See V3 API Standard Collection Parameters for more information.

Return type

ParameterStorageParameter[]

Responses

CodeDescriptionData Type
200Search returned results.ParameterStorageParameter[]
400Client Error - Returned if the request body is invalid.ErrorResponseDto
401Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.ListAccessProfiles401Response
403Forbidden - Returned if the user you are running as, doesn't have access to this end-point.ErrorResponseDto
429Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.ListAccessProfiles429Response
500Internal Server Error - Returned if there is an unexpected error.ErrorResponseDto

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

$Filters = 'id eq 550e8400-e29b-41d4-a716-446655440000' # 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:  **id**: *eq, ne*  **name**: *eq, in, co*  **description**: *co*  **ownerId**: *eq*  **type**: *eq, sw* (optional)
$Sorters = "type,name" # 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: **id, name, ownerId, type, description, lastModifiedAt, lastModifiedBy, privateFieldsLastModifiedAt, privateFieldsLastModifiedAt** (optional)
$Offset = 0 # Int32 | Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 0)
$Limit = 250 # Int32 | Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 250)

# Query stored parameters.

try {
Search-V2025Parameters

# Below is a request that includes all optional parameters
# Search-V2025Parameters -Filters $Filters -Sorters $Sorters -Offset $Offset -Limit $Limit
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Search-V2025Parameters"
Write-Host $_.ErrorDetails
}

[Back to top]

update-parameter

Update a parameter. You cannot change a parameter's type once set. Only the name, owner, description, public fields, and private fields can be updated. Private field updates are made via JWE AES256 encrypted blobs.

API Spec

Parameters

Param TypeNameData TypeRequiredDescription
PathIdStringTrueThe ID of the parameter to be updated.
BodyParameterStorageUpdateParameterParameterStorageUpdateParameter(optional)The updated parameter. Supports both full and RFC 6902 JSON Patch updates. For RFC 6902 JSON Patch updates, move and copy operations are not supported for privateField updates.

Return type

ParameterStorageParameter

Responses

CodeDescriptionData Type
200Updated Parameter.ParameterStorageParameter
400Client Error - Returned if the request body is invalid.ErrorResponseDto
401Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.ListAccessProfiles401Response
403Forbidden - Returned if the user you are running as, doesn't have access to this end-point.ErrorResponseDto
404Not Found - returned if the request URL refers to a resource or object that does not existErrorResponseDto
409Conflict - Indicates that the request could not be processed because of conflict in the current state of the resource.
429Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.ListAccessProfiles429Response
500Internal Server Error - Returned if there is an unexpected error.ErrorResponseDto

HTTP request headers

  • Content-Type: application/json, application/json-patch+json
  • Accept: application/json, schema

Example

$Id = "58de858b-83d9-4563-9e15-7393594c684a" # String | The ID of the parameter to be updated.
$ParameterStorageUpdateParameter = @"{
"privateFields" : "ZW5jcnlwdGVkIHBhc3N3b3JkIGhlcmUu",
"name" : "Credentials for server.",
"description" : "Credentials for server.",
"publicFields" : "{\"username\": \"username\"}",
"ownerId" : "c0b4568a4fe7458c434ee77d1fbt156b"
}{
"privateFields" : "ZW5jcnlwdGVkIHBhc3N3b3JkIGhlcmUu",
"name" : "Credentials for server.",
"description" : "Credentials for server.",
"publicFields" : "{\"username\": \"username\"}",
"ownerId" : "c0b4568a4fe7458c434ee77d1fbt156b"
}"@

# Update a parameter.

try {
Update-V2025Parameter -Id $Id

# Below is a request that includes all optional parameters
# Update-V2025Parameter -Id $Id -ParameterStorageUpdateParameter $Result
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Update-V2025Parameter"
Write-Host $_.ErrorDetails
}

[Back to top]