PUT api/connection/{connectionId}/credentials

Replaces the stored credentials for the specified connection with the provided credentials.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
connectionId

The public id of the connection to be updated.

string

Required

Body Parameters

The credential information to insert.

ConnectionCredentials
NameDescriptionTypeAdditional information
AccessKey

string

None.

Username

string

None.

Password

string

None.

Request Formats

application/json, text/json, application/scim+json

Sample:
{
  "AccessKey": "sample string 1",
  "Username": "sample string 2",
  "Password": "sample string 3"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ConnectionCredentials'.

Response Information

Resource Description

200 Ok if successful

IHttpActionResult

None.

Response Formats

application/json, text/json, application/scim+json

Sample:

Sample not available.