All URIs are relative to https://saapi.realgreen.com
| Method | HTTP request | Description |
|---|---|---|
| Invoke-RGSAPriceTableAvailableAvailableGet | GET /PriceTable/Available/{available} | Returns a list of price tables that are (available=true) or are not (available=false) available to use. |
| Invoke-RGSAPriceTableGet | GET /PriceTable | Returns all price table headers in the database. |
| Invoke-RGSAPriceTableIdDetailedGet | GET /PriceTable/{id}/Detailed | Returns a detailed price table record that includes the size and price ranges that correspond to the provided ID. |
| Invoke-RGSAPriceTableIdGet | GET /PriceTable/{id} | Returns a single price table that matches the provided ID. |
PriceTable[] Invoke-RGSAPriceTableAvailableAvailableGet
[-Available]
[-ApiKey]
Returns a list of price tables that are (available=true) or are not (available=false) available to use.
$Available = $true # Boolean |
$ApiKey = "MyApiKey" # String | API Key
# Returns a list of price tables that are (available=true) or are not (available=false) available to use.
try {
$Result = Invoke-RGSAPriceTableAvailableAvailableGet -Available $Available -ApiKey $ApiKey
} catch {
Write-Host ("Exception occurred when calling Invoke-RGSAPriceTableAvailableAvailableGet: {0}" -f ($_.ErrorDetails | ConvertFrom-Json))
Write-Host ("Response headers: {0}" -f ($_.Exception.Response.Headers | ConvertTo-Json))
}| Name | Type | Description | Notes |
|---|---|---|---|
| Available | Boolean | ||
| ApiKey | String | API Key |
PriceTable[] (PSCustomObject)
No authorization required
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
PriceTable[] Invoke-RGSAPriceTableGet
[-ApiKey]
Returns all price table headers in the database.
$ApiKey = "MyApiKey" # String | API Key
# Returns all price table headers in the database.
try {
$Result = Invoke-RGSAPriceTableGet -ApiKey $ApiKey
} catch {
Write-Host ("Exception occurred when calling Invoke-RGSAPriceTableGet: {0}" -f ($_.ErrorDetails | ConvertFrom-Json))
Write-Host ("Response headers: {0}" -f ($_.Exception.Response.Headers | ConvertTo-Json))
}| Name | Type | Description | Notes |
|---|---|---|---|
| ApiKey | String | API Key |
PriceTable[] (PSCustomObject)
No authorization required
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DetailedPriceTable Invoke-RGSAPriceTableIdDetailedGet
[-Id]
[-ApiKey]
Returns a detailed price table record that includes the size and price ranges that correspond to the provided ID.
$Id = 56 # Int32 |
$ApiKey = "MyApiKey" # String | API Key
# Returns a detailed price table record that includes the size and price ranges that correspond to the provided ID.
try {
$Result = Invoke-RGSAPriceTableIdDetailedGet -Id $Id -ApiKey $ApiKey
} catch {
Write-Host ("Exception occurred when calling Invoke-RGSAPriceTableIdDetailedGet: {0}" -f ($_.ErrorDetails | ConvertFrom-Json))
Write-Host ("Response headers: {0}" -f ($_.Exception.Response.Headers | ConvertTo-Json))
}| Name | Type | Description | Notes |
|---|---|---|---|
| Id | Int32 | ||
| ApiKey | String | API Key |
DetailedPriceTable (PSCustomObject)
No authorization required
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
PriceTable Invoke-RGSAPriceTableIdGet
[-Id]
[-ApiKey]
Returns a single price table that matches the provided ID.
$Id = 56 # Int32 |
$ApiKey = "MyApiKey" # String | API Key
# Returns a single price table that matches the provided ID.
try {
$Result = Invoke-RGSAPriceTableIdGet -Id $Id -ApiKey $ApiKey
} catch {
Write-Host ("Exception occurred when calling Invoke-RGSAPriceTableIdGet: {0}" -f ($_.ErrorDetails | ConvertFrom-Json))
Write-Host ("Response headers: {0}" -f ($_.Exception.Response.Headers | ConvertTo-Json))
}| Name | Type | Description | Notes |
|---|---|---|---|
| Id | Int32 | ||
| ApiKey | String | API Key |
PriceTable (PSCustomObject)
No authorization required
- Content-Type: Not defined
- Accept: text/plain, application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]