To update the information for an existing application, send a PUT
request to the /register
endpoint.
You must provide the following headers and parameters to the request.
access_token
: mandatoryclient_id
: mandatoryIn the request body, you can pass the updated JWT for the specified application. For simplicity, use the same JWT you created for the registration request but only with the updated fields because any additional fields are ignored.
Application property | Corresponding JWT field |
---|---|
Application name | The org_name or the software_client_name field that is present in the SSA. |
Redirect URIs | The redirect_uris field in the SSA. |
JWKs URL | The org_jwks_endpoint field in the SSA. |
Distinguished name | The tls_client_auth_dn field in the JWT payload. |
curl -X PUT https://oba-auth.revolut.com/register/<insert client_id> \
-k --cert transport.pem --key private.key \
-H 'Authorization: Bearer <your token>'