GET
/
teams
/
mle
/
public_keys
curl https://production.methodfi.com/teams/mle/public_keys \
  -H "Authorization: Bearer sk_your_token"
{
  "success": true,
  "data": [
    {
      "id": "team_jwk_12345", 
      "type": "direct",
      "jwk": {
        "kid": "team_123", 
        "kty": "RSA",
        "alg": "RSA-OAEP-256",
        "use": "enc",
        "n": "s3C9N7Vz...J7c",
        "e": "AQAB"
      },
      "well_known_endpoint": null,
      "status": "active",
      "contact": "security@yourcompany.com", 
      "created_at": "2024-01-15T10:30:00Z",
      "updated_at": "2024-01-15T10:30:00Z"
    },
    {
      "id": "team_jwk_67890", 
      "type": "well_known",
      "jwk": null,
      "well_known_endpoint": "https://api.yourcompany.com/.well-known/jwks.json",
      "status": "active",
      "contact": "security@yourcompany.com", 
      "created_at": "2024-01-10T14:20:00Z",
      "updated_at": "2024-01-10T14:20:00Z"
    }
  ],
  "message": null
}
Retrieves a list of all your registered public keys for Message Level Encryption.

Returns

Returns an array of your registered public key objects, including both active and disabled keys.
curl https://production.methodfi.com/teams/mle/public_keys \
  -H "Authorization: Bearer sk_your_token"
{
  "success": true,
  "data": [
    {
      "id": "team_jwk_12345", 
      "type": "direct",
      "jwk": {
        "kid": "team_123", 
        "kty": "RSA",
        "alg": "RSA-OAEP-256",
        "use": "enc",
        "n": "s3C9N7Vz...J7c",
        "e": "AQAB"
      },
      "well_known_endpoint": null,
      "status": "active",
      "contact": "security@yourcompany.com", 
      "created_at": "2024-01-15T10:30:00Z",
      "updated_at": "2024-01-15T10:30:00Z"
    },
    {
      "id": "team_jwk_67890", 
      "type": "well_known",
      "jwk": null,
      "well_known_endpoint": "https://api.yourcompany.com/.well-known/jwks.json",
      "status": "active",
      "contact": "security@yourcompany.com", 
      "created_at": "2024-01-10T14:20:00Z",
      "updated_at": "2024-01-10T14:20:00Z"
    }
  ],
  "message": null
}