Filter Keywords with spacings. How to use them? #2791
Answered
by
mikf
someonenameguy
asked this question in
Q&A
-
There's filter keyword for
but none of them worked... |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
Jul 31, 2022
Replies: 1 comment
-
The When downloading attachment files (or really any file), their name is usually present in |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
someonenameguy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
[]
inattachments[][name]
means thatattachments
is a list / an array, so you could theoretically use it as'Name' in attachments[0]["name"]
in a --filter, but you shouldn't do that.When downloading attachment files (or really any file), their name is usually present in
filename
+extension
, so you can just use'Name' in filename
.