How to pull parameters into a field | Community
Skip to main content
Kelly_Harman1
New Participant
January 4, 2021
Solved

How to pull parameters into a field

  • January 4, 2021
  • 1 reply
  • 1284 views

How do I capture "&percentile=50" into a field. looking to track how long they watched a video. It doesn't seem to be pulling any records when I say webpage contains "/video/6216450991001" and query string is "percentile=50". Any thoughts on how to get this to pull into the field?

 

Query Parameters: provider=brightcove&videoId=6216450991001&videoName=Branches%20and%20service%20delivery&account=105925302001&player=yKXofE3pe&timeWatched=5&percentile=50

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by SanfordWhiteman

In your example, the query string would match

  contains "percentile=50"

but would not match

  is "percentile=50"

since there are of course other query params. You must always be prepared for query params to occur in any order and to not be the only params supplied.

1 reply

SanfordWhiteman
SanfordWhitemanAccepted solution
New Participant
January 4, 2021

In your example, the query string would match

  contains "percentile=50"

but would not match

  is "percentile=50"

since there are of course other query params. You must always be prepared for query params to occur in any order and to not be the only params supplied.