# RawPathParams Decorator operation input

Module
import { RawPathParams } from "@tsed/common"
Source/packages/common/src/mvc/decorators/params/pathParams.ts

# Overview

function RawPathParams(expression: string): ParameterDecorator;
Param Type Description
expression string The path of the property to get.

# Description

RawPathParams return the raw value from request.params object.

Any validation and transformation are performed on the value. Use pipes to validate and/or transform the value.

# Example

@Controller('/')
class MyCtrl {
   @Get('/')
   get(@RawPathParams() params: string) {
      console.log('Entire params', params);
   }

   @Get('/')
   get(@RawPathParams('id') id: string) {
      console.log('ID', id);
   }
}
1
2
3
4
5
6
7
8
9
10
11
12

For more information on deserialization see converters page.