Skip to content

Latest commit

 

History

History
73 lines (45 loc) · 1.62 KB

ParseAPI.md

File metadata and controls

73 lines (45 loc) · 1.62 KB

\ParseAPI

All URIs are relative to http://localhost:7878

Method HTTP request Description
GetParse Get /api/v3/parse

GetParse

ParseResource GetParse(ctx).Title(title).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	radarrClient "github.com/devopsarr/radarr-go/radarr"
)

func main() {
	title := "title_example" // string |  (optional)

	configuration := radarrClient.NewConfiguration()
	apiClient := radarrClient.NewAPIClient(configuration)
	resp, r, err := apiClient.ParseAPI.GetParse(context.Background()).Title(title).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `ParseAPI.GetParse``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetParse`: ParseResource
	fmt.Fprintf(os.Stdout, "Response from `ParseAPI.GetParse`: %v\n", resp)
}

Path Parameters

Other Parameters

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

Name Type Description Notes
title string

Return type

ParseResource

Authorization

apikey, X-Api-Key

HTTP request headers

  • 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]