Skip to content

Add rates

POST
/api/connector/v1/rates/add

Adds rates to the enterprise. Note this operation supports Portfolio Access Tokens. Rate type of AvailabilityBlock cannot be created via this operation.

Rate add parameters
object
ClientToken
required

Token identifying the client application.

string
>= 1 characters
AccessToken
required

Access token of the client application.

string
>= 1 characters
Client
required

Name and version of the client application.

string
>= 1 characters
EnterpriseId

Unique identifier of the enterprise. Required when using Portfolio Access Tokens, ignored otherwise.

string format: uuid
nullable
Rates
required

Information about rates to be created.

Array<object>
>= 1 items <= 1000 items
Rate parameters
object
ServiceId
required

Unique identifier of the service.

string
>= 1 characters
RateGroupId
required

Unique identifier of the rate group under which rate is assigned.

string
>= 1 characters
IsEnabled

Whether the rate is available to customers. false will be used as a default when not provided.

boolean
nullable
Type
Rate Add Type

Type of the rate.

Public

Private

string
Allowed values: Public Private
AccountingCategoryId

Unique identifier of the accounting category the rate belongs to.

string format: uuid
nullable
BusinessSegmentId

Unique identifier of the business segment.

string format: uuid
nullable
Names
required
Localized text

All translations of the name of the rate.

object
key
additional properties
string
ShortNames
Localized text

All translations of the short name of the rate.

object
key
additional properties
string
ExternalNames
Localized text

All translations of the external name of the rate.

object
key
additional properties
string
Descriptions
Localized text

All translations of the description.

object
key
additional properties
string
PricingType
required
Rate pricing discriminator

Discriminator in which field inside Pricing contains additional data.

BaseRatePricing

DependentRatePricing

string
Allowed values: BaseRatePricing DependentRatePricing
ExternalIdentifier

Identifier of the rate from external system.

string
nullable <= 255 characters
Pricing
Rate add pricing data parameters

Contains additional data about pricing of the rate.

object
BaseRatePricing
Base rate pricing parameters (with occupancy adjustments)

Additional data for rates with base rate pricing. Used when PricingType is BaseRatePricing. Defaults are applied if not specified: amount is set to 10000 in default Enterprise’s currency and with its default accommodation tax rate code.

object
Amount
required
Amount parameters

Price of the product that overrides the price defined in Mews.

object
Currency
required
string format: currency
>= 1 characters
TaxCodes
required
Array<string>
NetValue
number format: double
nullable
GrossValue
number format: double
nullable
NegativeOccupancyAdjustment

This is the amount added to the price when occupancy of the space is less than the Space Category Capacity. To provide a discount price for under-occupancy, simply use a negative value.

number format: double
ExtraOccupancyAdjustment

This is the amount added to the price when the Space Category Capacity is exceeded.

number format: double
DependentRatePricing
Dependent rate pricing parameters

Additional data for rate with dependent rate pricing. Required when PricingType is DependentRatePricing.

object
BaseRateId
required

Unique identifier of the base rate.

string
>= 1 characters
RelativeAdjustment

Relative amount which shows the difference between this rate and the base rate.

number format: double
AbsoluteAdjustment

Specific amount which shows the difference between this rate and the base rate.

number format: double
Example
{
"ClientToken": "E0D439EE522F44368DC78E1BFB03710C-D24FB11DBE31D4621C4817E028D9E1D",
"AccessToken": "C66EF7B239D24632943D115EDE9CB810-EA00F8FD8294692C940F6B5A8F9453D",
"Client": "Sample Client 1.0.0",
"EnterpriseId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"Rates": [
{
"ServiceId": "bd26d8db-86da-4f96-9efc-e5a4654a4a94",
"RateGroupId": "b9f25a45-9b9a-4b33-99bd-b06f008eb6f5",
"IsEnabled": true,
"Type": "Public",
"AccountingCategoryId": "3620c660-a4ec-4e0f-a0bc-b06f008eb8bf",
"Names": {
"EN": "My rate"
},
"ExternalIdentifier": "D001",
"PricingType": "DependentRatePricing",
"Pricing": {
"DependentRatePricing": {
"BaseRateId": "1a1ddd3b-e106-4a70-aef1-54a75b483943",
"RelativeAdjustment": 0.15,
"AbsoluteAdjustment": 10
}
}
}
]
}

OK

Rate add result
object
Rates

Rates that have been added.

Array<object>
nullable <= 1000 items
Rate
object
Id
required

Unique identifier of the rate.

