OLTServicePortProfileAPI
All URIs are relative to https://use1-omada-northbound.tplinkcloud.com
| Method | HTTP request | Description |
|---|---|---|
| AddServicePortProfile | Post /openapi/v1/{omadacId}/sites/{siteId}/olts/{deviceMac}/pon/profile/service-port/profiles/add | Create new service port profile |
| AddServicePortProfileDetail | Post /openapi/v1/{omadacId}/sites/{siteId}/olts/{deviceMac}/pon/profile/service-port/profiles/detail/add | Create new service port profile detail |
| DeleteServicePortProfile | Post /openapi/v1/{omadacId}/sites/{siteId}/olts/{deviceMac}/pon/profile/service-port/profiles/delete | Delete an existing service port profile |
| DeleteServicePortProfileDetail | Post /openapi/v1/{omadacId}/sites/{siteId}/olts/{deviceMac}/pon/profile/service-port/profiles/detail/delete | Delete an existing service port profile detail |
| EditServicePortProfile | Post /openapi/v1/{omadacId}/sites/{siteId}/olts/{deviceMac}/pon/profile/service-port/profiles/edit | Modify an existing service port profile |
| EditServicePortProfileDetail | Post /openapi/v1/{omadacId}/sites/{siteId}/olts/{deviceMac}/pon/profile/service-port/profiles/detail/edit | Modify an existing service port profile detail |
| GetServicePortProfileList | Get /openapi/v1/{omadacId}/sites/{siteId}/olts/{deviceMac}/pon/profile/service-port/profiles/list | Get service port profile list |
| GetServicePortProfileListDetail | Get /openapi/v1/{omadacId}/sites/{siteId}/olts/{deviceMac}/pon/profile/service-port/profiles/detail/list | Get service port profile list detail |
| GetServicePortProfilePage | Get /openapi/v1/{omadacId}/sites/{siteId}/olts/{deviceMac}/pon/profile/service-port/profiles/page | Get service port profile page |
| GetServicePortProfilePageDetail | Get /openapi/v1/{omadacId}/sites/{siteId}/olts/{deviceMac}/pon/profile/service-port/profiles/detail/page | Get service port profile page detail |
AddServicePortProfile
OperationResponseDeviceResponseBodyServicePortProfileModifyDTO AddServicePortProfile(ctx, omadacId, siteId, deviceMac).ServicePortProfileModifyDTO(servicePortProfileModifyDTO).Execute()
Create new service port profile
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Tohaker/omada-go-sdk/omada"
)
func main() {
omadacId := "omadacId_example" // string | Omada ID
siteId := "siteId_example" // string | Site ID
deviceMac := "deviceMac_example" // string | Device MAC address, like AA-BB-CC-DD-EE-FF
servicePortProfileModifyDTO := *openapiclient.NewServicePortProfileModifyDTO("ServicePortProfileId_example") // ServicePortProfileModifyDTO |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.OLTServicePortProfileAPI.AddServicePortProfile(context.Background(), omadacId, siteId, deviceMac).ServicePortProfileModifyDTO(servicePortProfileModifyDTO).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OLTServicePortProfileAPI.AddServicePortProfile``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AddServicePortProfile`: OperationResponseDeviceResponseBodyServicePortProfileModifyDTO
fmt.Fprintf(os.Stdout, "Response from `OLTServicePortProfileAPI.AddServicePortProfile`: %v\n", resp)
}
Path Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| omadacId | string | Omada ID | |
| siteId | string | Site ID | |
| deviceMac | string | Device MAC address, like AA-BB-CC-DD-EE-FF |
Other Parameters
Other parameters are passed through a pointer to a apiAddServicePortProfileRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
servicePortProfileModifyDTO | ServicePortProfileModifyDTO | |
Return type
OperationResponseDeviceResponseBodyServicePortProfileModifyDTO
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
AddServicePortProfileDetail
OperationResponseDeviceResponseBodyVoid AddServicePortProfileDetail(ctx, omadacId, siteId, deviceMac).ServicePortProfileDetailDTO(servicePortProfileDetailDTO).Execute()
Create new service port profile detail
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Tohaker/omada-go-sdk/omada"
)
func main() {
omadacId := "omadacId_example" // string | Omada ID
siteId := "siteId_example" // string | Site ID
deviceMac := "deviceMac_example" // string | Device MAC address, like AA-BB-CC-DD-EE-FF
servicePortProfileDetailDTO := *openapiclient.NewServicePortProfileDetailDTO("AdminStatus_example", "CreationMode_example", int32(123), "EtherType_example", int32(123), "InUse_example", int32(123), int32(123), int32(123), int32(123), "ServicePortId_example", "ServicePortProfileId_example", "StatisticPerformance_example", int32(123), "TagAction_example", int32(123), int32(123)) // ServicePortProfileDetailDTO |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.OLTServicePortProfileAPI.AddServicePortProfileDetail(context.Background(), omadacId, siteId, deviceMac).ServicePortProfileDetailDTO(servicePortProfileDetailDTO).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OLTServicePortProfileAPI.AddServicePortProfileDetail``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AddServicePortProfileDetail`: OperationResponseDeviceResponseBodyVoid
fmt.Fprintf(os.Stdout, "Response from `OLTServicePortProfileAPI.AddServicePortProfileDetail`: %v\n", resp)
}
Path Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| omadacId | string | Omada ID | |
| siteId | string | Site ID | |
| deviceMac | string | Device MAC address, like AA-BB-CC-DD-EE-FF |
Other Parameters
Other parameters are passed through a pointer to a apiAddServicePortProfileDetailRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
servicePortProfileDetailDTO | ServicePortProfileDetailDTO | |
Return type
OperationResponseDeviceResponseBodyVoid
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DeleteServicePortProfile
OperationResponseDeviceResponseBodyVoid DeleteServicePortProfile(ctx, omadacId, siteId, deviceMac).ServicePortProfileDeleteDTO(servicePortProfileDeleteDTO).Execute()
Delete an existing service port profile
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Tohaker/omada-go-sdk/omada"
)
func main() {
omadacId := "omadacId_example" // string | Omada ID
siteId := "siteId_example" // string | Site ID
deviceMac := "deviceMac_example" // string | Device MAC address, like AA-BB-CC-DD-EE-FF
servicePortProfileDeleteDTO := *openapiclient.NewServicePortProfileDeleteDTO() // ServicePortProfileDeleteDTO |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.OLTServicePortProfileAPI.DeleteServicePortProfile(context.Background(), omadacId, siteId, deviceMac).ServicePortProfileDeleteDTO(servicePortProfileDeleteDTO).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OLTServicePortProfileAPI.DeleteServicePortProfile``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `DeleteServicePortProfile`: OperationResponseDeviceResponseBodyVoid
fmt.Fprintf(os.Stdout, "Response from `OLTServicePortProfileAPI.DeleteServicePortProfile`: %v\n", resp)
}
Path Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| omadacId | string | Omada ID | |
| siteId | string | Site ID | |
| deviceMac | string | Device MAC address, like AA-BB-CC-DD-EE-FF |
Other Parameters
Other parameters are passed through a pointer to a apiDeleteServicePortProfileRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
servicePortProfileDeleteDTO | ServicePortProfileDeleteDTO | |
Return type
OperationResponseDeviceResponseBodyVoid
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DeleteServicePortProfileDetail
OperationResponseDeviceResponseBodyVoid DeleteServicePortProfileDetail(ctx, omadacId, siteId, deviceMac).ServicePortProfileDetailDeleteDTO(servicePortProfileDetailDeleteDTO).Execute()
Delete an existing service port profile detail
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Tohaker/omada-go-sdk/omada"
)
func main() {
omadacId := "omadacId_example" // string | Omada ID
siteId := "siteId_example" // string | Site ID
deviceMac := "deviceMac_example" // string | Device MAC address, like AA-BB-CC-DD-EE-FF
servicePortProfileDetailDeleteDTO := *openapiclient.NewServicePortProfileDetailDeleteDTO() // ServicePortProfileDetailDeleteDTO |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.OLTServicePortProfileAPI.DeleteServicePortProfileDetail(context.Background(), omadacId, siteId, deviceMac).ServicePortProfileDetailDeleteDTO(servicePortProfileDetailDeleteDTO).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OLTServicePortProfileAPI.DeleteServicePortProfileDetail``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `DeleteServicePortProfileDetail`: OperationResponseDeviceResponseBodyVoid
fmt.Fprintf(os.Stdout, "Response from `OLTServicePortProfileAPI.DeleteServicePortProfileDetail`: %v\n", resp)
}
Path Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| omadacId | string | Omada ID | |
| siteId | string | Site ID | |
| deviceMac | string | Device MAC address, like AA-BB-CC-DD-EE-FF |
Other Parameters
Other parameters are passed through a pointer to a apiDeleteServicePortProfileDetailRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
servicePortProfileDetailDeleteDTO | ServicePortProfileDetailDeleteDTO | |
Return type
OperationResponseDeviceResponseBodyVoid
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EditServicePortProfile
OperationResponseDeviceResponseBodyVoid EditServicePortProfile(ctx, omadacId, siteId, deviceMac).ServicePortProfileModifyDTO(servicePortProfileModifyDTO).Execute()
Modify an existing service port profile
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Tohaker/omada-go-sdk/omada"
)
func main() {
omadacId := "omadacId_example" // string | Omada ID
siteId := "siteId_example" // string | Site ID
deviceMac := "deviceMac_example" // string | Device MAC address, like AA-BB-CC-DD-EE-FF
servicePortProfileModifyDTO := *openapiclient.NewServicePortProfileModifyDTO("ServicePortProfileId_example") // ServicePortProfileModifyDTO |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.OLTServicePortProfileAPI.EditServicePortProfile(context.Background(), omadacId, siteId, deviceMac).ServicePortProfileModifyDTO(servicePortProfileModifyDTO).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OLTServicePortProfileAPI.EditServicePortProfile``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `EditServicePortProfile`: OperationResponseDeviceResponseBodyVoid
fmt.Fprintf(os.Stdout, "Response from `OLTServicePortProfileAPI.EditServicePortProfile`: %v\n", resp)
}
Path Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| omadacId | string | Omada ID | |
| siteId | string | Site ID | |
| deviceMac | string | Device MAC address, like AA-BB-CC-DD-EE-FF |
Other Parameters
Other parameters are passed through a pointer to a apiEditServicePortProfileRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
servicePortProfileModifyDTO | ServicePortProfileModifyDTO | |
Return type
OperationResponseDeviceResponseBodyVoid
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EditServicePortProfileDetail
OperationResponseDeviceResponseBodyVoid EditServicePortProfileDetail(ctx, omadacId, siteId, deviceMac).ServicePortProfileDetailDTO(servicePortProfileDetailDTO).Execute()
Modify an existing service port profile detail
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Tohaker/omada-go-sdk/omada"
)
func main() {
omadacId := "omadacId_example" // string | Omada ID
siteId := "siteId_example" // string | Site ID
deviceMac := "deviceMac_example" // string | Device MAC address, like AA-BB-CC-DD-EE-FF
servicePortProfileDetailDTO := *openapiclient.NewServicePortProfileDetailDTO("AdminStatus_example", "CreationMode_example", int32(123), "EtherType_example", int32(123), "InUse_example", int32(123), int32(123), int32(123), int32(123), "ServicePortId_example", "ServicePortProfileId_example", "StatisticPerformance_example", int32(123), "TagAction_example", int32(123), int32(123)) // ServicePortProfileDetailDTO |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.OLTServicePortProfileAPI.EditServicePortProfileDetail(context.Background(), omadacId, siteId, deviceMac).ServicePortProfileDetailDTO(servicePortProfileDetailDTO).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OLTServicePortProfileAPI.EditServicePortProfileDetail``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `EditServicePortProfileDetail`: OperationResponseDeviceResponseBodyVoid
fmt.Fprintf(os.Stdout, "Response from `OLTServicePortProfileAPI.EditServicePortProfileDetail`: %v\n", resp)
}
Path Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| omadacId | string | Omada ID | |
| siteId | string | Site ID | |
| deviceMac | string | Device MAC address, like AA-BB-CC-DD-EE-FF |
Other Parameters
Other parameters are passed through a pointer to a apiEditServicePortProfileDetailRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
servicePortProfileDetailDTO | ServicePortProfileDetailDTO | |
Return type
OperationResponseDeviceResponseBodyVoid
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GetServicePortProfileList
OperationResponseListServicePortProfileDTO GetServicePortProfileList(ctx, omadacId, siteId, deviceMac).Execute()
Get service port profile list
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Tohaker/omada-go-sdk/omada"
)
func main() {
omadacId := "omadacId_example" // string | Omada ID
siteId := "siteId_example" // string | Site ID
deviceMac := "deviceMac_example" // string | Device MAC address, like AA-BB-CC-DD-EE-FF
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.OLTServicePortProfileAPI.GetServicePortProfileList(context.Background(), omadacId, siteId, deviceMac).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OLTServicePortProfileAPI.GetServicePortProfileList``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetServicePortProfileList`: OperationResponseListServicePortProfileDTO
fmt.Fprintf(os.Stdout, "Response from `OLTServicePortProfileAPI.GetServicePortProfileList`: %v\n", resp)
}
Path Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| omadacId | string | Omada ID | |
| siteId | string | Site ID | |
| deviceMac | string | Device MAC address, like AA-BB-CC-DD-EE-FF |
Other Parameters
Other parameters are passed through a pointer to a apiGetServicePortProfileListRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
Return type
OperationResponseListServicePortProfileDTO
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GetServicePortProfileListDetail
OperationResponseListServicePortProfileListDetailDTO GetServicePortProfileListDetail(ctx, omadacId, siteId, deviceMac).QueryParam(queryParam).Execute()
Get service port profile list detail
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Tohaker/omada-go-sdk/omada"
)
func main() {
omadacId := "omadacId_example" // string | Omada ID
siteId := "siteId_example" // string | Site ID
deviceMac := "deviceMac_example" // string | Device MAC address, like AA-BB-CC-DD-EE-FF
queryParam := *openapiclient.NewServicePortProfileDetailListQueryDTO() // ServicePortProfileDetailListQueryDTO |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.OLTServicePortProfileAPI.GetServicePortProfileListDetail(context.Background(), omadacId, siteId, deviceMac).QueryParam(queryParam).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OLTServicePortProfileAPI.GetServicePortProfileListDetail``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetServicePortProfileListDetail`: OperationResponseListServicePortProfileListDetailDTO
fmt.Fprintf(os.Stdout, "Response from `OLTServicePortProfileAPI.GetServicePortProfileListDetail`: %v\n", resp)
}
Path Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| omadacId | string | Omada ID | |
| siteId | string | Site ID | |
| deviceMac | string | Device MAC address, like AA-BB-CC-DD-EE-FF |
Other Parameters
Other parameters are passed through a pointer to a apiGetServicePortProfileListDetailRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
queryParam | ServicePortProfileDetailListQueryDTO | |
Return type
OperationResponseListServicePortProfileListDetailDTO
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GetServicePortProfilePage
OperationResponsePageResponseServicePortProfileDTO GetServicePortProfilePage(ctx, omadacId, siteId, deviceMac).QueryParam(queryParam).Execute()
Get service port profile page
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Tohaker/omada-go-sdk/omada"
)
func main() {
omadacId := "omadacId_example" // string | Omada ID
siteId := "siteId_example" // string | Site ID
deviceMac := "deviceMac_example" // string | Device MAC address, like AA-BB-CC-DD-EE-FF
queryParam := *openapiclient.NewServicePortProfilePageQueryDTO() // ServicePortProfilePageQueryDTO |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.OLTServicePortProfileAPI.GetServicePortProfilePage(context.Background(), omadacId, siteId, deviceMac).QueryParam(queryParam).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OLTServicePortProfileAPI.GetServicePortProfilePage``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetServicePortProfilePage`: OperationResponsePageResponseServicePortProfileDTO
fmt.Fprintf(os.Stdout, "Response from `OLTServicePortProfileAPI.GetServicePortProfilePage`: %v\n", resp)
}
Path Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| omadacId | string | Omada ID | |
| siteId | string | Site ID | |
| deviceMac | string | Device MAC address, like AA-BB-CC-DD-EE-FF |
Other Parameters
Other parameters are passed through a pointer to a apiGetServicePortProfilePageRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
queryParam | ServicePortProfilePageQueryDTO | |
Return type
OperationResponsePageResponseServicePortProfileDTO
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GetServicePortProfilePageDetail
OperationResponsePageResponseServicePortProfileListDetailDTO GetServicePortProfilePageDetail(ctx, omadacId, siteId, deviceMac).QueryParam(queryParam).Execute()
Get service port profile page detail
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Tohaker/omada-go-sdk/omada"
)
func main() {
omadacId := "omadacId_example" // string | Omada ID
siteId := "siteId_example" // string | Site ID
deviceMac := "deviceMac_example" // string | Device MAC address, like AA-BB-CC-DD-EE-FF
queryParam := *openapiclient.NewServicePortProfileDetailPageQueryDTO("ServicePortProfileId_example") // ServicePortProfileDetailPageQueryDTO |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.OLTServicePortProfileAPI.GetServicePortProfilePageDetail(context.Background(), omadacId, siteId, deviceMac).QueryParam(queryParam).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OLTServicePortProfileAPI.GetServicePortProfilePageDetail``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetServicePortProfilePageDetail`: OperationResponsePageResponseServicePortProfileListDetailDTO
fmt.Fprintf(os.Stdout, "Response from `OLTServicePortProfileAPI.GetServicePortProfilePageDetail`: %v\n", resp)
}
Path Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
| omadacId | string | Omada ID | |
| siteId | string | Site ID | |
| deviceMac | string | Device MAC address, like AA-BB-CC-DD-EE-FF |
Other Parameters
Other parameters are passed through a pointer to a apiGetServicePortProfilePageDetailRequest struct via the builder pattern
| Name | Type | Description | Notes |
|---|---|---|---|
queryParam | ServicePortProfileDetailPageQueryDTO | |
Return type
OperationResponsePageResponseServicePortProfileListDetailDTO
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]