Booking API test

Create an interpreter booking through the public API with the same II mandatory fields as production — customer, client, consumer, location, languages, notification email, references, and requirements. Enter your API key to load Boostlingo lookups, then submit to POST /api/bookings.

Sent as 2026-06-19T11:00:00.000Z

Boostlingo / II fields

Type to search https://translateuk-test-api.azurewebsites.net/api/lookups/* dynamically (25 results per search). Focus a field to load the first page, then refine your query.

Select a customer first.

Reference fields

No references added.

Request JSON

{
  "interpreterType": "Telephone",
  "languageFrom": "",
  "languageTo": "",
  "scheduledAt": "2026-06-19T11:00:00.000Z",
  "bookedAt": "2026-06-18T11:35:59.375Z",
  "durationMinutes": 60
}

Response

Submit a booking to see the API response.

Equivalent cURL

curl -X POST 'https://translateuk-test-api.azurewebsites.net/api/bookings' \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: <YOUR_API_KEY>' \
  -d '{
  "interpreterType": "Telephone",
  "languageFrom": "",
  "languageTo": "",
  "scheduledAt": "2026-06-19T11:00:00.000Z",
  "bookedAt": "2026-06-18T11:35:59.375Z",
  "durationMinutes": 60
}'