--- title: Postman --- The [Postman Rest Client](http://www.getpostman.com/) is a very popular and easy to use HTTP Request composer that makes it easy to call web services, similar to [Fiddler's Composer](https://www.blackbaud.com/files/support/guides/infinitydevguide/Subsystems/inwebapi-developer-help/Content/InfinityWebAPI/coUsingFiddlerCreateHTTPRequest.htm). It also provides as an alternative for autogenerating API documentation to [ServiceStack's Open API support](/openapi) that makes it easier to call existing services but does require users to install the [Postman Rest Client](http://www.getpostman.com/). Support for Postman is built into ServiceStack and can be enabled by registering the Plugins below: ```csharp Plugins.Add(new PostmanFeature()); Plugins.Add(new CorsFeature()); ``` ::: info As Postman makes cross-site requests, is also requires CORS support. ::: Once enabled, a link with appear in your metadata page:  ### Importing the Postman Collection By default the link to the Postman JSON metadata collection is at `/postman`, this url can be imported into postman by clicking on **import collections**:  This will open up the import dialog, where you can paste the metadata url and click **Import**:  ### Available Routes Once imported it will populate a list of available operations that can be selected and easily called from within the Postman UI. Just like the [Open API Support](/openapi) the list of operations returned respects the [Restriction Attributes](/auth/restricting-services) and only shows the operations each user is allowed to see. The operations returned also favour custom user-defined routes, when none exists it will fallback to use the [pre-defined routes](/routing#pre-defined-routes). ### Label Customization The label for each operation can be further customized using the `?label` query string param whose preferred style which can vary depending on the granularity and naming of your Request DTO's, and whether they have custom routes defined on them.  The screenshot above shows an example of importing the same service with the different label styles below: - [/postman?label=route](https://benchmarks.servicestack.net/postman?label=route) - [/postman?label=type](https://benchmarks.servicestack.net/postman?label=type) The `label` param accepts a collection of string tokens that controls how the label is formatted.The `type` and `route` are special tokens that get replaced by the **Request DTO name** and **Route** respectively. Everything else are just added string literals including the `+` character which is just a url-encoded version of the ` ` space character. Here are some examples using the example definition below: ```csharp [Route("/contacts/{Id}")] public class GetContact { ... } ```
| /postman?label=type | GetContact |
| /postman?label=route | /contacts/{Id} |
| /postman?label=type:english | Get contact |
| /postman?label=type:english,+(,route,) | Get contact (/contacts/{Id}) |