POST Accommodation by context, contextId

Overview

Create accommodation on a booking

Request

POST /[context]/[contextId]/Accommodation

Request Information

Request Parameters

Name
Type
Requirement
Description
context
String
Mandatory
Context in Request URI should be 'bookings'
contextId
Integer
Mandatory
ContextId in Request URI should be Booking ID
checkInDate
String
Mandatory
Check in Date
checkOutDate
String
Mandatory
Check out Date
customers
List<HrefWrapper>
Mandatory
URIs of customers to book on the accommodation that has already been added to booking
Existing customers on the accommodation will not be affected – this only books new customers on the accommodation
product
HrefWrapper
Mandatory
URI of relevant product
This can be retrieved via the related product (eg: relatedAccommodation, relatedTransfers, relatedSightseeing etc.) property in Retrieve Trip Product

Product

Name
Type
Requirement
Description
href
String
Optional
URI of the resource

Customers

Name
Type
Requirement
Description
href
String
Optional
URI of the resource

Request Example

{
  "checkInDate": "2016-12-20",
  "checkOutDate": "2016-12-22",
  "customers": [
    {
      "href": "/bookings/5057124/customers/4945397"
    },
    {
      "href": "/bookings/5057124/customers/4945397"
    }
  ],
  "product": {
    "href": "/products/91066"
  }
}

Response Information

Response Properties

Name
Type
Description
id
Integer
ID of the resource
href
String
URI of the resource

Response Codes

HTTP status code
Description
200 OK
The resource was updated successfully
201 Created
The resource was created
400 Bad Request
The resource was malformed
401 Unauthorized
Missing or invalid API key
500 Internal Server Error
An unexpected error occurred on the API server
202 Accepted
The request was accepted
404 Not Found
The specified resource was not found
403 Forbidden
One or more parameters has already been set on the resource record and cannot be updated

Response Example

{
  "id": 887124,
  "href": "context/contextid/accommodation/887124"
}