Resend Contract

Resent Contract API allows you to resend the contract invitation to a specified hotel.


Endpoint

POST

https://connect-sandbox.su-api.com/SUAPI/jservice/bdc/contract/resend

Attributes

hotel_id string (Required)

The unique property ID as assigned by the provider upon creation of the property.


legal_contact_email string (Required)

The Accommodation Partner's legal contact email.

  • The system sees this email as the unique identifier for the Accommodation Partner.

  • It should be in valid email format.


legal_entity_id string (Required)

The identity of the legal entity.


Sample Request

{
    "hotel_id": "AWSTEST",
    "legal_contact_email": "don.giovanni@hotel.com",
    "legal_entity_id": "425500"
}

Response

Sample Success Response

{
    "Status": "Success",
    "Message": "Invitation sent to Partner!",
    "Ruid": "e527c45a-f23a-4ee4-beb2-7d21f7699b1b",
    "Data": {}
}

Error

Sample Error Response

{
  "Status": "Fail",
  "Errors": [],
  "Message": "Provider might not be connected to the partner card for the given data!",
  "Ruid": "e527c45a-f23a-4ee4-beb2-7d21f7699b1b",
  "data": {}
}

Response Body Elements

Status string

This field indicates the success of the request.

  • Success - It confirms the successful operation and the data was fetched without any errors.

  • Fail - It confirms that the operation got failed.


Message string

The message in the response.


Ruid string

Specifies the unique request ID.

You can share this ID with Booking.com customer support when you run into an issue. This can help in understanding what went wrong.


Data object

Contains the response data.

Last updated

Was this helpful?