API

Rental APIs

POST rental/contracts/{rentalContractId}/quotes

Creates new rental contract quote

HTTP method POST
URI https://api.rambase.net/rental/contracts/{rentalContractId}/quotes
Supported formats Xml, Html, Json (ex. $format=json)
- URI parameter {rentalContractId} Rental contract identifier
Integer, minimum 100000
Successful HTTP status code 201
API resource identifier 5991, version 6

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
<RentalContractQuote>
2
     <Name
Name

Required/mandatory field

Name of rental quote

>
{String}</Name>
3
     <ExpirationDate
ExpirationDate

Required/mandatory field

Date of quote expiry

>
{Date}</ExpirationDate>
4
     <Description
Description

Description of quote and notes for printout

This field is optional.

>
{String}</Description>
5
</RentalContractQuote>
1
{
2
     "rentalContractQuote": {
3
          "name
Name

Required/mandatory field

Name of rental quote

":
"{String}",
4
          "expirationDate
ExpirationDate

Required/mandatory field

Date of quote expiry

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

Description of quote and notes for printout

This field is optional.

":
"{String}"
6
     }
7
}

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.

$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
$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.
$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]

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.

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
          <TotalAmount
TotalAmount

Total amount estimated per rental quote

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

Total discount amount per rental quote

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

Total amount after discount per rental quote

>
{Decimal}</TotalNetAmount>
29
     </RegisteredBy>
30
</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
               "totalAmount
TotalAmount

Total amount estimated per rental quote

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

Total discount amount per rental quote

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

Total amount after discount per rental quote

":
"{Decimal}"
30
          }
31
     }
32
}

List of available operations/actions for this resource.
See the operations documentation for more information about API operations.

Possible error codes the response might return:

Error 100051 HTTP 400 When logged in as supplier {0} you do not have access to this API resource
Error 100055 HTTP 403 You have only admittance to your own objects
Error 100001 HTTP 404 Address not found
Error 109309 HTTP 400 Expiration date cannot be in the past
Error 108685 HTTP 400 Expiration date cannot be later than the expiration date of the contract