# cloudQuery

Requests Data from a CloudGateway Enpoint

### Parameters

```
{
    AppName: "MyCloudGateway", //The Name in the ApiKey List
    Endpoint: "LocalFirebird", // Configured Endpoint
    SqlStatementId: "fbGetAddress", //Optional statemnt id, depending on the Plugin
    Parameters: { //Optional Parameters
      "id": 1  
    },
    
}
```

### Example Usages

#### Query an address from a firebird database

```javascript
   brixxApi.cloudQuery({
    AppName: "MyCloudGateway",
    Endpoint: "LocalFirebird",
    SqlStatementId: "fbGetAddress",
    Parameters: {
      "id": 1  
    },
    
})
```

####
