Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Credential stores can be accessed and modified through this API using four services: GET, POST, PUT, and PATCH. These four services allow for the retrieval, creation, complete update, and partial update of credential stores. 

Include Page
REST V1 Authentication
REST V1 Authentication

...

GET (Using Query Parameters)

This GET service will return a list of credential stores in the form of JSON objects based on the query parameters id, name, implementation class, is active, and is custom. Credential stores are only returned if they match all of the specified query parameters. If no query parameters are given this request will return the entire list of credential stores.

Info
titleAPI URLs

http://host:port/flexdeploy/rest/v2/administration/security/credentialstore?

Append the following character sequences to the above URL to specify Query parameters.
Use '&' between successive query parameters: 

credentialStoreId={id}

credentialStoreName={name}

isActive={boolean}

credentialStoreDefId={id}

Examples:
To search by name only:

http://host:port/flexdeploy/rest/v2/administration/security/credentialstore?credentialStoreName=Name

To search by NAME IS ACTIVE:

http://host:port/flexdeploy/rest/v2/administration/security/credentialstore?credentialStoreName=Name&isActive=true

...

Code Block
themeEclipse
titleCredentialStoreProvider - 10000
{
	"description": "description of credential store changed",
	"isActive": true,
	"credentialStoreProperties": [
	{
		"credentialStorePropertyId": 13000,
		"credentialStorePropDefId": 12000,
		"credentialStoreId": 10000,
		"propertyValue": "*****",
		"isEncrypted": true
	},
	{
		"credentialStorePropertyId": 13001,
		"credentialStorePropDefId": 12001,
		"credentialStoreId": 10000,
		"propertyValue": "new property value",
		"isEncrypted": false
	}],
	"credentialStoreId": 10000,
	"credentialStoreDefId": 11001,
	"credentialStoreName": "credential store name changed"
}

PATCH

This PATCH service will update an existing credential store with the information passed through a JSON object. If an attribute of the JSON is null it will not be updated in the credential store. Child rows that are included in a PATCH will be added, but existing rows will still remain.

Info
titleAPI URL

http://host:port/flexdeploy/rest/v2/administration/security/credentialstore/{Id}

...

Response Codes

HTTP CodeDescription
200Credential store was found and updated
400Bad request
401Authentication failure
403Authorization failure (no access to resource)
404Credential store not found
500Unexpected internal server error

Example

If we had an credential store in our database with an Id of 10000 and had the following attributes

...