- Partner HMAC authentication proves that your backend is an entitled Meridian integrator
- JWT bearer authentication carries Meridian user context after a token has already been minted
Which authentication method to use
Use this decision tree for each request:- If your backend is calling Meridian directly with your partner API Key and Secret, use server-to-server authentication with HMAC
- If you already have a Meridian access token and are making a user-scoped API call, use client-server authentication with JWT
Authentication matrix
How the flow fits together
- Your backend sends a partner-authenticated request signed with HMAC.
- Meridian issues a JWT access token for the target user.
- Your client or backend uses
Authorization: Bearer {token}on later API requests.