Skip to main content

Real Time

Real Time APIs are exposed as a transparent passthrough to MX Real Time APIs via the Candescent APIs Gateway. After OAuth V2 token validation and routing, the gateway forwards request headers, paths, query parameters, and payloads to MX and returns responses unchanged.

The MX Real Time APIs are MX's specification for exchanging financial-institution data. It defines five core resources: users, members, accounts, transactions, and holdings that power MX Real Time APIs (synchronous CRUD operations).

For complete schemas and the full set of supported operations, see the MX Real Time APIs documentation.

End-user benefits

  • Provide current balances, transactions, and holdings from institution core systems to MX-powered digital experiences.
  • Keep user, member, and account data synchronized with MX pipelines.
  • Support real-time updates using a single MX resource model.

Integration capabilities

  • Transparent passthrough ensures that Real Time headers, paths, query parameters, and payloads are forwarded to MX, and that HTTP status codes and responses are returned unchanged.
  • Gateway controls are applied by Candescent, including OAuth V2 Bearer token validation, spike arrest, and quota enforcement, before requests are forwarded to MX.
  • MX routing is configured by setting ext_host to the MX Real Time host such as live.moneydesktop.com (production) or int-live.moneydesktop.com (sandbox).
  • Content negotiation is supported through MX vendor-specific Accept headers, such as application/vnd.moneydesktop.mdx.v5+xml or application/vnd.moneydesktop.mdx.v5+json and include institution-scoped path segments as documented for each endpoint.

Required headers

HeaderDescription
AuthorizationBearer {token} (OAuth V2)
correlationIdUUID used to trace and correlate requests across services for debugging and logging.
ext_hostMX Real Time upstream host (for example, live.moneydesktop.com (production) or int-live.moneydesktop.com (sandbox)). Required for gateway routing; stripped before forwarding to MX.
AcceptMX vendor media type (for example, application/vnd.moneydesktop.mdx.v5+xml or application/vnd.moneydesktop.mdx.v5+json). Required by MX; forwarded unchanged.
Content-TypeMX vendor media type (for example, application/vnd.moneydesktop.mdx.v5+xml or application/vnd.moneydesktop.mdx.v5+json). Required by MX for POST and PUT requests; forwarded unchanged.

Error codes

Candescent API Gateway

CodeMessageHTTP Status Code
CMN_90000Internal server error500
CMN_90001Client not authorized to access this resource401
CMN_90001Quota limit violation500
CMN_90002Spike limit violation500
CMN_90008Header correlationId is invalid400
CMN_90010Header correlationId is required400
CMN_90010Header ext_host is required400
CMN_90011Invalid or unsupported ext_host400
CMN_90018Invalid token400

MX Real Time APIs

For detailed descriptions and error semantics, refer to the MX Real Time APIs documentation.

Endpoints