string format: uuid
GroupId
required

Unique identifier of Rate Group where the rate belongs.

string format: uuid
ServiceId
required

Unique identifier of the Service.

string format: uuid
BaseRateId

Unique identifier of the base Rate.

string format: uuid
nullable
IsBaseRate
required

Indicates if this is a base rate.

boolean
BusinessSegmentId

Unique identifier of the Business Segment.

string format: uuid
nullable
IsActive
required

Indicates if this rate is active.

boolean
IsEnabled
required

Indicates if this rate is currently available to customers.

boolean
IsPublic
required

Indicates if this rate is publicly available.

boolean
IsDefault
required

Indicates if this rate is the default rate for the service. Assigned automatically to the first rate of a service.

boolean
Type
required
Rate type

Type of the rate.

Public

Private

AvailabilityBlock

string
Allowed values: Public Private AvailabilityBlock
Name

Name of the rate (in the default language).

string
nullable
Names
required
Localized text

All translations of the name.

object
key
additional properties
string
ShortName

Short name of the rate (in the default language).

string
nullable
UpdatedUtc
required

Interval in which the rates were updated.

string format: date-time
>= 1 characters
ExternalNames
Localized text

All translations of the external name of the rate.

object
key
additional properties
string
Description
Localized text

All translations of the description of the rate.

object
key
additional properties
string
ExternalIdentifier

Identifier of the rate from external system.

string
nullable <= 255 characters
TaxExemptionReason

Specifies the reason a rate is exempt from tax.

IT_N1 (N1 - Escluse ex art.15)

IT_N2_2 (N2.2 - Non soggette – altri casi)

IT_N3_5 (N3.5 - Non imponibili – a seguito di dichiarazioni d’intento)

IT_N4 (N4 - Esenti)

IT_N5 (N5 - Regime del margine / IVA non esposta in fattura)

PL_ZW (ZW - Zwolniony)

PL_NP (NP - Nie podlega)

string
Allowed values: IT_N1 IT_N2_2 IT_N3_5 IT_N4 IT_N5 PL_ZW PL_NP
TaxExemptionLegalReference

Legal reference that states why this rate is exempt from tax.

string
nullable
Example
{
"Rates": [
{
"Id": "ed4b660b-19d0-434b-9360-a4de2ea42eda",
"GroupId": "b9f25a45-9b9a-4b33-99bd-b06f008eb6f5",
"BaseRateId": "1a1ddd3b-e106-4a70-aef1-54a75b483943",
"BusinessSegmentId": null,
"ServiceId": "bd26d8db-86da-4f96-9efc-e5a4654a4a94",
"IsActive": true,
"IsEnabled": true,
"IsPublic": true,
"Type": "Public",
"Name": "My rate",
"ShortName": "FF",
"ExternalNames": {
"en-US": "Long Stay Flexible Rate"
},
"ExternalIdentifier": "D001"
}
]
}

Server has successfully fulfilled the request and there is no additional information to send back.

ConnectorApiExceptionResult
object
Message
string
nullable
RequestId
string
nullable
Details
nullable

Error caused by the client app, e.g. in case of malformed request or invalid identifier of a resource. In most cases, such an error signifies a bug in the client app (consumer of the API).

ConnectorApiExceptionResult
object
Message
string
nullable
RequestId
string
nullable
Details
nullable

Error caused by usage of invalid ClientToken, AccessToken, or you may not have the necessary permission to use the endpoint.

ConnectorApiExceptionResult
object
Message
string
nullable
RequestId
string
nullable
Details
nullable

Server error that should be reported to the end user of the client app. Happens for example when the server-side validation fails or when a business-logic check is violated.

ConnectorApiExceptionResult
object
Message
string
nullable
RequestId
string
nullable
Details
nullable

Error caused by heavy request that takes too long to process (typically tens of seconds). To get around this, request data in smaller batches. For more information, see Request timeouts

ConnectorApiExceptionResult
object
Message
string
nullable
RequestId
string
nullable
Details
nullable

Error caused by too many requests sent in a given amount of time. Response contains Retry-After header indicating how long the user agent should wait before making a follow-up request. For more information, see Request limits.

ConnectorApiExceptionResult
object
Message
string
nullable
RequestId
string
nullable
Details
nullable

Unexpected error on the Mews side. This may be due to a software fault. If such a situation occurs, the error will be logged and the development team notified, however you can raise an issue through GitHub on our documentation repository.

ConnectorApiExceptionResult
object
Message
string
nullable
RequestId
string
nullable
Details
nullable