We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code help me to fix the issue....
$quotationResult = $request->quotation($quotationBody); $quotationResult->getBody()->rewind(); $getQuotation = strval($quotationResult->getBody()->getContents()); getQuotationMessage = json_decode($getQuotation);
$quotationResult = $request->quotation($quotationBody);
$quotationResult->getBody()->rewind();
$getQuotation = strval($quotationResult->getBody()->getContents());
getQuotationMessage = json_decode($getQuotation);
The text was updated successfully, but these errors were encountered:
I believe you might be getting 401. You would need to check the http status code instead of body.
Sorry, something went wrong.
any idea how can I get sandbox API keys to test the APIs?
Hello, I am getting status code 200 and an empty body. Thanks to @mtmibjas for your little solution.
No branches or pull requests
The following code help me to fix the issue....
$quotationResult = $request->quotation($quotationBody);
$quotationResult->getBody()->rewind();
$getQuotation = strval($quotationResult->getBody()->getContents());
getQuotationMessage = json_decode($getQuotation);
The text was updated successfully, but these errors were encountered: