Authentication
To interact with the Mews Channel Manager API, you need to authenticate your requests using Client Tokens and Connection Tokens. This ensures that only authorized clients can access and manipulate data. Client Tokens are unique to the API client, i.e. the Channel Manager application, while Connection Tokens are unique to the connection with a property.
Connections and tokens
There can be multiple connections between one property and one channel manager. All API operations on both sides require clientToken
to be present in the request. On the Mews side, clientToken
corresponds to a specific channel manager, so the same clientToken
should be used for all connections. On the Channel Manager side, the clientToken
can be the same or different, as agreed between the parties, as long as it is unique for Mews and consistent across all Mews connections. Additionally, all operations regarding a specific connection with a property require connectionToken
, which is unique for each connection.
Client Token: This token uniquely identifies the API client, i.e. the Channel Manager application consuming the API.
Connection Token: This token identifies the connection with the property or enterprise whose data and services you have access to.
Obtaining tokens
To get started using the API, you need to obtain the necessary tokens:
Client Token: This token is provided by Mews and is essential for authenticating your Channel Manager application. You will receive it during the initial setup process.
Connection Token: This token is specific to each connection with a property. You can obtain it in three ways:
From Mews: When authorized by the property, Mews will provide you with the Connection Token.
Through the property: The property can also obtain the token via Mews Operations.
Using the API: If your application supports Mews: Get properties, you can recover the Connection Tokens for all connections the property supports for this client application. In this case, an employee email address is used as an authorization token.
For detailed steps and additional information, refer to Your integration journey.
Using tokens in requests
Most API operations require both clientToken
and connectionToken
to be included in the request body.
Example request body:
Error handling
If authentication fails, the API will return an error response with details about the error. For full details about responses and error codes, see Responses.
Example error response:
Connection related error codes:
Code 3: "Connection not found" - The specified connection could not be found in the system.
Code 8: "Invalid authentication" - The request has failed authentication, e.g. an authentication token is invalid or has expired.
Last updated