All URIs are relative to https://saapi.realgreen.com
| Method | HTTP request | Description |
|---|---|---|
| Invoke-RGSASuffixFullSuffixFullsuffixGet | GET /Suffix/FullSuffix/{fullsuffix} | Returns a single suffix record that is assigned the provided full suffix. |
| Invoke-RGSASuffixGet | GET /Suffix | Returns all suffixes in the database. |
| Invoke-RGSASuffixIdGet | GET /Suffix/{id} | Returns a single suffix that corresponds to the provided ID. |
Suffix Invoke-RGSASuffixFullSuffixFullsuffixGet
[-Fullsuffix]
[-ApiKey]
Returns a single suffix record that is assigned the provided full suffix.
$Fullsuffix = "MyFullsuffix" # String |
$ApiKey = "MyApiKey" # String | API Key
# Returns a single suffix record that is assigned the provided full suffix.
try {
$Result = Invoke-RGSASuffixFullSuffixFullsuffixGet -Fullsuffix $Fullsuffix -ApiKey $ApiKey
} catch {
Write-Host ("Exception occurred when calling Invoke-RGSASuffixFullSuffixFullsuffixGet: {0}" -f ($_.ErrorDetails | ConvertFrom-Json))
Write-Host ("Response headers: {0}" -f ($_.Exception.Response.Headers | ConvertTo-Json))
}| Name | Type | Description | Notes |
|---|---|---|---|
| Fullsuffix | String | ||
| ApiKey | String | API Key |
Suffix (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]
Suffix[] Invoke-RGSASuffixGet
[-ApiKey]
Returns all suffixes in the database.
$ApiKey = "MyApiKey" # String | API Key
# Returns all suffixes in the database.
try {
$Result = Invoke-RGSASuffixGet -ApiKey $ApiKey
} catch {
Write-Host ("Exception occurred when calling Invoke-RGSASuffixGet: {0}" -f ($_.ErrorDetails | ConvertFrom-Json))
Write-Host ("Response headers: {0}" -f ($_.Exception.Response.Headers | ConvertTo-Json))
}| Name | Type | Description | Notes |
|---|---|---|---|
| ApiKey | String | API Key |
Suffix[] (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]
Suffix Invoke-RGSASuffixIdGet
[-Id]
[-ApiKey]
Returns a single suffix that corresponds to the provided ID.
$Id = "MyId" # String |
$ApiKey = "MyApiKey" # String | API Key
# Returns a single suffix that corresponds to the provided ID.
try {
$Result = Invoke-RGSASuffixIdGet -Id $Id -ApiKey $ApiKey
} catch {
Write-Host ("Exception occurred when calling Invoke-RGSASuffixIdGet: {0}" -f ($_.ErrorDetails | ConvertFrom-Json))
Write-Host ("Response headers: {0}" -f ($_.Exception.Response.Headers | ConvertTo-Json))
}| Name | Type | Description | Notes |
|---|---|---|---|
| Id | String | ||
| ApiKey | String | API Key |
Suffix (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]