All URIs are relative to https://saapi.realgreen.com
| Method | HTTP request | Description |
|---|---|---|
| Invoke-RGSASecurityCodeGet | GET /SecurityCode | Returns all security code parameters in the database. |
| Invoke-RGSASecurityCodeIdGet | GET /SecurityCode/{id} | Returns a single security code record that corresponds to the provided ID. |
SecurityCode[] Invoke-RGSASecurityCodeGet
[-ApiKey]
Returns all security code parameters in the database.
$ApiKey = "MyApiKey" # String | API Key
# Returns all security code parameters in the database.
try {
$Result = Invoke-RGSASecurityCodeGet -ApiKey $ApiKey
} catch {
Write-Host ("Exception occurred when calling Invoke-RGSASecurityCodeGet: {0}" -f ($_.ErrorDetails | ConvertFrom-Json))
Write-Host ("Response headers: {0}" -f ($_.Exception.Response.Headers | ConvertTo-Json))
}| Name | Type | Description | Notes |
|---|---|---|---|
| ApiKey | String | API Key |
SecurityCode[] (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]
SecurityCode Invoke-RGSASecurityCodeIdGet
[-Id]
[-ApiKey]
Returns a single security code record that corresponds to the provided ID.
$Id = 56 # Int32 |
$ApiKey = "MyApiKey" # String | API Key
# Returns a single security code record that corresponds to the provided ID.
try {
$Result = Invoke-RGSASecurityCodeIdGet -Id $Id -ApiKey $ApiKey
} catch {
Write-Host ("Exception occurred when calling Invoke-RGSASecurityCodeIdGet: {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 |
SecurityCode (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]