Add data source user (gateways)
Updated: June 12, 2017
The Add data source principal operation adds a supplied user to a given data source. This user will then have permission to use the data source.
POST https://api.powerbi.com/v1.0/myorg/gateways/{gateway_id}/datasources/{data_source_id}/users
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 |
Body schema
{
"accessRight": "Read",
"emailAddress": "user1@contoso.com"
}
Empty
Status code
| Code | Description |
|---|---|
| 200 | OK. Indicates success. |
| 404 | Not found |
| 403 | Unauthorized |
| 500 | Internal service error |
Show: