Get Gateway

 

Updated: June 12, 2017



Request | Response

The Get Gateway operation returns a JSON object for a gateway entity.

GET https://api.powerbi.com/v1.0/myorg/gateways/{gateway_id}

Header

Authorization: Bearer eyJ0eX ... FWSXfwtQ

Uri parameter

NameDescriptionData Type
gateway_idGuid of the gateway to use. You can get the Gateway id from the Get Gateways operation.String

Status code

CodeDescription
200OK. Indicates success. A Gateway entity and gateway status are returned.

Content-Type

application/json

Body Example

The following is an example of a JSON response.

{
  "id": "575effbc-4542-4def-8012-2d2a3a17d211",
  "name": "Contoso Gateway",
  "type": "Personal|Resource",
  "publicKey": {"exponent":"AQAB", "modulus":"ABEF=="}
  "gatewayAnnotation": "…"
  "gatewayStatus": "Live|NotInstalled|NotReachable|Installed"
}

Show: