Get data source (gateways)
Updated: June 23, 2017
The Get Data source operation returns a JSON object which includes information about a registered data source for a gateway.
GET https://api.powerbi.com/v1.0/myorg/gateways/{gateway_id}/datasources/{data_source_id}
Header
Authorization: Bearer eyJ0eX ... FWSXfwtQ
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 |
Response will be a data source entity.
{
"id": "2d2ba027-7e75-4940-9b2d-25ca2974b57d",
"datasourceName": "Contoso Data Source",
"gatewayId": "575effbc-4542-4def-8012-2d2a3a17d211",
"datasourceType": "Sql|AnalysisServices|...",
"connectionDetails": {"server":"serverName","database":"databaseName"},
"credentialType": "Windows|Basic|...",
}
Status code
| Code | Description |
|---|---|
| 200 | OK. Indicates success. |
| 404 | Not found |
| 403 | Unauthorized |
| 500 | Internal service error |
Content-Type
application/json
Show: