PUT api/connection/{connectionId}/credentials
Replaces the stored credentials for the specified connection with the provided credentials.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| connectionId |
The public id of the connection to be updated. |
string |
Required |
Body Parameters
The credential information to insert.
ConnectionCredentials| Name | Description | Type | Additional 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:
Response Information
Resource Description
200 Ok if successful
IHttpActionResultNone.
Response Formats
application/json, text/json, application/scim+json
Sample:
Sample not available.