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 All Vervotech Ids
      • Get Master Hotel Facilities
      • Get Master Hotel Chains
      • Get Master Hotel Brands
      • Get Master Property Types
      • Get All Master Countries
    • Mappings
      • Get Hotel count for new, updated and deleted.
      • Get Mappings
      • Get New Mappings
      • Get Updated Mappings
      • Get Deleted Mappings
      • Get Mapping Statistics
      • Get Provider Hotel Mappings By VervotechId
      • Get Provider Hotel Mappings by ProviderId
      • Export Mappings File
    • Curated Content
      • Get Curated Content By Provider Hotel Ids
      • Get Curated Content By Vervotech Ids
    • Provider Content
      • Get Provider Content By Provider Hotel Ids
      • Get Provider Content By Vervotech Ids
      • Get All Provider names
      • Get Unmapped Provider Hotels
      • Get Unmapped Provider Hotels V2
      • Create Unmapped Provider Hotels File
    • Location Content
      • Get Location By ID
      • Get All Locations
    • Operational APIs
      • Review Mappings of Booked Hotels
      • Review Mappings of Booked Hotels By File
      • 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
      • Map Large Rooms Async
        POST
      • Get Async Room Mapping API Response
        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 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 '{
    "vervotechHotelId": 201997202,
    "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",
            "beds": [
                {
                    "count": 1,
                    "type": "Queen",
                    "size": "Queen",
                    "description": "1 Queen Bed"
                }
            ],
            "view": "Sea View",
            "smokingAllowed": "Allowed",
            "nightlyPrice": 80,
            "currency": "USD",
            "boardBasis": "Full board",
            "refundability": "Non Refundable",
            "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",
            "beds": [
                {
                    "count": 1,
                    "type": "twin",
                    "size": "twin",
                    "description": "1 twin Bed"
                }
            ],
            "view": "Sea View",
            "smokingAllowed": "Allowed",
            "nightlyPrice": 80,
            "currency": "USD",
            "boardBasis": "Breakfast",
            "refundability": "Refundable",
            "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",
            "beds": [
                {
                    "count": 1,
                    "type": "king",
                    "size": "king",
                    "description": "1 king Bed"
                }
            ],
            "view": "Sea View",
            "smokingAllowed": "Allowed",
            "nightlyPrice": 80,
            "currency": "USD",
            "boardBasis": "",
            "refundability": "Refundable",
            "attributes": [
                {
                    "key": "HasBalcony",
                    "value": "Yes"
                }
            ]
        }
    ],
    "providerContentType": "None",
    "providerContentPreference": [
        "string"
    ]
}'
Response Response Example
200 - Example 1
{
    "success": true,
    "message": "string",
    "traceId": "string",
    "statusCode": 0
}

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Async Room Mapping
Body

🟠403Forbidden
🔴500Server Error
Previous
Get All Provider Names
Next
Get Async Room Mapping API Response
Built with