SOLVED

How to pull parameters into a field

Go to solution
Kelly_Harman1
Level 2

How to pull parameters into a field

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

1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: How to pull parameters into a field

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.

View solution in original post

1 REPLY 1
SanfordWhiteman
Level 10 - Community Moderator

Re: How to pull parameters into a field

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.