Skip to content
This repository has been archived by the owner on Jan 23, 2020. It is now read-only.

Latest commit

 

History

History
56 lines (39 loc) · 2.12 KB

TemandoShippingDeliveryGuestCartCollectionPointManagementV1Api.md

File metadata and controls

56 lines (39 loc) · 2.12 KB

MagentoApi\TemandoShippingDeliveryGuestCartCollectionPointManagementV1Api

All URIs are relative to /rest/default

Method HTTP request Description
temandoShippingDeliveryGuestCartCollectionPointManagementV1SelectCollectionPointPost POST /V1/guest-carts/{cartId}/collection-point/select

temandoShippingDeliveryGuestCartCollectionPointManagementV1SelectCollectionPointPost

bool temandoShippingDeliveryGuestCartCollectionPointManagementV1SelectCollectionPointPost($cart_id, $body)

Example

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

$apiInstance = new MagentoApi\Api\TemandoShippingDeliveryGuestCartCollectionPointManagementV1Api(
    // 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()
);
$cart_id = "cart_id_example"; // string |
$body = new \stdClass; // object |

try {
    $result = $apiInstance->temandoShippingDeliveryGuestCartCollectionPointManagementV1SelectCollectionPointPost($cart_id, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling TemandoShippingDeliveryGuestCartCollectionPointManagementV1Api->temandoShippingDeliveryGuestCartCollectionPointManagementV1SelectCollectionPointPost: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
cart_id string
body object [optional]

Return type

bool

Authorization

No authorization required

HTTP request headers

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

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