Skip to content

Latest commit

 

History

History
75 lines (48 loc) · 2.33 KB

PauseStoreAPI.md

File metadata and controls

75 lines (48 loc) · 2.33 KB

\PauseStoreAPI

All URIs are relative to https://partner-api.stg-myteksi.com/grabfood-sandbox

Method HTTP request Description
PauseStore Put /partner/v1/merchant/pause Pause store

PauseStore

PauseStore(ctx).ContentType(contentType).Authorization(authorization).PauseStoreRequest(pauseStoreRequest).Execute()

Pause store

Example

package main

import (
	"context"
	"fmt"
	"os"
	grabfood "github.com/grab/grabfood-api-sdk-go"
)

func main() {
	contentType := "application/json" // string | The content type of the request body. You must use `application/json` for this header as GrabFood API currently does not support other formats.
	authorization := "Bearer <ACCESS_TOKEN_HERE>" // string | Specify the generated authorization token of the bearer type.
	pauseStoreRequest := *grabfood.NewPauseStoreRequest("1-CYNGRUNGSBCCC", false) // PauseStoreRequest | 

	configuration := grabfood.NewConfiguration()
	apiClient := grabfood.NewAPIClient(configuration)
	r, err := apiClient.PauseStoreAPI.PauseStore(context.Background()).ContentType(contentType).Authorization(authorization).PauseStoreRequest(pauseStoreRequest).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `PauseStoreAPI.PauseStore``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
}

Path Parameters

Other Parameters

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

Name Type Description Notes
contentType string The content type of the request body. You must use `application/json` for this header as GrabFood API currently does not support other formats.
authorization string Specify the generated authorization token of the bearer type.
pauseStoreRequest PauseStoreRequest

Return type

(empty response body)

Authorization

No authorization required

HTTP request headers

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

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