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
Problem description Trying to use IWebhooksClient.GetAll() while there is a webhook in "Error" state throws the following exception:
IWebhooksClient.GetAll()
Newtonsoft.Json.JsonReaderException: Could not convert string to integer: Error. Path 'data[0].last_http_status', ...
Webhook's LastHttpStatus is not always an integer value, as described here: https://pipedrive.readme.io/docs/guide-for-webhooks#section-status-codes-for-webhooks.
Webhook
LastHttpStatus
Steps to reproduce
"last_http_status":"Error"
GetAll()
Expected behavior All webhooks are returned.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem description
Trying to use
IWebhooksClient.GetAll()
while there is a webhook in "Error" state throws the following exception:Webhook
'sLastHttpStatus
is not always an integer value, as described here: https://pipedrive.readme.io/docs/guide-for-webhooks#section-status-codes-for-webhooks.Steps to reproduce
"last_http_status":"Error"
).GetAll()
to get all the webhooks.Expected behavior
All webhooks are returned.
The text was updated successfully, but these errors were encountered: