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 tracking should pass normally.
It fails because in the metadata there are parameters called base_amount and quote_amount that it doesn't seem to like.
def intercom @intercom ||= Intercom::Client.new(token: ENV['INTERCOM_ACCESS_TOKEN']) end intercom.events.create( user_id: 123, event_name: 'event', created_at: Time.now.to_i, metadata: { base_amount: [2_000, 'A'], quote_amount: [2_000, 'B'], } )
Intercom::BadRequestError found unpermitted parameters: :base_amount, :quote_amount
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version info
Expected behavior
The tracking should pass normally.
Actual behavior
It fails because in the metadata there are parameters called base_amount and quote_amount that it doesn't seem to like.
Steps to reproduce
Logs
The text was updated successfully, but these errors were encountered: