API

Rental APIs

GET rental/contracts/{rentalContractId}/quotes/{rentalContractQuoteId}

Get rental contract quote details

HTTP method GET
URI https://api.rambase.net/rental/contracts/{rentalContractId}/quotes/{rentalContractQuoteId}
Supported formats Xml, Html, Json (ex. $format=json)
- URI parameter {rentalContractId} Rental contract identifier
Integer, minimum 100000
- URI parameter {rentalContractQuoteId} Rental contract quote identifier
Integer, minimum 1
Successful HTTP status code 200
API resource identifier 5994, version 19

The following body must be added to the request. Mouse over fieldnames for description and other useful information about the fields. Note that fields in bold are required/mandatory.

Format:
1
1

The query string is placed after the resource URL, seperated with a questionmark (?). The query string is composed of a series of query parameters with values. See the page about query parameters on how to use these parameters.

$showDomainDescriptions Boolean, optional Set to "true" to include domain descriptions for fields using domain values. See the Domain values page for more information. Default value is false.
$lang String, optional Specifies the language used in the response, following the 3-letter ISO-639-1 [lll]
$access_token String, optional After successful login you get an access token which needs to be provided in all API requests. Even though it is possible to pass this token as query parameter, we recommended passing it using the HTTP request header as described in Authorization. Note that all access tokens have an expiration time.
$db String, optional Set the database/company for the request
$format String, optional Set the format of the response to use for the request. Accepted values are "xml", "html", "jsonstream", "json"
$useMinimumVersion Integer, optional Used to run a new version of an API resource when your API client is running a deprecated API resource. See the Breaking changes page for more information.
$select String, optional Use to define the fields to return in the response. Accepts a comma-separated list of field names. See the Expand and select page for more information.
$expand String, optional Use to include output fields that are not returned by default in the response. Accepts a comma-separated list of expandable field names. See the Expand and Select page for more information.

Read more about filters and sorting on how to use filter parameters and named filters.

Read more about filters and sorting on how to use sortable parameters

Requesting this resource will yield the following response. Mouse over fieldnames (or fieldgroups) for descriptions and other useful information about the fields. Fields colored in grey is expandable fields.

Please note that some fields may be removed from the response, based on user roles/duties/permissions.

Format:
1
<RentalContractQuote>
2
     <RentalContractQuoteId
RentalContractQuoteId

Rental contract quote identifier

>
{Integer}</RentalContractQuoteId>
3
     <CreatedAt
CreatedAt

Date of rental quote creation

>
{Datetime}</CreatedAt>
4
     <Name
Name

Name of rental quote

>
{String}</Name>
5
     <Status
Status

Status of rental quote

Possible domain values can be found here

>
{Integer}</Status>
6
     <ExpirationDate
ExpirationDate

Date of quote expiry

>
{Date}</ExpirationDate>
7
     <IssuedDate
IssuedDate

Date set when all quote items are sent to customer

>
{Date}</IssuedDate>
8
     <ProcessedDate
ProcessedDate

Date that the rental quote was processed (status 9)

>
{Date}</ProcessedDate>
9
     <Description
Description

Description of quote and notes for printout

>
{String}</Description>
10
     <CreatedBy>
11
          <UserId
UserId

User identifier

>
{Integer}</UserId>
12
          <FirstName
FirstName

First name of the user

>
{String}</FirstName>
13
          <LastName
LastName

Name of the user

>
{String}</LastName>
14
          <UserLink
UserLink

User reference

>
{String}</UserLink>
15
     </CreatedBy>
16
     <Assignee>
17
          <UserId
UserId

User identifier

>
{Integer}</UserId>
18
          <FirstName
FirstName

First name of the user

>
{String}</FirstName>
19
          <LastName
LastName

Name of the user

>
{String}</LastName>
20
          <UserLink
UserLink

User reference

>
{String}</UserLink>
21
     </Assignee>
22
     <RegistrationDate
RegistrationDate

Date of registration

>
{Date}</RegistrationDate>
23
     <RegisteredBy>
24
          <UserId
UserId

User identifier

>
{Integer}</UserId>
25
          <UserLink
UserLink

User reference

>
{String}</UserLink>
26
     </RegisteredBy>
27
     <Totals
Totals

This field is greyed out because it is an expandable field. You have to add $expand=Totals in your request URI to get this field

>
28
          <TotalAmount
TotalAmount

Total amount estimated per rental quote

This field is greyed out because it is an expandable field. You have to add $expand=Totals in your request URI to get this field

>
{Decimal}</TotalAmount>
29
          <DiscountAmount
DiscountAmount

Total discount amount per rental quote

This field is greyed out because it is an expandable field. You have to add $expand=Totals in your request URI to get this field

>
{Decimal}</DiscountAmount>
30
          <TotalNetAmount
TotalNetAmount

Total amount after discount per rental quote

This field is greyed out because it is an expandable field. You have to add $expand=Totals in your request URI to get this field

>
{Decimal}</TotalNetAmount>
31
     </Totals>
32
</RentalContractQuote>
1
{
2
     "rentalContractQuote": {
3
          "rentalContractQuoteId
RentalContractQuoteId

Rental contract quote identifier

":
"{Integer}",
4
          "createdAt
CreatedAt

Date of rental quote creation

":
"{Datetime}",
5
          "name
Name

Name of rental quote

":
"{String}",
6
          "status
Status

Status of rental quote

Possible domain values can be found here

":
"{Integer}",
7
          "expirationDate
ExpirationDate

Date of quote expiry

":
"{Date}",
8
          "issuedDate
IssuedDate

Date set when all quote items are sent to customer

":
"{Date}",
9
          "processedDate
ProcessedDate

Date that the rental quote was processed (status 9)

":
"{Date}",
10
          "description
Description

Description of quote and notes for printout

":
"{String}",
11
          "createdBy": {
12
               "userId
UserId

User identifier

":
"{Integer}",
13
               "firstName
FirstName

First name of the user

":
"{String}",
14
               "lastName
LastName

Name of the user

":
"{String}",
15
               "userLink
UserLink

User reference

":
"{String}"
16
          },
17
          "assignee": {
18
               "userId
UserId

User identifier

":
"{Integer}",
19
               "firstName
FirstName

First name of the user

":
"{String}",
20
               "lastName
LastName

Name of the user

":
"{String}",
21
               "userLink
UserLink

User reference

":
"{String}"
22
          },
23
          "registrationDate
RegistrationDate

Date of registration

":
"{Date}",
24
          "registeredBy": {
25
               "userId
UserId

User identifier

":
"{Integer}",
26
               "userLink
UserLink

User reference

":
"{String}"
27
          },
28
          "totals
Totals

This field is greyed out because it is an expandable field. You have to add $expand=Totals in your request URI to get this field

":
{
29
               "totalAmount
TotalAmount

Total amount estimated per rental quote

This field is greyed out because it is an expandable field. You have to add $expand=Totals in your request URI to get this field

":
"{Decimal}",
30
               "discountAmount
DiscountAmount

Total discount amount per rental quote

This field is greyed out because it is an expandable field. You have to add $expand=Totals in your request URI to get this field

":
"{Decimal}",
31
               "totalNetAmount
TotalNetAmount

Total amount after discount per rental quote

This field is greyed out because it is an expandable field. You have to add $expand=Totals in your request URI to get this field

":
"{Decimal}"
32
          }
33
     }
34
}

Possible error codes the response might return:

Error 101814 HTTP 404 Employee not found
Error 108395 HTTP 404 Contract quote not found