SES urls

Is this possible "event/index/status:Pending" where status gets set to
pending? If so how?

I’m not sure I understand the question. If you want a “status” to be a URL variable, you can simply add a route identifying it as a variable.

<cfset addRoute(pattern=“event/index/status/:status”, handler=“event”, action=“index”) />

The Event.cfc will fire index() and you should find a variable in the request collection called “status”. There is documentation on this on Coldbox.org.

Jason Durham