Sarawut Positwinyu
Sarawut Positwinyu

Reputation: 5042

What does * mean on web api

I am studying Udaru and on Swagger Web API there is * on resource here. i would like to know what does this mean ?

Upvotes: 1

Views: 23

Answers (1)

Martin Zikmund
Martin Zikmund

Reputation: 39092

This should be a wildcard. This means that you can call URL such as:

/authorization/access/1/hello/a/b/c/d

And resource variable will then be a/b/c/d in the action method.

Upvotes: 1

Related Questions