Inventory

Set inventory

This method can be used to update the 'rate plan - space type' mapping relations in the connection.

  • All mapping relations need to be sent.

  • Mapping relations that are defined in Mews for the connection, but missing in the call, are deleted.

  • It is possible to create a new rate-space category combination for the rates and space categories that are already in Mews.

  • It is impossible to add a new rate or space category.

Request

[PlatformAddress]/api/channelManager/v1/setInventory

{
    "clientToken": "[Channel manager client token]",
    "connectionToken": "[Token of a concrete connection]",
    "inventoryMappings": [
        {
            "ratePlanCode": "FF",
            "spaceTypeCode": "KD"
        },
        {
            "ratePlanCode": "FF",
            "spaceTypeCode": "QD"
        }
    ]
}

Response

Synchronous simple response is expected.

Request ARI update

[async] This method allows the channel manager to request an ARI data update for certain space types and rate plans in addition to the changes automatically sent in the Delta update. The requested data will be sent by Mews asynchronously via push operations to the channel manager side API in the next Delta update.

Request

[PlatformAddress]/api/channelManager/v1/requestAriUpdate

{
    "clientToken": "[Channel manager client token]",
    "connectionToken": "[Token of a concrete connection]",
    "from": "2018-01-01",
    "to": "2018-02-01",
    "ariType": [
        1,
        2,
        3
    ],
    "spaceTypeCodes": [
        "KD",
        "QD"
    ],
    "ratePlanCodes": [
        "FF"
    ]
}

ARI Types

Response

Simple response will determine whether the ARI update was accepted for processing or not.

Confirm availability update

Request

[PlatformAddress]/api/channelManager/v1/processAvailabilityConfirmation

{
    "clientToken": "[Channel manager client token]",
    "connectionToken": "[Token of a concrete connection]",
    "relatedMessageId": "[Id of message which request relates to]",
    "success": false,
    "errors":[{
      "code":10,
      "message":"Invalid category code",
      "categoryCode":"XYZ"
   }]
}

Response

Synchronous simple response is expected.

Confirm price update

Request

[PlatformAddress]/api/channelManager/v1/processRateConfirmation

{
    "clientToken": "[Channel manager client token]",
    "connectionToken": "[Token of a concrete connection]",
    "relatedMessageId": "[Id of message which request relates to]",
    "success": false,
    "errors":[{
      "code": 9,
      "message": "Invalid rate code",
      "categoryCode": "ABC"
   }]
}

Response

Synchronous simple response is expected.

Confirm restriction update

Request

[PlatformAddress]/api/channelManager/v1/processRestrictionConfirmation

{
    "clientToken": "[Channel manager client token]",
    "connectionToken": "[Token of a concrete connection]",
    "relatedMessageId": "[Id of message which request relates to]",
    "success": false,
    "errors":[{
      "code": 9,
      "message": "Invalid rate code",
      "rateCode": "ABC"
   }]
}

Response

Synchronous simple response is expected.

Last updated