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
Running:
with sunshine_conversations_client.ApiClient(self.__sunco_config) as api_client: api_instance = sunshine_conversations_client.IntegrationsApi(api_client) integration = sunshine_conversations_client.Integration( type="custom" ) try: api_response = api_instance.create_integration(self.__sunco_app_id, integration) pprint(api_response) except sunshine_conversations_client.ApiException as e: print("Exception when calling IntegrationsApi->create_integration: %s\n" % e)
Results in: HTTP response body: {"errors":[{"code":"bad_request","title":"should have required property 'webhooks'"}]}
HTTP response body: {"errors":[{"code":"bad_request","title":"should have required property 'webhooks'"}]}
As far as I can tell webhooks is not required when creating a new custom integration, it is not clear to me where I should even be setting this.
The text was updated successfully, but these errors were encountered:
while I'm here - there are some pretty dubious errors coming back even when I hit the HTTP API directly.
request body: {'type': 'custom', 'displayName': 'brandonk', 'webhooks': [{'target': 'target', 'triggers': 'ee'}]} error: ('{"errors":[{"code":"bad_request","title":".webhooks: should not have more ' 'than 1 items"}]}')
{'type': 'custom', 'displayName': 'brandonk', 'webhooks': [{'target': 'target', 'triggers': 'ee'}]}
('{"errors":[{"code":"bad_request","title":".webhooks: should not have more ' 'than 1 items"}]}')
request body: {'type': 'custom', 'displayName': 'brandonk', 'webhooks': []} error: ('{"errors":[{"code":"bad_request","title":"should have required property ' '\'webhooks\'"}]}')
{'type': 'custom', 'displayName': 'brandonk', 'webhooks': []}
('{"errors":[{"code":"bad_request","title":"should have required property ' '\'webhooks\'"}]}')
Sorry, something went wrong.
No branches or pull requests
Running:
Results in:
HTTP response body: {"errors":[{"code":"bad_request","title":"should have required property 'webhooks'"}]}
As far as I can tell webhooks is not required when creating a new custom integration, it is not clear to me where I should even be setting this.
The text was updated successfully, but these errors were encountered: