Credentials Migration Integration Point

The integration point migrates credentials stored in secret between different versions of the same application. This is an important step when upgrading an application to a newer version.

Operations

GET

The GET request exports credential’s data from an older version of an application.

Request
GET http://[hostName]:[portNumber]/[api-context-root]/credentials/export

The request returns a JSON file with secretly-stored credentials. The response file has a unique name say, <uniquefilename>.json.

Response
{
  "credentialKey": "DataExchangeExportNotificationClient",
  "username": "TestUser3",
  "password": "<credentialpassword>"
}