Skip to content

Latest commit

 

History

History
68 lines (47 loc) · 2.87 KB

UpdateStoreSpecialHourApi.md

File metadata and controls

68 lines (47 loc) · 2.87 KB

Grab\GrabfoodApiSdk\UpdateStoreSpecialHourApi

All URIs are relative to https://partner-api.grab.com/grabfood-sandbox, except if the operation defines another base path.

Method HTTP request Description
updateStoreSpecialHour() PUT /partner/v2/merchants/{merchantID}/store/special-opening-hour Update Store Special Hours

updateStoreSpecialHour()

updateStoreSpecialHour($content_type, $authorization, $merchant_id, $update_special_hour_request): \Grab\GrabfoodApiSdk\Model\UpdateSpecialHourResponse

Update Store Special Hours

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Grab\GrabfoodApiSdk\Api\UpdateStoreSpecialHourApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$content_type = 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.
$merchant_id = 1-CYNGRUNGSBCCC; // string | The merchant's ID that is in GrabFood's database.
$update_special_hour_request = new \Grab\GrabfoodApiSdk\Model\UpdateSpecialHourRequest(); // \Grab\GrabfoodApiSdk\Model\UpdateSpecialHourRequest

try {
    $result = $apiInstance->updateStoreSpecialHour($content_type, $authorization, $merchant_id, $update_special_hour_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling UpdateStoreSpecialHourApi->updateStoreSpecialHour: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
content_type 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.
merchant_id string The merchant's ID that is in GrabFood's database.
update_special_hour_request \Grab\GrabfoodApiSdk\Model\UpdateSpecialHourRequest

Return type

\Grab\GrabfoodApiSdk\Model\UpdateSpecialHourResponse

Authorization

No authorization required

HTTP request headers

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

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