Read Currencies
get
                    /currency
Reads Currency objects from the database.
                Request
Query Parameters
                    - 
                            Fields(required): string
                            
                            Fields to loadExample:Name,ObjectId
- 
                            Filter(required): string
                            
                            Supported Filter Operators - :gt:, :lt:, :eq:, :gte:, :lte:, :and:, :or:Example:ObjectId IN(1,2) :and: CreateDate:gte:'2021-04-20' :and: LastUpdateDate:lt:'2022-04-20' :and: Name :like: 'abc%'
- 
                            OrderBy(required): string
                            
                            OrderBy conditionExample:ObjectId desc
Header Parameters
                    - 
                            Authorization(required): 
                            
                            OAuth token
There's no request body for this operation.
Back to TopResponse
Supported Media Types
                - application/json
200 Response
OK.
                            
                            
                                Root Schema : List<Currency>
    
    	
    	Type: 
    
    
    
    arrayTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        List<Currency>- 
            Array of: 
                object  Currency
            
            Title:CurrencyCurrency Entity
Nested Schema : Currency
    
    	Type: 
    	
    
    
    
    objectTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    CurrencyCurrency Entity
    
    
    
    
        Show Source
        - 
                
                    
                    CreateDate: string
                    
                    
                     (date-time) 
                    
                
                
                The date this currency was created.
- 
                
                    
                    CreateUser: string
                    
                    
                     
                    
                
                
                The name of the user that created this currency.
- 
                
                    
                    DecimalPlaces: integer
                    
                    
                     (int32) 
                    
                
                
                The number of decimal places displayed.
- 
                
                    
                    DecimalSymbol: string
                    
                    
                     
                    
                
                
                The decimal symbol displayed.
- 
                
                    
                    DigitGroupingSymbol: string
                    
                    
                     
                    
                
                
                The symbol used to group the numbers.
- 
                
                    
                    ExchangeRate: number
                    
                    
                     (double) 
                    
                
                
                The exchange rate against the base currency.
- 
                
                    
                    Id(required): string
                    
                    
                     
                    
                
                
                The unique currency abbreviation for each currency.
- 
                
                    
                    IsBaseCurrency: boolean
                    
                    
                     
                    
                
                
                The currency used to store cost in the Project Management database. The exchange rate for the base currency is always 1.0. The base currency ID, name, and symbol default to U.S. dollars and can be edited but never deleted.
- 
                
                    
                    LastUpdateDate: string
                    
                    
                     (date-time) 
                    
                
                
                The date this currency was last updated.
- 
                
                    
                    LastUpdateUser: string
                    
                    
                     
                    
                
                
                The name of the user that last updated this currency.
- 
                
                    
                    Name(required): string
                    
                    
                     
                    
                
                
                The name of the currency.
- 
                
                    
                    NegativeSymbol: string
                    
                    
                     
                    
                
                
                The symbol used to display a negative currency.
- 
                
                    
                    ObjectId: integer
                    
                    
                     (int32) 
                    
                
                
                The unique ID generated by the system.
- 
                
                    
                    PositiveSymbol: string
                    
                    
                     
                    
                
                
                The symbol used to display a positive currency.
- 
                
                    
                    Symbol(required): string
                    
                    
                     
                    
                
                
                The currency symbol displayed.
400 Response
Bad Request.
                            
                            
                            
                            
                        401 Response
Unauthorized.
                            
                            
                            
                            
                        403 Response
Forbidden.
                            
                            
                            
                            
                        404 Response
Not Found.
                            
                            
                            
                            
                        405 Response
Invalid Input.
                            
                            
                            
                            
                        500 Response
Internal Server Error.