Transaction

We plan on adding a new route to our API, specifically for transactions made by our partners. The goal is to enable a secure exchange of metadata regarding their customers' journey.

This route is under development, this page will soon me updated with the complete scheme.

Request

POST  https://connect.visamundi.io/v3/partner/{name}/transaction

In this request, {name} must be replaced by your identifier. This, in combination with your API key, will allow you to obtain the desired information.

Parameters of the request

ParameterDescription
access_tokenRequiredThe key to authenticate you to the API.
Learn more about the API key
languageOptionalLearn more about available languages

Body of the request

Required fields

There are 5 required fields: external_identifier, booking_email, journey.arrival_date, journey.destination.cca3 and journey.metrics.external_services.

Below you will find a description of the five required fields.

ValueDescription
external_identifierRepresents your identifier or username given when creating your account.
booking_emailThe email address used for the flight booking, we only accept one valid email address.
arrival_dateDate in ISO 8601 YYYY-MM-DD format.
cca33-letter country code also known as ISO 3166-1 alpha-3 code. Example: IND for India.
external_servicesBoolean to give us permission to offer our additional services (insurance, compensation). By default the value is false.

Optional fields

ValueDescription
cca22-letter country code also known as ISO 3166-1 alpha-2 code. Example: IN for India.
iata3-letter code assigned to each airport around the world.
icao4-letter code assigned to each airport around the world.
travellers_countTotal number of travellers.
journey_durationTotal duration of the trip in days. Example: 3 for a trip lasting three days.
currency_displayThe currency displayed on the form sent to travellers. You can choose between these five currencies: EUR, GBP, CAD, USD, XOF. "EUR" is selected by default.
languageThe display language of the form sent to travellers. You can choose between these five languages: fr, en, de, es, it, pt. "en" is selected by default.
departure_dateThe departure date of travelers in ISO 8601 format (YYYY-MM-DD).
home_departure_dateThe date of departure from the travelers' home, this allows us to plan in case of transit.
travellersArray of objects containing some data concerning the travellers.
idThe traveller's index in the array.
full_nameFull name of the traveller.
nationalityNationality of the traveler in ISO 3166-1 alpha-3 format.
birthdateTraveler's date of birth in ISO 8601 format (YYYY-MM-DD).
booking_idThe booking ID of the transaction.
payment_timestampISO 8601 payment timestamp (YYYY-MM-DD’T’hh:mm:ssTZD)
sales_channelSales channel used for the transaction. You can choose between web, mobile or physical. No default value.
client_typeType of customer who made the transaction. You can choose between individuals or corporate. No default value.
{
  "external_identifier": "<string>", // required
  "booking_email": // required,
  "journey": {
    "arrival_date": "<string>", // required
    "destination": {
      "cca3": "<string>", // required
      "cca2": "<string>",
      "iata": "<string>",
      "icao": "<string>"
    },
    "metrics": {
      "external_services": "<boolean>", // required
      "travellers_count": "<integer>",
      "journey_duration": "<integer>",
      "currency_display": "<string>",
      "language": "<string>"
    },
    "departure_date": "<string>",
    "home_departure_date": "<string>",
    "origin": {
      "cca2": "<string>",
      "cca3": "<string>",
      "iata": "<string>",
      "icao": "<string>"
    },
    "travellers": [
      {
        "id": "<string>",
        "full_name": "<string>",
        "nationality": "<string>",
        "birthdate": "<string>"
      },
      {
        "id": "<string>",
        "full_name": "<string>",
        "nationality": "<string>",
        "birthdate": "<string>"
      }
    ]
  },
  "booking_id": "<string>",
  "payment_timestamp": "<string>",
  "metadata": {
    "sales_channel": "call_center",
    "client_type": "<string>"
  }
}

Codes and error messages

In addition to the API error codes and messages, this endpoint may return certain other codes and messages:

StatusCodeCodeDescription
200no_country_found« No country found »
The request went well but the countries passed with the parameters nationality or destination n’ont pas été trouvé.
400required_parameters_error« Missing or incorrect required parameters »
The parameter {name} were not sent with the request or do not follow the expected format.
400invalid_request_body« Invalid request body. Body should not be an array but an object. »
The request body is invalid. The request body cannot be a list, only an object.
403forbidden« Partner ID and API key do not match »
The parameter {name} in the endpoint url does not match the authentication key.
404user_not_found« User not found »
User wasn't found in the database.