ATG REST MVC requests use a /rest/model URL to process requests against the actor framework. The general format for a REST MVC URLS is:
http://host:port/rest/model/actor_component/tail
The format variables are:
host– The REST serverport– (Optional) The port from which users access the REST servicesactor_component– The Nucleus path for a Nucleus component that implements the actor interfacetail– (Optional) Any attribute that can be processed by aURIProcessor. For chained actors, thetailis thechain-id
A typical request may be similar to the following call that adds an item to a shopping cart:
http://rest.company.com:8280/rest/model/atg/commerce/order/purchase/
CartModifierActor/addItemtoOrderRefer to the External REST MVC Service Call Examples and Internal REST MVC Service Call Examples sections to see examples of request URLs.

