shell bypass 403
<?php
declare(strict_types=1);
namespace Square\Apis;
use Core\Request\Parameters\QueryParam;
use Core\Request\Parameters\TemplateParam;
use CoreInterfaces\Core\Request\RequestMethod;
use Square\Http\ApiResponse;
use Square\Models\ListMerchantsResponse;
use Square\Models\RetrieveMerchantResponse;
class MerchantsApi extends BaseApi
{
/**
* Provides details about the merchant associated with a given access token.
*
* The access token used to connect your application to a Square seller is associated
* with a single merchant. That means that `ListMerchants` returns a list
* with a single `Merchant` object. You can specify your personal access token
* to get your own merchant information or specify an OAuth token to get the
* information for the merchant that granted your application access.
*
* If you know the merchant ID, you can also use the [RetrieveMerchant]($e/Merchants/RetrieveMerchant)
* endpoint to retrieve the merchant information.
*
* @param int|null $cursor The cursor generated by the previous response.
*
* @return ApiResponse Response from the API call
*/
public function listMerchants(?int $cursor = null): ApiResponse
{
$_reqBuilder = $this->requestBuilder(RequestMethod::GET, '/v2/merchants')
->auth('global')
->parameters(QueryParam::init('cursor', $cursor));
$_resHandler = $this->responseHandler()->type(ListMerchantsResponse::class)->returnApiResponse();
return $this->execute($_reqBuilder, $_resHandler);
}
/**
* Retrieves the `Merchant` object for the given `merchant_id`.
*
* @param string $merchantId The ID of the merchant to retrieve. If the string "me" is supplied
* as the ID,
* then retrieve the merchant that is currently accessible to this call.
*
* @return ApiResponse Response from the API call
*/
public function retrieveMerchant(string $merchantId): ApiResponse
{
$_reqBuilder = $this->requestBuilder(RequestMethod::GET, '/v2/merchants/{merchant_id}')
->auth('global')
->parameters(TemplateParam::init('merchant_id', $merchantId));
$_resHandler = $this->responseHandler()->type(RetrieveMerchantResponse::class)->returnApiResponse();
return $this->execute($_reqBuilder, $_resHandler);
}
}