Team JWKS
Create MLE Public Key
POST
Creates a new public key registration for Message Level Encryption. You can register your key using either direct registration (providing the JWK directly) or well-known endpoint registration (providing a URL where Method can fetch your JWKS).Documentation Index
Fetch the complete documentation index at: https://docs.methodfi.com/llms.txt
Use this file to discover all available pages before exploring further.
Each key ID (
kid) can only be registered once. Choose either direct or well-known registration for each unique key.Body
Well-Known Endpoint Requirements
If usingtype: "well_known", your endpoint must return a JWKS that meets these requirements:
- Must have a top-level field named
keysthat has a list as its value. - For a JWK (an item in list of
keys) to be valid the following must be met:- JWK must be an object
- JWK must have a field named
ktyand it must be equal toRSA - JWK must have a field
nand it must be a string that is validnfor a JWK in accordance to the RFC - JWK must have a field
eand it must be a string that is validefor a JWK in accordance to the RFC - JWK can optionally have a field named
algbut if it is provided the value must beRSA-OAEP-256 - JWK must have a field
kidand it must be a string that is a valididwhich will be passed ascidwhen making requests to Method