Patch data source (gateways)
Updated: June 23, 2017
The Patch data source operation updates the credentials for a data source.
Required scope: Dataset.ReadWrite.All
PATCH https://api.powerbi.com/v1.0/myorg/gateways/{gateway_id}/datasources/{data_source_id}
Uri parameter
| Name | Description | Data Type |
|---|---|---|
| gateway_id | Guid of the gateway to use. You can get the Gateway id from the Get Gateways operation. | String |
| data_source_id | Guid of the data source to get. You can get the Data source id from the Get data sources operation. | String |
Header
Authorization: Bearer eyJ0eX ... FWSXfwtQ
Body schema
{
"credentialDetails": {
"credentials": "ABEF==",
"encryptionAlgorithm": "RSA-OAEP|None",
"encryptedConnection": "Encrypted|NotEncrypted",
"privacyLevel": "None|Public|Organizational|Private",
"credentialType": "Basic|Windows|Anonymous|…"
}
}
Status code
| Code | Description |
|---|---|
| 200 | OK. Indicates success. |
| 400 | Bad request |
| 403 | Unauthorized |
| 404 | Not found |
| 500 | Internal service error |
Content-Type
application/json
Show: