Skip to main content

Channex

Channex is a channel management system that integrates with the same MONEI tokenization endpoint. Unlike Siteminder, Channex returns a JSON response with the booking data and MONEI payment tokens.

Request

Endpoint: POST https://api.monei.com/v1/partner/tokens

{
"accountId": "<monei_account_id>",
"sessionId": "<uuid4>",
"channelManagerType": "CHANNEX",
"channexId": "<your_channex_api_key>",
"propertyId": "<property_id>"
}

Parameters

ParameterTypeRequiredDescription
accountIdStringYesYour MONEI account ID (UUID) — the account the payment will be transferred to
sessionIdStringYesUUID identifying the session
channelManagerTypeStringYesMust be CHANNEX
channexIdStringYesYour Channex API key
propertyIdStringNoFilter by property ID. If omitted, returns all Booking Revision Feed entries.

Response

[
{
"paymentToken": "b27b97a729ab9cefa8765eccf25d636b13f887cc",
"expireAt": 2678401,
"paymentMethod": {
"method": "card",
"card": {
"country": "US",
"last4": "8164",
"bank": "Wex Bank",
"bin": "53463306",
"cardholderName": "Joan Sanfeliu",
"expiration": 1767225600,
"type": "credit",
"brand": "mastercard"
}
},
"attributes": {
"id": "cbc57822-912c-4663-a9e5-3930b7539958",
"meta": {
"ruid": "Ykc2RlIyh9YUA66gHNu0pFCmOkmrTcr9qWngFe1gY4xjUlSmD+RVGXDjWrLMNL75u7DwI7i7eM9Vu047Nzj/TuNw+WkXmHOFc="
},
"status": "new",
"currency": "GBP",
"amount": "615.00"
}
}
]

Response Fields

FieldDescription
paymentTokenMONEI token for the booking's card. Use in payment creation instead of raw card data.
expireAtToken expiration (Unix timestamp)
paymentMethod.card.countryCard issuing country
paymentMethod.card.last4Last four digits of the card number
paymentMethod.card.bankIssuing bank name
paymentMethod.card.binBank identification number
paymentMethod.card.cardholderNameName of the cardholder
paymentMethod.card.expirationCard expiration date (Unix timestamp)
paymentMethod.card.typeCard type (e.g. credit, debit)
paymentMethod.card.brandCard network (e.g. mastercard, visa)
attributesFull Channex booking data (without exposed card numbers)