Skip to content

Latest commit

 

History

History
73 lines (46 loc) · 1.75 KB

FramesApi.md

File metadata and controls

73 lines (46 loc) · 1.75 KB

\FramesApi

All URIs are relative to https://api.pushd.com/v5

Method HTTP request Description
GetFrames Get /frames.json Access to an Aura Frame

GetFrames

Frames GetFrames(ctx).IncludeSharedAlbums(includeSharedAlbums).Execute()

Access to an Aura Frame

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "./openapi"
)

func main() {
    includeSharedAlbums := "includeSharedAlbums_example" // string |  (optional)

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.FramesApi.GetFrames(context.Background()).IncludeSharedAlbums(includeSharedAlbums).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `FramesApi.GetFrames``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `GetFrames`: Frames
    fmt.Fprintf(os.Stdout, "Response from `FramesApi.GetFrames`: %v\n", resp)
}

Path Parameters

Other Parameters

Other parameters are passed through a pointer to a apiGetFramesRequest struct via the builder pattern

Name Type Description Notes
includeSharedAlbums string

Return type

Frames

Authorization

TokenAuth, UserId

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]