Vervotech
  1. Async Room Mapping API
Vervotech
  • Hotel Mapping
    • Getting Started
    • Access & Onboarding with Vervotech
    • Explore your providers
    • Integration and Go Live
    • Map Providers Content
    • Webhook
    • References
    • FAQ
    • Metadata Content
      • Get Master Hotel Facilities
      • Get Master Hotel Chains
      • Get Master Hotel Brands
      • Get Master Property Types
      • Get All Master Countries
      • Get All Vervotech Ids
    • Mappings
      • Get Mappings
      • Get New Mappings
      • Get Updated Mappings
      • Get Deleted Mappings
      • Get Mapping Statistics
      • Export Mappings File
      • Get Hotel count for new, updated and deleted.
      • Get Provider Hotel Mappings by ProviderId
      • Get Provider Hotel Mappings By VervotechId
    • Curated Content
      • Get Curated Content By Provider Hotel Ids
      • Get Curated Content By Vervotech Ids
    • Provider Content
      • Get Unmapped Provider Hotels
      • Get Unmapped Provider Hotels V2
      • Create Unmapped Provider Hotels File
      • Get All Provider names
      • Get Provider Content By Provider Hotel Ids
      • Get Provider Content By Vervotech Ids
    • Location Content
      • Get Location By ID
      • Get All Locations
    • Operational APIs
      • Review Mappings of Booked Hotels By File
      • Review Mappings of Booked Hotels
      • Start Mapping By Ftp Folder
      • Get Mappings History By RunId
    • Dynamic Mapping APIs
      • Find Match
    • Dual Mapping APIs
      • Overview
      • Get Mappings by Provider Hotel Id.
      • Get Mappings with content by Provider Hotel Id.
      • Get summary for your dual mapping APIs
  • Room Mapping
    • Getting Started
    • File Based Room Mapping (Offline)
    • References
    • FAQ
    • Mapping API
      • Map Rooms
      • Get Master Room Amenities
      • Get Master Room Attributes
      • Get Provider Names
      • Get All Provider Names
    • Async Room Mapping API
      • Get Async Room Mapping API Response
        POST
      • Map Large Rooms Async
        POST
  1. Async Room Mapping API

Map Large Rooms Async

POST
/api/2.0/mapping/maproomsasync
Current Room Mapping API has default imit of 1000 rooms per request, so the new functionality will allow customers to get the mapping result for large room requests asynchronously,The API will return the traceId, this will be the input parameter to fetch room mapping response using "api/2.0/mapping/getmappingasync" endpoint.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Async Room Mapping
Body

🟠403Forbidden
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://roommapping.vervotech.com/api/2.0/mapping/maproomsasync' \
--header 'accountId;' \
--header 'token;' \
--header 'culture;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "roomRates": [
        {
            "index": 1,
            "code": "201997202",
            "roomName": "Deluxe Room, 1 King Bed, Non Refundable",
            "description": "Deluxe Room, 1 King Bed, Non Refundable,full board",
            "provider": "HotelBeds",
            "providerHotelId": "18113069",
            "view": "Sea View",
            "smokingAllowed": "Allowed",
            "nightlyPrice": 80,
            "currency": "USD",
            "boardBasis": "Full board",
            "refundability": "Non Refundable",
            "beds": [
                {
                    "count": 1,
                    "type": "Queen",
                    "size": "Queen",
                    "description": "1 Queen Bed"
                }
            ],
            "attributes": [
                {
                    "key": "HasBalcony",
                    "value": "Yes"
                }
            ]
        },
        {
            "index": 2,
            "code": "201997203",
            "roomName": "Deluxe Room, 1 King Bed, 1 KingBed, Refundable",
            "description": "Deluxe Room, 1 King Bed, 1 KingBed, Refundable",
            "provider": "HotelBeds",
            "providerHotelId": "18113069",
            "view": "Sea View",
            "smokingAllowed": "Allowed",
            "nightlyPrice": 80,
            "currency": "USD",
            "boardBasis": "Breakfast",
            "refundability": "Refundable",
            "beds": [
                {
                    "count": 1,
                    "type": "twin",
                    "size": "twin",
                    "description": "1 twin Bed"
                }
            ],
            "attributes": [
                {
                    "key": "HasBalcony",
                    "value": "Yes"
                }
            ]
        },
        {
            "index": 3,
            "code": "201997204",
            "roomName": "Deluxe Room, 1 King Bed, 1 KingBed",
            "description": "Deluxe Room, 1 King Bed, 1 KingBed",
            "provider": "HotelBeds",
            "providerHotelId": "18113069",
            "view": "Sea View",
            "smokingAllowed": "Allowed",
            "nightlyPrice": 80,
            "currency": "USD",
            "boardBasis": "",
            "refundability": "Refundable",
            "beds": [
                {
                    "count": 1,
                    "type": "king",
                    "size": "king",
                    "description": "1 king Bed"
                }
            ],
            "attributes": [
                {
                    "key": "HasBalcony",
                    "value": "Yes"
                }
            ]
        }
    ],
    "vervotechHotelId": 201997202,
    "providerContentType": "None",
    "providerContentPreference": [
        "string"
    ]
}'
Response Response Example
200 - Example 1
{
    "success": true,
    "message": "string",
    "traceId": "string",
    "statusCode": 0
}
Previous
Get Async Room Mapping API Response
Built with